I am running the 1 click install of Azuracast and I want to run some updates on my droplet, but it occurs to me that I have no clue how to start Azuracast after I restart the system. I know this is a really basic question, but I am basically brand new to docker.
TIA!
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Hi there @echoplex1media,
I believe that the 1-Click AzureCast from the Marketplace uses Docker.
So what you could do is to check the restart policy of your container. To do so run the following command and get your container ID:
- sudo docker ps -a
Then once you get your ID inspect the container and look for the RestartPolicy value:
- docker inspect -f "{{ .HostConfig.RestartPolicy }}" container_id
Or you could run this directly as well:
- docker inspect -f "{{ .HostConfig.RestartPolicy }}" container_id
If the restart policy is set to always or unlessStopped it should be ok to reboot as the container will be restarted after the reboot.
For more information about the Docker RestartPolicy, make sure to check out this post here:
Regards, Bobby
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.