Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What happens when the docker host restarts?

Tags:

docker

What happens when the docker host is shut down and restarted?

  • will the images that were running be restarted?
  • will the changes that were made to those images persist, or will a new instance of the image be spawned and changes be lost?
  • does docker have any configuration option, such as the list of images to be automatically executed at startup and the options to run the images? Where? If not, I suppose only the docker command line can be used to alter docker state. Where is that state stored (I suppose somewhere in /var). This could be useful to backup the docker state.

(I'd have liked to find this in the FAQ)

like image 541
Mildred Avatar asked Jul 15 '14 08:07

Mildred


People also ask

Does restarting docker restart all containers?

For a major version upgrade, one has to tear down all running containers. With a restart policy of always , however, the containers will be restarted after the docker daemon is restarted after the upgrade.

Does docker restart delete data?

Docker does not persist data if a container stop exists, note that many people got confused and believe that docker has data persistence without any configuration because they stop a container and they see that their data is still there when they restart the container, but in docker terms the container exists even if ...

Does docker restart use new image?

The container will use the previous image even we restart it.

What is restart always in docker?

always. Always restart the container regardless of the exit status. When you specify always , the Docker daemon will try to restart the container indefinitely. The container will also always start on daemon startup, regardless of the current state of the container.


1 Answers

will the images that were running be restarted?

Docker will restart containers when the daemon restarts if you pass -r=True to the startup options. On Ubuntu, you can accomplish this permanently by modifying DOCKER_OPTS="-r=true" in /etc/default/docker.

will the changes that were made to those images persist, or will a new instance of the image be spawned and changes be lost?

Containers will be stopped. Any modifications to the container will still be present when the container next starts, which will happen automatically when the docker daemon starts if -r=true is provided as mentioned above.

where is the docker configuration stored on the host system?

There is no configuration file per se. You can tune the upstart/init options in /etc/default/docker.

like image 188
Ben Whaley Avatar answered Oct 12 '22 21:10

Ben Whaley