In docker, a data volume is a special directory on the host that can be used by one or more containers. It can be shared and reused between containers. It is more efficient to transfer data between local and containers; Modifications to the volume will be effective immediately, and the data volume can be modified both inside the container and in the local directory.
The operating environment of this tutorial: linux5.9.8 system, docker-1.13.1 version, Dell G3 computer.
What is a docker data volume?
Data volume (Data Volumes) is a directory or file in the host. The design purpose of the data volume It is the persistence of data, which is completely independent of the life cycle of the container, so Docker will not delete its mounted data volume when the container is deleted. When the container directory and the data volume directory are bound, each other's modifications will be synchronized immediately. One data volume can be mounted by multiple containers at the same time, and one container can also be mounted with multiple data volumes.
Data volume features
Data volumes can be shared and reused between containers, and data transfer between local and containers is more efficient
Modifications to the data volume will be effective immediately. The data volume can be modified inside the container or in the local directory
Updates to the data volume will not Affects the image and decouples data and applications
The volume will always exist until no container is used
1. Docker data Mounting to the container
In Docker, in order to achieve data persistence (the so-called data persistence of Docker means that the data does not end with the end of the Container) , data needs to be mounted from the host to the container. Currently, Docker provides three different ways to mount data from the host into the container: (1) volumes: Docker manages a part of the host file system, which is located in /var/lib/docker/volumes by default. Directory; (
The most commonly used method)
As you can see from the above figure, all Container data are currently stored in this directory. Since There is no volume specified when creating, so Docker helps us create many anonymous (just the bunch of long ID names above) volumes by default.
(2) bind mounts: means it can be stored in any location of the host system; (
commonly used method) However, bind mounts are in different The host system is not portable. For example, the directory structures of Windows and Linux are different, and the host directories pointed to by bind mount cannot be the same. This is also the reason why bind mount cannot appear in the Dockerfile, because then the Dockerfile is not portable.
(3) tmpfs: The mount is stored in the memory of the host system and will not be written to the host's file system; (
A method that is generally not used) The schematic diagram of the three methods is as follows:
2.1 Managing volumes# docker volume create edc-nginx-vol // 创建一个自定义容器卷
# docker volume ls // 查看所有容器卷
# docker volume inspect edc-nginx-vol // 查看指定容器卷详情信息
For example, here we create a custom container volume named "edc-nginx-vol":
2.2 Create a container using the specified volumeWith the custom container volume, we can create a container using this data volume. Here we Take nginx as an example:
# docker run -d -it --name=edc-nginx -p 8800:80 -v edc-nginx-vol:/usr/share/nginx/
Among them, -v represents mounting the data volume. Here, the custom data volume edc-nginx-vol is used, and the data volume is mounted to /usr/share/nginx/html ( This directory is the default web directory for yum to install nginx).
If -v is not specified, Docker will help us create anonymous data volumes for mapping and mounting by default.
After creating the container, we can enter the container and take a look:
We can see that there are two default pages. At this time we start a new SSH Connect to the host and look inside the data volume just created:
可以看到,我们可以访问到容器里面的两个默认页面,由此可知,volume帮我们做的类似于一个软链接的功能。在容器里边的改动,我们可以在宿主机里感知,而在宿主机里面的改动,在容器里边可以感知到。
这时,如果我们手动stop并且remove当前nginx容器,我们会发现容器卷里面的文件还在,并没有被删除掉。
由此可以验证,在数据卷里边的东西是可以持久化的。如果下次还需要创建一个nginx容器,那么还是复用当前数据卷里面的文件。
此外,我们还可以启动多个nginx容器实例,并且共享同一个数据卷,复用性和扩展性较强。
2.3 清理卷
如果不再使用自定义数据卷了,那么可以手动清理掉:
# docker stop edc-nginx // 暂停容器实例 # docker rm edc-nginx // 移除容器实例 # docker volume rm edc-nginx-vol // 删除自定义数据卷
三、Bind Mounts的基本使用
3.1 使用卷创建一个容器
docker run -d -it --name=edc-nginx -v /app/wwwroot:/usr/share/nginx/html nginx
这里指定了将宿主机上的 /app/wwwroot 目录(如果没有会自动创建)挂载到 /usr/share/nginx/html (这个目录是yum安装nginx的默认网页目录)。
这时我们再次进入容器内部看看:
可以看到,与volumes不同,bind mounts的方式会隐藏掉被挂载目录里面的内容(如果非空的话),这里是/usr/share/nginx/html 目录下的内容被隐藏掉了,因此我们看不到。
但是,我们可以将宿主机上的文件随时挂载到容器中:
Step1.新建一个index.html
Step2.在容器中查看
3.2 验证绑定
docker inspect edc-nginx
通过上述命令可以看到一大波配置,我们要关注的是:
3.3 清理
docker stop edc-nginx docker rm edc-nginx
同volumes一样,当我们清理掉容器之后,挂载目录里面的文件仍然还在,不会随着容器的结束而消失,从而实现数据持久化。
3.4 应用案例
在服务治理组件中,服务发现组件是一个最常用的组件之一,Consul是一个流行的服务发现开源项目,Consul推荐我们使用配置文件的方式注册服务信息。因此,我们常常会将填写好服务注册配置文件放在宿主机的一个文件目录下将其挂载到Consul的容器指定目录下,如下所示:
docker run -d -p : --restart=always \ -v /XiLife/consul/data/server1:/consul/data -v /XiLife/consul/conf/server1:/consul/config \ -e CONSUL_BIND_INTERFACE= --privileged= \ --name=consul_server_1 consul:. agent -server -bootstrap-expect= -ui -node=consul_server_1 -client= \ -data- /consul/data -config- /consul/config -datacenter=xdp_dc;
可以看到,我们通过Bind Mounts的方式将宿主机上的/XiLife/consul/data/server1目录挂载到了容器的/consul/data目录下,还将/XiLife/consul/conf/server1目录挂载到了容器的/consul/config目录下,而容器下的两个目录/consul/data和/consul/config则是我们指定的存放agent数据和配置文件的地方。因此,宿主机上的配置文件的变化会及时反映到容器中,比如我们在宿主机上的目录下更新了配置文件,那么只需要reload一下Consul的容器实例即可:
docker exec consul-server consul reload
*.这里的consul-server是容器的名字,consul reload是重新加载的命令(非restart)。
推荐学习:《docker视频教程》
The above is the detailed content of What is a docker data volume?. For more information, please follow other related articles on the PHP Chinese website!

