我创建了两个docker容器。其中一个将glusterfs安装到/ mnt / storage。现在我想与另一个容器共享gluster mount /文件夹。
为此,我尝试了以下docker-compose文件:
php:
image: php-image
hostname: php
volumes:
- gluster-volume:/mnt/storage
gluster:
image: gluster-image
privileged: true
volumes:
- /root/fstab:/etc/fstab
- gluster-volume:/mnt/storage
volumes:
gluster-volume:
我认为docker volume mount(gluster-volume:/ mnt / storage)因同一路径上已安装的glusterfs卷而失败:/ mnt / storage。这导致docker无法安装音量。