gpt4 book ai didi

django - 如何与 docker 共享本地 Postgres 数据库?

转载 作者:行者123 更新时间:2023-12-02 18:03:30 26 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





From inside of a Docker container, how do I connect to the localhost of the machine?

(36 个回答)


1年前关闭。




我有一个带有 PostgreS 数据库的 django 项目。我需要在 docker 容器中使用我的本地数据库。如何与 docker 容器共享机器的本地主机?我的 docker-compose.yml :

  version: '3'
services:
web:
build: ./
network_mode: "host"
command: bash -c "python manage.py makemigrations && python manage.py migrate && python manage.py collectstatic --noinput --i rest_framework && gunicorn orion-amr.wsgi:application --bind 0.0.0.0:8000 --workers=2"
ports:
- "${webport}:8000"
- "${pgport}:${pgport}"
env_file:
- ./.env
Django 设置.py :
DATABASES = {
'default': {
'ENGINE': 'django.contrib.gis.db.backends.postgis',
'NAME': os.environ.get('pgdatabase'),
'USER': os.environ.get('pguser'),
'PASSWORD': os.environ.get('pgpassword'),
'HOST': os.environ.get('pghostname'),
'PORT': os.environ.get('pgport'),
}
}
我添加了
listen_addresses = '*'  
postgresql.conf 文件及以下是我的 pg_hba.conf 文件:
# TYPE  DATABASE        USER            ADDRESS                 METHOD

# IPv4 local connections:
host all all 0.0.0.0/0 trust
# IPv6 local connections:
host all all ::/0 trust
# Allow replication connections from localhost, by a user with the
# replication privilege.
host replication all 127.0.0.1/32 trust
host replication all ::1/128 trust
现在我有一个错误:
web_1  | django.db.utils.OperationalError: could not connect to server: Connection refused
web_1 | Is the server running on host "127.0.0.1" and accepting
web_1 | TCP/IP connections on port 5432?
web_1 |
谁能帮我?请!

最佳答案

好像 os.environ.get('pghostname')指向127.0.0.1在哪里 127.0.0.1指的是这个容器,而不是主机数据库。作为错误

Is the server running on host "127.0.0.1" and accepting
要连接主机数据库,您需要为 mac 和窗口 host.docker.internal 提供特殊的 DNS .数据库主机应该是
'HOST': "host.docker.internal"
要连接 HOST DB,或者如果你在 Linux 上,那么它应该是
'HOST': "HOST_IP"

您可以从 ifconfig 获取主机 IP .

关于django - 如何与 docker 共享本地 Postgres 数据库?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63068066/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com