docker中rm和rmi的区别:rm命令用于删除一个或者多个容器,而rmi命令用于删除一个或者多个镜像;rm命令的语法为“docker rm [OPTIONS] CONTAINER [CONTAINER...]”,rmi命令的语法为“docker rmi [OPTIONS] IMAGE [IMAGE...]”。

docker官方镜像有:1、nginx,一个高性能的HTTP和反向代理服务;2、alpine,一个面向安全应用的轻量级Linux发行版;3、busybox,一个集成了三百多个常用Linux命令和工具的软件;4、ubuntu;5、PHP等等。

docker容器重启后数据会丢失的;但是可以利用volume或者“data container”来实现数据持久化,在容器关闭之后可以利用“-v”或者“–volumes-from”重新使用以前的数据,docker也可挂载宿主机磁盘目录,用来永久存储数据。

docker对于小型企业、个人、教育和非商业开源项目来说是免费的;2021年8月31日,docker宣布“Docker Desktop”将转变“Docker Personal”,将只免费提供给小型企业、个人、教育和非商业开源项目使用,对于其他用例则需要付费订阅。

docker能安装oracle。安装方法:1、拉取Oracle官方镜像,可以利用“docker images”查看镜像;2、启动容器后利用“docker exec -it oracle11g bash”进入容器,并且编辑环境变量;3、利用“sqlplus /nolog”进入oracle命令行即可。

解决方法:1、停止docker服务后,利用“rsync -avz /var/lib/docker 大磁盘目录/docker/lib/”将docker迁移到大容量磁盘中;2、编辑“/etc/docker/daemon.json”添加指定参数,将docker的目录迁移绑定;3、重载和重启docker服务即可。

容器管理ui工具有:1、Portainer,是一个轻量级的基于Web的Docker管理GUI;2、Kitematic,是一个GUI工具,可以更快速、更简单的运行容器;3、LazyDocker,基于终端的一个可视化查询工具;4、DockStation,一款桌面应用程序;5、Docker Desktop,能为Docker设置资源限制,比如内存,CPU,磁盘镜像大小;6、Docui。

AUFS是docker最早支持的存储引擎。AUFS是一种Union File System,是文件级的存储驱动,是Docker早期用的存储驱动,是Docker18.06版本之前,Ubuntu14.04版本前推荐的,支持xfs、ext4文件。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

WebStorm Mac version
Useful JavaScript development tools

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

SublimeText3 Linux new version
SublimeText3 Linux latest version

Notepad++7.3.1
Easy-to-use and free code editor

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.
