无法访问docker Windows容器内部的互联网

时间:2020-01-16 09:04:19

标签: docker docker-for-windows windows-container

我正在尝试使用docker windows容器构建映像。这是我的dockerfile

FROM mcr.microsoft.com/windows/servercore:ltsc2019 as installer
RUN Invoke-WebRequest -URI 'www.google.com'

当我运行它时,它无法连接到google.com

Invoke-WebRequest : The remote name could not be resolved: 'www.google.com'
At line:1 char:73

我正在公司网络上工作,我尝试使用 RUN netsh winhttp set proxy proxy-server="http://proxy.com:80" bypass-list="*.xyz.com" 并导入了注册表HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings

我容器中的ipconfig / all给出以下结果

Windows IP Configuration

   Host Name . . . . . . . . . . . . : 0d5119fe9ce4
   Primary Dns Suffix  . . . . . . . :
   Node Type . . . . . . . . . . . . : Hybrid
   IP Routing Enabled. . . . . . . . : No
   WINS Proxy Enabled. . . . . . . . : No

Ethernet adapter Ethernet:

   Connection-specific DNS Suffix  . :
   Description . . . . . . . . . . . : Microsoft Hyper-V Network Adapter
   Physical Address. . . . . . . . . : 00-15-5D-B4-55-54
   DHCP Enabled. . . . . . . . . . . : Yes
   Autoconfiguration Enabled . . . . : Yes
   Link-local IPv6 Address . . . . . : fd80::a1f4:ab74:983:af83%4(Preferred)
   IPv4 Address. . . . . . . . . . . : 172.xxx.xxx.xx(Preferred)
   Subnet Mask . . . . . . . . . . . : 255.xxx.xxx.xx
   Default Gateway . . . . . . . . . : 172.xxx.xxx.xx
   DHCPv6 IAID . . . . . . . . . . . : 67114333
   DHCPv6 Client DUID. . . . . . . . : 00-01-40-01-25-D1-CB-C4-00-15-5D-D4-A5-54
   DNS Servers . . . . . . . . . . . : 172.xxx.xxx.xx
                                       10.xxx.xxx.xx
   NetBIOS over Tcpip. . . . . . . . : Disabled

我怀疑存在一些dns /防火墙问题或未正确设置代理。有人可以帮助我确定根本原因并解决此问题。

3 个答案:

答案 0 :(得分:6)

我遇到了同样的问题,并且能够通过设置DNS来解决它。

如果在构建期间进行呼叫,则可以在docker守护进程中进行设置。 在Docker Desktop中,转到“设置”>“ Docker Engine”,然后将以下内容添加到JSON配置中:

"dns": ["1.1.1.1"]

https://docs.docker.com/engine/reference/commandline/dockerd/#daemon-dns-options

如果在运行时遇到问题,则可以添加dns参数

--dns 1.1.1.1

https://docs.docker.com/engine/reference/run/#network-settings

答案 1 :(得分:2)

我正在努力解决类似的问题,这是因为我已连接到VPN,并且未启用Cisco AnyConnect中的设置“使用VPN时允许本地(LAN)访问(如果已配置)”。万一其他人都在为类似的问题而挣扎。

答案 2 :(得分:0)

指定网络命令可用作解决方法。适用于 buildrun

docker build --network="Default Switch" .

docker run --rm -it --network="Default Switch" mcr.microsoft.com/windows/servercore:ltsc2019

名字来自这里:

docker network ls
NETWORK ID     NAME             DRIVER    SCOPE
79b90200b5ad   Default Switch   ics       local
07ffb031d4b7   nat              nat       local
6682d6220de5   none             null      local

由于某种原因,docker default (nat) 没有互联网连接。