如何从容器中获取postgresql.conf?或者我在哪里可以看到默认的?一位同事给了我他的配置文件,将它与我自己进行比较,看看我需要做些改动。
容器上的文件路径是:
postgres=# show config_file;
config_file
------------------------------------------
/var/lib/postgresql/data/postgresql.conf
(1 row)
但我不知道如何将文件从容器中提取到我的主机
答案 0 :(得分:1)
使用Docker cp:
docker cp <container>:/var/lib/postgresql/data/postgresql.conf
请看以下链接: