**已关闭。**此问题为not about programming or software development。当前不接受答案。
此问题似乎与a specific programming problem, a software algorithm, or software tools primarily used by programmers无关。如果您认为此问题与another Stack Exchange site的主题有关,您可以留下评论,说明在何处可以回答此问题。
4天前关闭。
Improve this question
我正在研究docker卷。我试过使用docker -v选项绑定到本地目录。之后,如果我检查docker inspect,只有信息在挂载,但没有信息在卷。
~ $ docker inspect --format='{{json .Config.Volumes }}{{json .Mounts}}' 6171e4550c47 | jq
null
[
{
"Type": "bind",
"Source": "/Users/kyounghwan.choi/test",
"Destination": "/opt/dir",
"Mode": "",
"RW": true,
"Propagation": "rprivate"
}
]
那边的货什么时候能装满?
1条答案
按热度按时间aelbi1ox1#
Docker支持两种不同的持久化机制。您已经创建了一个bind mount来使主机目录出现在容器中,但您还没有创建(named) volume。这将导致
.Mounts
文件显示 something 已挂载到容器中,但没有您挂载的卷 per se。也就是说:如果您没有将任何命名或匿名卷挂载到容器中,那么
.Config.Volumes
将始终是null
,即使您有绑定挂载的主机目录。