命名的容器挂载数据卷。其他容器通过挂载这个容器实现数据共享,挂载数据的容器 -> 称之为数据卷容器
通过使用容器数据卷,可以方便地管理和共享数据,使得容器之间的数据交互更加便捷。 Docker中容器卷之间的继承讲解 在Docker中,容器卷之间可以使用继承关系来共享和传递数据。
举例说明
创建DockerFile
FROM centos
VOLUME ["dataVolume01", "dataVolume02"]
CMD /bin/bash
构建镜像
docker build -f dockerFile02 -t mzw/centos .
启动容器
启动容器并命名为test01
docker run -it --name test01 mzw/centos
修改数据卷
- 进入数据卷
cd dataVolume01
- 创建文件并填写数据
echo hello >> a.txt
创建子容器
- 创建子容器,命名为test02,指定数据卷为容器test01
docker run -it --name test02 --volumes-from test01 mzw/centos
- 创建子容器,命名为test03,指定数据卷为容器test01
docker run -it --name test03 --volumes-from test01 mzw/centos
验证
- 在容器test02中进入数据卷
cd dataVolume01
- 查看内部数据
cat a.txt
test02与test01 数据卷内容一致
- 修改test02内数据卷内容,查看test01内数据卷
- 修改test02数据卷内容
- 查看test01数据内容
test01与test02 数据卷内容一致
此时删掉test01容器,02和03数据依然共享
数据卷的生命周期一直持续到没有容器使用为止