24

Let's take an example.

The following is the VOLUME instruction for the nginx image:

VOLUME ["/etc/nginx/sites-enabled", "/etc/nginx/certs", "/etc/nginx/conf.d", "/var/log/nginx", "/var/www/html"]

Here are my questions:

  1. When you start the container, will these directories show up on my host? And when I stop my container, the directories will stay?

  2. If some (or all) of these directories already exist in my host, what will happen? For example, let's say the image comes with a default config file within the /etc/nginx directory of the container, and I also have a config file within /etc/nginx on my host. When the container starts, which of these files will get priority?

  3. What's the key difference between -v /host/dir:container/dir and VOLUME?

References:

Community
  • 1
  • 1
treecoder
  • 43,129
  • 22
  • 67
  • 91

1 Answers1

28

A container's volumes are just directories on the host regardless of what method they are created by. If you don't specify a directory on the host, Docker will create a new directory for the volume, normally under /var/lib/docker/vfs.

However the volume was created, it's easy to find where it is on the host by using the docker inspect command e.g:

$ ID=$(docker run -d -v /data debian echo "Data container")
$ docker inspect -f {{.Mounts}} $ID
[{0d7adb21591798357ac1e140735150192903daf3de775105c18149552a26f951 /var/lib/docker/volumes/0d7adb21591798357ac1e140735150192903daf3de775105c18149552a26f951/_data /data local  true }]
 

We can see that Docker has created a directory for the volume at /var/lib/docker/volumes/0d7adb21591798357ac1e140735150192903daf3de775105c18149552a26f951/_data.

You are free to modify/add/delete files in this directory from the host, but note that you may need to use sudo for permissions.

Docker will only delete volume directories in two circumstances:

  • If the --rm option is given to docker run, any volumes will be deleted when the container exits
  • If a container is deleted with docker rm -v CONTAINER, any volumes will be removed.

In both cases, volumes will only be deleted if no other containers refer to them. Volumes mapped to specific host directories (the -v HOST_DIR:CON_DIR syntax) are never deleted by Docker. However, if you remove the container for a volume, the naming scheme means you will have a hard time figuring out which directory contains the volume.

So, specific questions:

  1. Yes and yes, with above caveats.
  2. Each Docker managed volume gets a new directory on the host
  3. The VOLUME instruction is identical to -v without specifying the host dir. When the host dir is specified, Docker does not create any directories for the volume, will not copy in files from the image and will never delete the volume (docker rm -v CONTAINER will not delete volumes mapped to user-specified host directories).

More information here:

https://blog.container-solutions.com/understanding-volumes-docker

Adrian Mouat
  • 44,585
  • 16
  • 110
  • 102
  • 1
    Well done! In addition to your article I found the discussion about volumes at [Container42](http://container42.com/2014/11/03/docker-indepth-volumes/) from cpuguy83 (Developer at Docker) and the very detailed discussion from [Mark Lamourine](http://cloud-mechanic.blogspot.de/2014/10/storage-concepts-in-docker.html) as incredible valuable. – Jan Suchotzki Sep 21 '15 at 10:34
  • The container-solutions.com link is a 404 right now – Rondo Apr 29 '21 at 01:04