Detailed explanation of Docker data management (data volumes & data volume containers)

Detailed explanation of Docker data management (data volumes & data volume containers)

When using Docker in a production environment, data often needs to be persisted or shared between multiple containers, which inevitably involves container data management operations.

There are two main ways to manage data in containers:

1. Data Volumes: Data in the container is directly mapped to the local host environment; how to create a data volume in the container and mount the local directory or file to the data volume in the container.
2. Data Volume Containers: Use specific containers to maintain data volumes. How to use data volume containers to share data between containers and hosts, and between containers, and to implement data backup and recovery.

Data Volume

A data volume is a special directory available for use by containers. It maps the host operating system directory directly into the container, similar to the mount operation in Linux.

Data volumes can provide many useful features, as follows:
1. Data volumes can be shared and reused between containers, making data transfer between containers efficient and convenient;
2. Modifications to data in the data volume will take effect immediately, regardless of whether the operation is in the container or locally;
3. Updates to the data volume will not affect the image, decoupling applications and data;
4. The volume will persist until no container is using it and it can be safely unmounted.

1. Create a data volume in the container

When using the docker run command, use the -v flag to create a data volume in the container. Repeat the -v flag multiple times to create multiple volumes.

Next, create a web container using the training/webapp image and create a data volume mounted to the /webapp directory of the container:

$ docker run -d -P --name web -v /webapp training/webapp python app.py

-P is the port that exposes the container service, which is automatically mapped to a temporary port on the local host.

2. Mount a host directory as a data volume

You can also use the -v flag to specify an existing local directory to be mounted into the container as a data volume (recommended).

$ docker run -d -P --name web -v /src/webapp:/opt/webapp training/webapp python app.py

The above command loads the host's /src/webapp directory into the container's /opt/webapp directory.

This feature is very convenient when testing. For example, users can put some programs or data in a local directory and then run and use them in the container. In addition, the path to the local directory must be an absolute path. If the directory does not exist, Docker will automatically create it.

The default permissions for Docker mounted volumes are read-write (rw), and users can also specify read-only via ro:

$ docker run -d -P --name web -v /src/webapp:/opt/webapp:ro training/webapp python app.py

After adding :ro, the data in the mounted data volume cannot be modified in the container.

3. Mount a local host file as a data volume

The -v flag can also be used to mount individual files from the host into the container as data volumes (not recommended).

$ docker run --rm -it -v ~/.bash_history:/.bash_history ubuntu /bin/bash

This will record the command history entered in the container.

If you mount a file directly into a container, using file editing tools, including vi or sed --in-place, may cause the file inode to change. Starting with Docker 1.1.0, this will result in an error message. So the recommended way is to directly mount the directory where the file is located.

Data volume container

If users need to share some continuously updated data between multiple containers, the easiest way is to use a data volume container. A data volume container is also a container, but its purpose is to provide data volumes for other containers to mount.

First, create a data volume container dbdata, and create a data volume in it and mount it to /dbdata:

$ docker run -it -v /dbdata --name dbdata ubuntu

root@3ed94f279b6f:/#

View the /dbdata directory:

root@3ed94f279b6f:/# ls

bin boot dbdata dev etc home lib lib64 media mnt opt ​​proc root run sbin srv sys tmp usr var

You can then use --volumes-from in other containers to mount the data volumes in the dbdata container.

For example, create two containers, db1 and db2, and mount the data volume from the dbdata container:

$ docker run -it --volumes-from dbdata --name db1 ubuntu

$ docker run -it --volumes-from dbdata --name db2 ubuntu

At this point, containers db1 and db2 both mount the same data volume to the same /dbdata directory. Any writes made by any of the three containers to this directory can be seen by the other containers.

For example, create a test file in the dbdata container as follows:

root@3ed94f279b6f:/# cd /dbdata

root@3ed94f279b6f:/dbdata# touch test

root@3ed94f279b6f:/dbdata# ls

test

View it inside the db1 container:

