Docker novice to practical use: container data volumes, organized clearly

Docker novice to practical use: container data volumes, organized clearly

[[419549]]

Preface

The previous article demonstrated common commands and mentioned the isolation of containers. By default, the data generated by applications in the container is unique to the container itself. If the container is deleted, the corresponding data files will disappear. From the perspective of isolation, data should coexist with the container; but in actual use scenarios, data persistence is more required, that is, the data should still exist normally even if the container is deleted; in addition, there are many scenarios that require data to be shared between containers. How to do that? Let's talk about container data volumes.

text

1. Manually save data

There are usually two manual methods: one is to copy through commands, and the other is to submit the container as an image. Next, run the demonstration by pulling the centos image

  • By command form

Data can be copied between the host and the container through commands, that is, data can be copied before the container is deleted, as follows:

Command summary: docker run -it --name="mycentos" centos /bin/bash, directly start the container in interactive mode according to the image centos, the container name is mycentos, execute the /bin/bash command inside the container to enter the terminal; the specific command is described in detail in the article "Demonstration of common commands from Docker beginner to actual combat, easy to understand"; here is a brief review of the process of starting a container according to the image, as shown in the figure:

The above picture briefly describes: When Docker executes the start command, it will first search for the image locally. If not, it will search the remote repository and pull it to the host. Then the host can start the container based on the image. If the remote repository does not find the image either, an error will be reported.

OK, back to today's topic, let's talk about copying data;

Now start a container (Linux system) through the centos image and create some files on it for testing, as follows:

Now if you delete the container, the corresponding data in it will also be deleted, so you need to copy the corresponding data to the host, as follows:

docker cp bfb96a6afdbc:/usr/TestData /usr/TestDataHost command analysis:

  • Syntax: docker cp SRC_PATH DEST_PATH
  • bfb96a6afdbc:/usr/TestData corresponds to SRC_PATH, which indicates the source, that is, the directory or file to be copied; bfb96a6afdbc is the container ID, which is used to limit the data files in a certain container;
  • /usr/TestDataHost corresponds to DEST_PATH, which indicates the destination, i.e. where to copy to;

According to the above syntax rules, you can also copy the data files on the host to the specified container by simply swapping the positions of SRC_PATH and DEST_PATH, as follows:

  • How to submit a container as an image

This method can only be considered a backup. It just submits the container as an image through the docker commit command to achieve the purpose of backing up data.

But it is obviously not flexible, and the data is still in the container. I have already talked about the docker commit command last time, so I will not repeat the screenshots here.

The above two methods are not good choices. First of all, they cannot back up in time. In addition, manual operation is obviously inefficient and prone to errors. More importantly, it is hard for friends, so automatic arrangement is necessary. Manual operation can be used occasionally according to the situation.

2. Container data volumes free your hands

2.1 A brief understanding of container data volumes

A data volume can be understood as a directory or file, and is designed for data persistence and sharing;

The container that mounts a data volume is called a data volume container. The data volume is completely independent of the container's life cycle, so when the container is deleted, the corresponding mounted data volume will not be deleted.

By mounting the directory in the container to the host, the data can be synchronized in real time. Whether there are changes in the host or in the container, they will be updated synchronously.

2.2 Practical Demonstration

Here we will demonstrate it in command mode, and the application in Dockerfile will be discussed in subsequent chapters.

I didn’t mention the -v option in the docker run command last time, so I left it here to share separately. You can mount it directly when starting the container. The syntax mainly has the following ways:

  1. # Specify the specific host path and path in the container
  2. docker run -v /host path:container path image name
  3. #Specify the path in the container. Docker automatically specifies the host path by default.
  4. docker run -v path in container image name
  5. # Specify the path in the container and specify a name. The host path docker automatically specifies
  6. docker run -v volume name: path in container image name
  • Anonymous mount: If you do not specify a name when mounting, a name will be automatically generated.

Specifying the Host Directory

The command analysis is as follows:

# docker run -it --name="Container name" -v Host absolute path: container absolute path image name

docker run -it --name="TestVolumeCentos" -v /usr/TestDataHost/DataVolumeTest:/usr/TestVolumeData centos

Now that the directory in the container has been mounted on the host, let's experience data synchronization:

picture

From the above demonstration, we can see that no matter whether the data is modified on the host or in the container, it can be updated synchronously in time; after the container is stopped, the host updates the data, and the container is restarted, the modified data will also be synchronized to the container; if the container is deleted, the mounted data will not be deleted and will remain in the host, which is what we want.

