gpt4 book ai didi

docker - boot2docker:没有到主机的路由

转载 作者:行者123 更新时间:2023-12-02 06:50:10 25 4
gpt4 key购买 nike

我在让适用于 Windows 10 的 Docker 工具箱在公司代理后面工作时遇到问题。

我无法让 docker login 或 docker run 正常工作,所以我做了以下调试工作。

我在虚拟机中创建了一个普通的 ubuntu 机器。

在我的主机上,我启动了在端口 8000 上运行的简单服务器。

在 Ubuntu 中:

$ curl 10.0.2.2:8000
$ [it retrieves the html being served]

$ curl www.google.com
$ curl (7) Failed to connect to www.google.com port 80: Connection refused
$ export http_proxy=http://my-proxy:3128
$ curl www.google.com
$ [302 HTTP response from google]

在 boot2docker 上:

$ curl 10.0.2.2:8000
$ [it retrieves the html being served]

$ curl www.google.com
$ curl (7) Failed to connect to www.google.com port 80: Connection refused
$ export http_proxy=http://my-proxy:3128
$ curl www.google.com
$ curl: (7) Failed to connect to my-proxy:3128: No route to host

这是怎么回事?

最佳答案

好的,我终于解决了这个问题。

问题是公司代理存在于与默认 docker VM 网桥相同的子网中。 (即 172.17.x.x)。

只是一个快速的解决方法 - 您可以通过在 docker VM 中更改它来解决这个问题。

$ docker-machine ssh mydockervm

$ ifconfig docker0 172.18.0.1 netmask 255.255.0.0

关于docker - boot2docker:没有到主机的路由,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47150243/

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