docker 容器中的文件究竟存储在主机上的什么位置

Where exactly, are files in docker container stored on the host machine

我在 windows 上使用 docker。通过使用 kitematic,我创建了一个 ubuntu 容器。此 ubuntu 图像上安装了 postgresql。

想知道是否有可能从主机(windows 机器)访问容器中可用的 postgres 配置文件?
容器究竟将其文件系统存储在主机的什么位置?
我希望它将成为格式为 VMDK 的图像文件的一部分。
如有不妥请指正

Wondering if there is any possibility to access the postgres configuration files available in the container from the host (windows machine)

这不是 Docker 允许您修改容器中文件的方式。
为此,您应该在启动 (docker 运行 -v) 容器时挂载主机 (Windows) 文件夹。
参见“Mount a host directory as a data volume

docker run -d -P --name web -v /c/Users/<myACcount>/src/webapp:/opt/webapp training/webapp python app.py

Issue 247 提及 ~/Library/Application Support/Kitematic 应用程序数据,以及 ~/Kitematic "for easy access to volume data".