docker如何查看正在运行的容器所用的是哪个文件的服务器绝对路

2024-11-25  本文已影响0人  尘埃里的玄

执行命令
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是容器内的路径。这样,您就可以看到容器使用的文件的服务器绝对路径。

上一篇 下一篇

猜你喜欢

热点阅读