Before reading this article, I hope you have a preliminary understanding of Volumes. For details, please refer to this article: Docker Data Storage Volumes Detailed Explanation By default, the reading and writing of container data occurs at the container's storage layer. When the container is deleted, the data on it will be lost. Therefore, we should try to ensure that no write operations occur in the container storage layer. In order to achieve persistent storage of data, we need to choose a solution to save data. Currently, there are several ways:
The following diagram illustrates these three techniques: Bind mounts The Bind mounts mode is very similar to Volumes. The difference is that the Bind mounts mode mounts any file or folder on the host to the container, while Volumes essentially mounts an area managed by the Docker service (the default is a folder under /var/lib/docker/volumes) to the container. The use of bind mounts is similar to that of volumes, and the host files are mounted in the container through When using the $ docker run -d \ --name=nginxtest \ --mount type=bind,source=/usr/local/web,destination=/usr/share/nginx/html \ nginx:latest The above example mounts the /usr/local/web folder on the host to the /usr/share/nginx/html folder in the container. Or use the $ docker run -d \ --name=nginxtest \ -v /usr/local/web:/usr/share/nginx/html \ nginx:latest After the mount is successful, the container reads or writes data from the /usr/share/nginx/html directory, which actually reads or writes data from the /usr/local/web directory of the host. Therefore, Volumes or Bind mounts can also be seen as a way for containers and hosts to share files.
Bind mounts usage scenarios Please refer to this article: Docker Data Storage Summary References https://docs.docker.com/storage/bind-mounts/ Summarize The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. If you want to learn more about this, please check out the following links You may also be interested in:
|
<<: Detailed explanation of JDBC database link and related method encapsulation
>>: JavaScript to implement login slider verification
By understanding how tomcat handles concurrent re...
When we check the source code of many websites, w...
Recently, when I was doing a practice project, I ...
Table of contents 1. Prototype 2. Prototype point...
As shown in the figure: But when viewed under IE6...
Table of contents Preface text Primitive types Pr...
Application scenario 1: Domain name-based redirec...
Table of contents Preface Introduction to Dockerf...
1. Create a scheduling task instruction crontab -...
This article mainly introduces how to implement a...
1. Use the installation package to install MySQL ...
Table of contents What is an index? Leftmost pref...
How is Line-height inherited?Write a specific val...
Glass Windows What we are going to achieve today ...
Table of contents Preface Background Implementati...