如何从 docker 容器向 localhost 发出请求?
Posted
技术标签:
【中文标题】如何从 docker 容器向 localhost 发出请求?【英文标题】:How to make request to localhost form docker container? 【发布时间】:2020-03-31 14:39:14 【问题描述】:我使用 docker-compose。我想向本地主机发出请求。 但是我收到了这个错误:
requests.exceptions.ConnectionError:
HTTPConnectionPool(host='0.0.0.0', port=9011): Max retries exceeded
with url: /api/user/registration (Caused by
NewConnectionError('<urllib3.connection.HTTPConnection object at
0x7fac61209110>: Failed to establish a new connection: [Errno 111]
Connection refused'))
我的代码:
import requests
response = requests.get('http://127.0.0.1:9011')
print(response.content)
这是我的docker-compose.yml
。
version: '3.4'
services:
web:
build: .
command: runserver
env_file:
- .env
volumes:
- 'static:/opt/app/static:rw'
ports:
- 8000:8000
volumes:
static:
【问题讨论】:
您为 docker 容器分配了一个端口?显示您的 docker-compose.yml 会有所帮助。response = requests.get('http://127.0.0.1:9011')
端口 9011 上是否有任何东西在运行?如果您从 docker 容器内部调用 localhost,则您将调用 docker 容器内部的主机。您可能想使用 docker 主机网络
是的,有我的网站。但我不能向这个网站提出请求。
本地主机的规范 IP 地址是 127.0.0.1
。在 Docker 中,这几乎总是意味着“这个容器”,所以如果您的容器在端口 9011 上没有提供任何服务,那么您可能正在寻找不同的主机名或 IP 地址。
【参考方案1】:
我找到了答案。您应该将network_mode: host
添加到docker-compose.yml
version: '3.4'
services:
web:
build: .
command: runserver
env_file:
- .env
volumes:
- 'static:/opt/app/static:rw'
ports:
- 8000:8000
network_mode: host # Added this
volumes:
static:
【讨论】:
这几乎总是解决一些更深层次问题的方法;这就像以 root 身份运行来解决权限问题。 是的!但对于某些测试目的,它确实很有帮助。以上是关于如何从 docker 容器向 localhost 发出请求?的主要内容,如果未能解决你的问题,请参考以下文章
如何从 docker 容器中的 python 脚本连接到 localhost 上的 mysql 数据库
无法从我的 Docker 容器内部连接到主机的 localhost
Docker/Symfony/Reactjs/Keycloak:如何使用分离的 docker-compose 文件从一个容器向另一个容器发出 HTTP 请求?