本文介绍了在容器之间挂载共享卷的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何挂载许多容器使用的卷?
How to mount a volume that is used by many containers ?
这是我使用的命令:
docker run -d -it --name shared --mount shared:/app ubuntu:latest
推荐答案
您使用了错误的标志.将-mount替换为-v.
You're using the wrong flag. Replace --mount with -v.
这篇关于在容器之间挂载共享卷的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!