执行命令
docker inspect -f '{{ .Mounts }}' $(docker ps -q)
这个命令的工作原理如下:
docker ps -q:列出所有正在运行的容器的ID。
docker inspect:检查每个容器的详细信息。
-f:指定输出格式。
{{ .Mounts }}:这是Go模板字符串,它提取挂载信息
image.png
输出格式:
[{Type=bind Source=/host/path Destination=/container/path ...}]
[{Type=bind Source=/other/host/path Destination=/other/container/path ...}]
...
其中Source是宿主机上的路径,Destination是容器内的路径。这样,您就可以看到容器使用的文件的服务器绝对路径。
网友评论