我正在尝试使用Docker compose在远程服务器上部署第二个数据库容器。这个postgresql服务器在端口5433上运行,而不是第一个postgresql容器使用的5432。
当我设置应用程序时,我收到此错误输出:
web_1 | django.db.utils.OperationalError: could not connect to server: Connection refused
web_1 | Is the server running on host "db" (172.17.0.2) and accepting
web_1 | TCP/IP connections on port 5433?
我的docker撰写文件是:
db:
image: postgres:latest
environment:
POSTGRES_PASSWORD: route_admin
POSTGRES_USER: route_admin
expose:
- "5433"
ports:
- "5433"
volumes:
- ./backups:/home/backups
web:
build: .
command: bash -c "sleep 5 && python -u application/manage.py runserver 0.0.0.0:8081"
volumes:
- .:/code
ports:
- "81:8081"
links:
- db
environment:
- PYTHONUNBUFFERED=0
我觉得问题必须是服务器实例上的postgresql.conf文件,将端口设置为5432,导致我的应用程序尝试连接时出错。是否有一种使用compose文件中的命令更改端口的简单方法,而不是使用卷来替换文件?
我正在使用官方的postgresql容器来完成这项工作。
答案 0 :(得分:33)
我假设postgres正在容器中的端口5432上运行,并且您希望在5433上的主机上公开它。
在ports strophe中使用它:
ports:
-"5433:5432"
这将在主机上的端口5433上公开服务器。在这种情况下,你可以摆脱现有的暴露。
如果您只想将服务公开给在compose文件中声明的其他服务(而不是localhost),只需使用公开的strophe并将其指向已经内部公开的端口5432.
答案 1 :(得分:12)
有些人可能希望实际更改Postgres运行的端口,而不是使用port指令将暴露的端口重新映射到主机。
为此,请使用command: -p 5433
在用于该问题的示例中:
db:
image: postgres:latest
environment:
POSTGRES_PASSWORD: route_admin
POSTGRES_USER: route_admin
expose:
- "5433" # Publishes 5433 to other containers but NOT to host machine
ports:
- "5433:5433"
volumes:
- ./backups:/home/backups
command: -p 5433
请注意,只有主机会遵守端口指令。其他容器不会。