You can use the docker inspect container command to view detailed information about the container, including detailed information about the mounted volume, as shown in the following screenshot:

Do not specify a host directory

Many times, we don't like to specify the host directory ourselves, but let Docker automatically specify it, so usually we only specify the directory inside the container, as follows:

Check the host path specified by Docker, or view the details through docker inspect container ID, as follows:

Check whether the file data just operated in the container has been synchronized:

By default, Docker will specify the mounted host directory to the directory as shown above.

You can view the data volume information mounted on the host through docker volume ls, as follows:

As you can see from the above picture, the name is not intuitive and difficult to understand, so most of the time a name is specified when mounting, which is called named mount.

  • Named mount: Specify a name when mounting.

Except for the fact that the name is specified when mounting, the subsequent operations and effects are the same, so I will not repeat the screenshots here; it should be noted that this method is very similar to the command for specifying the host, in the form of specifying the path, with the path before the colon, as follows:

2.3 Data Transfer between Containers

Data volumes can also be mounted through container inheritance to achieve data sharing between containers, as follows:

Analysis of key commands:

  • First start a named mounted container TestVolumesFromCentos with the following command:
  1. docker run -it --name="TestVolumesFromCentos" -v testVolumesFrom:/usr/TestVolumeData centos  
  • Start another container TestVolumesFromCentos2 and mount the volume inherited from TestVolumesFromCentos with the following command:
  1. docker run -it --name="TestVolumesFromCentos2" --volumes-from TestVolumesFromCentos centos  

--volumes-from specifies which container to inherit from.

Now, no matter which container the data is changed in, it will be synchronized to other containers in real time, thus achieving the sharing and real-time synchronization of container data.

Through docker inspect container ID, we can see that the mount details of the two containers are the same. A screenshot of one of the containers is as follows:

In fact, you can also limit the container's operating permissions when specifying a mount. For example, in the mount directory within the container, you can limit the container to read-only or read-write, as follows:

ro: stands for read-only;

rw: stands for read and write;

Well, that's all about container data volumes. It sounds impressive, but it is actually an operation on files or directories.

2.4 Redis installation practice

It is very simple to install Redis in Docker. Just execute the command. Since the redis image has been pulled before, the container is started directly. If there is no image locally, it will be pulled from the remote warehouse.

As can be seen in the figure above, by default, the redis image mounts the /data directory in the container to the host, and this directory is the directory where the redis data is stored, thus achieving the persistence of Redis.

For Redis, it is often necessary to modify the configuration file. We cannot change it in the container every time. We can put the configuration file in the mounted directory and then specify the startup. We can also add another mount for the configuration file, as follows:

Before executing the command, you need to put the configuration file in the /usr/TestDataHost/redisconf directory of the host in advance.

  1. docker run -d -v /usr/TestDataHost/redisconf:/usr/ local /etc/redis --name myredisconfigtest redis redis-server /usr/local/etc/redis/redis.conf  

Check the mount status of the container through docker inspect, as follows:

After mounting, if you need to modify the configuration file, you only need to modify the configuration file content on the host.

Summarize

That’s all about container data volumes. Don’t you think containers are powerful? They are both isolated and shared, meeting the needs of various scenarios.

<<:  Nokia wins 5G network contracts in three European countries

>>:  Chip, mobile phone, and communication index: Whose 5G performance was the most eye-catching in the first half of the year?

Recommend

Learn Network TCP/IP Protocol Stack

[[409633]] This article is reprinted from the WeC...

How to Choose and Buy Network Automation Tools

The concept of network automation has been around...

The ultimate solution to the problem that Github cannot display images

[[379338]] Preface Not long ago, I encountered th...

The 7 most in-demand tech jobs of 2018 — and how to hire them

From data scientists to data security experts, th...

From ServiceMesh to Decentralized SOA Bus

I have talked about service mesh, API gateway and...

How to Improve the Security of Wireless Routers

As we all know, the security of wireless routers ...

CMIVPS Seattle VPS (AS4837) simple test

We have previously shared information about CMIVP...

The first call was made to speed up 5G commercial use

5G commercial use is targeted for 2020, and all p...

Industry Observation | Impact of 5G on the Environment

Investigating the technical, environmental and so...

5G is here, what can 5G do?

5G is here. In order to let everyone know clearly...

7 excellent open source network monitoring tools

Network health is a measure of the health of the ...

IDC: Global edge computing market will reach $250.6 billion in 2024

Industry data: Gartner conducted a survey and int...