$ docker run -it --volumes-from dbdata --name db1 ubuntu

root@4128d2d804b4:/# ls

bin boot dbdata dev etc home lib lib64 media mnt opt ​​proc root run sbin srv sys tmp usr var

root@4128d2d804b4:/# ls dbdata/

test

You can use the --volumes-from parameter multiple times to mount multiple volumes from multiple containers. You can also mount data volumes from other containers that have already mounted container volumes.

The container that mounts the data volume using the --volumes-from parameter does not need to be running.

If the mounted container (including dbdata, db1, and db2) is deleted, the data volume will not be automatically deleted. If you want to delete a data volume, you must explicitly use the docker rm -v command when deleting the last container that still mounts it to specify that the associated container should be deleted at the same time.

Migrating data using data volume containers

The data volume container can be used to back up and restore the data volumes therein to achieve data migration.

These two operations are described below.

1. Backup

Use the following command to back up the data volumes in the dbdata data volume container:

Copy the code as follows:
$ docker run --volumes-from dbdata -v $(pwd):/backup --name worker ubuntu tar cvf /backup/backup.tar /dbdata

First, create a container worker using the ubuntu image. Use the --volumes-from dbdata parameter to let the worker container mount the data volume of the dbdata container (that is, the dbdata data volume), and use the -v $(pwd):/backup parameter to mount the local current directory to the /backup directory of the worker container. After the worker container is started, the tar cvf /backup/backup.tar /dbdata command is used to back up the contents of /dbdata to /backup/backup.tar in the container, that is, backup.tar in the current directory of the host.

2. Recovery

If you want to restore data to a container, you can follow the steps below.

First create a container dbdata2 with a data volume:

$ docker run -v /dbdata --name dbdata2 ubuntu /bin/bash

Then create another new container, mount the dbdata2 container, and use untar to decompress the backup file into the mounted container volume:

$ docker run --volumes-from dbdata2 -v $(pwd):/backup --name worker ubuntu bash

cd /dbdata

tar xvf /backup/backup.tar

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • docker run -v mounts data volumes abnormally, and the container status is always restarting
  • Docker mounts local directories and data volume container operations
  • Analysis of the principles and usage of Docker container data volumes
  • A brief summary of Docker container data volume mounting
  • Detailed explanation of container data volumes and data management in Docker
  • Docker data volumes and data containers detailed introduction and examples
  • Docker data volume, data volume container detailed introduction
  • Docker container data volume named mount and anonymous mount issues

<<:  mysql method to view the currently used configuration file my.cnf (recommended)

>>:  Detailed explanation of several ways to create objects and object methods in js

Recommend

Several methods of deploying multiple front-end projects with nginx

I have summarized 3 methods to deploy multiple fr...

Design theory: people-oriented design concept

<br />When thoughts were divided into East a...

MySQL statement execution order and writing order example analysis

The complete syntax of the select statement is: S...

Graphical tutorial on installing JDK1.8 under CentOS7.4

Linux installation JDK1.8 steps 1. Check whether ...

A brief analysis of mysql index

A database index is a data structure whose purpos...

Solution to Ubuntu cannot connect to the network

Effective solution for Ubuntu in virtual machine ...

Web page production TD can also overflow hidden display

Perhaps when I name this article like this, someon...

Pitfall notes of vuex and pinia in vue3

Table of contents introduce Installation and Usag...

Solution to the docker command exception "permission denied"

In Linux system, newly install docker and enter t...

Solution to the problem that Docker container cannot access Jupyter

In this project, the Docker container is used to ...

How to build a standardized vmware image for kubernetes under rancher

When learning kubernetes, we need to practice in ...

Docker adds a bridge and sets the IP address range

I don't know if it's because the binary d...

How to insert 10 million records into a MySQL database table in 88 seconds

The database I use is MySQL database version 5.7 ...

Analysis of the problem of deploying vue project and configuring proxy in Nginx

1. Install and start nginx # Install nginx sudo a...