docker run -v /Users/xx/var/temp:/ -it alpine bash
但是提示:
invalid mount config for type bind: invalid specification: destination can't be /
为什么高山主机目录无法挂载?
答案 0 :(得分:3)
Docker不允许您将主机目录或卷绑定到容器内的根(/
)。您需要将其绑定到子目录,例如:
docker run -v /Users/xx/var/temp:/var/temp -it alpine bash
这将使目录在容器内的/var/temp
可用。