我有这个docker-compose.yml
文件
version: '3'
volumes:
jenkins_home:
services:
registry:
image: registry:2
ports:
- "5000:5000"
jenkins:
image: jenkins/jenkins
ports:
- "9090:8080"
volumes:
- jenkins_home:/var/jenkins_home
正如您所看到的,有一个名为jenkins_home
的命名卷,现在我想知道,数据在哪里真正持久存在?
正在运行docker inspect infra_jenkins
我得到了这个:
...
"Mounts": [
{
"Type": "volume",
"Source": "infra_jenkins_home",
"Target": "/var/jenkins_home",
"VolumeOptions": {
"Labels": {
"com.docker.stack.namespace": "infra"
}
}
}
],
...
我使用docker stack deploy
命令在本地docker swarm集群上运行这些服务,集群由三个VirtualBox实例组成。
答案 0 :(得分:3)