Understanding Docker Volumes, Bind Mounts, and Volume Mounting: A Detailed Guide

Muhammad HassanMuhammad Hassan
6 min read

When working with Docker, managing persistent storage is a key aspect of ensuring your applications have access to the data they need, even when containers are stopped or restarted. In this blog, we'll dive deep into Docker volumes, bind mounts, and volume mounting, explaining how they work, their differences, and how to use them effectively. By the end, you'll have a clear understanding of these concepts, complete with practical examples.


1. What is a Docker Volume?

A Docker volume is a storage mechanism designed to persist data generated or used by Docker containers. Volumes are managed entirely by Docker, making them independent of the host filesystem, which ensures portability and ease of use across different environments.

Key Characteristics:
  • Managed by Docker: Docker takes care of where the volume is stored, typically in a location like /var/lib/docker/volumes/ on Linux.

  • Persistent Storage: Data stored in a Docker volume persists even after the container is stopped or removed.

  • Portable: Volumes can be easily shared between containers or migrated to different Docker hosts.

Example:

Let's say you want to create a volume to persist data for a web application running in an Nginx container:

# Step 1: Create a Docker volume
docker volume create my_volume

# Step 2: Run an Nginx container with the volume mounted to its default web directory
docker run -d --name my_nginx -v my_volume:/usr/share/nginx/html nginx

In this example, the my_volume volume is created and mounted to the /usr/share/nginx/html directory in the Nginx container. If the Nginx container generates or uses files in this directory, they will be stored in my_volume, ensuring persistence beyond the container's lifecycle.


2. What is a Bind Mount?

A bind mount allows you to link a specific directory or file on your host system to a directory in a container. This method is flexible, as you have full control over the directory or file path, but it is more dependent on the host's filesystem, which may reduce portability.

Key Characteristics:
  • Host-Managed: You specify the exact path on the host system to mount into the container.

  • Direct Access: The container directly accesses and uses the files from the host system.

  • Flexibility: You can easily share configuration files, source code, or other data between the host and the container.

Example:

Imagine you have a directory on your host system that contains website files (/path/to/site1) that you want to serve with Nginx:

# Step 1: Run an Nginx container with a bind mount
docker run -d --name my_nginx -v /path/to/site1:/usr/share/nginx/html nginx

In this case, the content of /path/to/site1 on your host machine will be served by Nginx, effectively replacing the default Nginx content with your own files.


3. Understanding Volume Mounting

Volume mounting is a term that refers to the process of attaching storage (either a Docker volume or a bind mount) to a directory inside a Docker container. This can be done using the -v option or the more flexible --mount option.

Key Characteristics:
  • General Process: Volume mounting can be used to attach either Docker-managed volumes or host directories to a container.

  • Shared Data: Mounted volumes or directories can be shared between multiple containers.

  • Syntax Flexibility: The --mount option provides more clarity and flexibility, especially for complex configurations.

Example with --mount:

Let's create a scenario where you mount a Docker volume and a bind mount to a container:

# Step 1: Create a Docker volume
docker volume create my_volume

# Step 2: Run a container with both a Docker volume and a bind mount
docker run -d --name my_nginx_container \
  --mount source=my_volume,target=/app/data \
  --mount type=bind,source=/path/to/site1,target=/usr/share/nginx/html \
  nginx

In this example:

  • my_volume is mounted to /app/data inside the container.

  • The host directory /path/to/site1 is bind-mounted to /usr/share/nginx/html, allowing Nginx to serve the content from site1.


4. Key Differences and Behavior Insights

Understanding the nuances between Docker volumes and bind mounts is crucial for effective Docker management. Let's explore two key scenarios to solidify your understanding:

Scenario 1: Empty Docker Volume Attached to Nginx’s Default Directory

If you create an empty Docker volume and mount it to Nginx’s default directory (/usr/share/nginx/html):

  • Docker will copy the content from the container’s directory into the empty volume during the first attachment.

  • The next time you attach this volume to another container, it will show the copied content.

Example:

docker volume create my_volume
docker run -d --name nginx_container -v my_volume:/usr/share/nginx/html nginx

Here, my_volume will contain the default Nginx HTML files, making them accessible in future containers that use the same volume.

Scenario 2: Empty Host Directory Mounted to Nginx’s Default Directory

If you mount an empty host directory to Nginx’s default directory (/usr/share/nginx/html):

  • The original content of Nginx’s directory will be hidden by the empty directory, and the directory will appear empty inside the container.

Example:

mkdir /path/to/empty_directory
docker run -d --name nginx_container -v /path/to/empty_directory:/usr/share/nginx/html nginx

In this case, since the directory is empty, Nginx won't find any files to serve, resulting in an empty directory being served.


5. Conclusion

Docker volumes, bind mounts, and volume mounting are powerful tools for managing persistent data in Docker. By understanding the differences and knowing when to use each method, you can ensure your Dockerized applications have the storage solutions they need to function reliably.

  • Docker Volumes are ideal for persistent, portable storage managed by Docker.

  • Bind Mounts provide flexibility and direct access to host files, perfect for development environments.

  • Volume Mounting allows you to attach both Docker volumes and host directories, enabling data sharing and persistence across containers.

By mastering these concepts, you’ll be well-equipped to handle various data management scenarios in your Docker workflows. Happy containerizing!

The difference in behavior between Nginx and MySQL when you use an empty bind mount directory is due to the way these applications are set up to handle their respective data directories:

Nginx:

  • Static Files: Nginx serves static files like HTML, CSS, and JavaScript. When you mount an empty directory to Nginx's default web root (/usr/share/nginx/html), it simply replaces the contents of that directory with the contents of the empty host directory. Since the host directory is empty, Nginx serves an empty directory—no files are copied from the container to the host.

MySQL:

  • Database Initialization: MySQL, on the other hand, is designed to manage a data directory where it stores databases and other critical files. When you mount an empty directory to MySQL's data directory (/var/lib/mysql), MySQL detects that the directory is empty and automatically initializes it with necessary files (e.g., databases, configuration files). This behavior is built into MySQL’s entrypoint script, which ensures that the database can start properly even if the data directory is empty when the container starts.
0
Subscribe to my newsletter

Read articles from Muhammad Hassan directly inside your inbox. Subscribe to the newsletter, and don't miss out.

Written by

Muhammad Hassan
Muhammad Hassan

Hey there! I'm currently working as an Associate DevOps Engineer, and I'm diving into popular DevOps tools like Azure Devops,Linux, Docker, Kubernetes,Terraform and Ansible. I'm also on the learning track with AWS certifications to amp up my cloud game. If you're into tech collaborations and exploring new horizons, let's connect!