Linux上的Docker:所有操作(Hello-World,Pull Image等)都会产生超时

时间:2018-11-16 16:15:07

标签: linux docker nameservers

我知道这是一个常见的问题,但是我花了两个小时试图超越fatal: could not read Username for 'https://github.com': terminal prompts disabled ,但完全陷入困境。

我尝试的所有操作都会产生一个net / http,等待连接超时。

运行 docker run hello-world

docker login

运行hello-world

Login with your Docker ID to push and pull images from Docker Hub. If you don't have a Docker ID, head over to https://hub.docker.com to create one.
Username: ******
Password: 
Error response from daemon: Get https://registry-1.docker.io/v2/: net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers)

我的docker版本是全新安装的AFAIK:

mike@tictac:~$ docker run hello-world
Unable to find image 'hello-world:latest' locally
docker: Error response from daemon: Get https://registry-1.docker.io/v2/: net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers).
See 'docker run --help'.

我尝试将8.8.8.8添加到我的/etc/resolv.conf中无济于事:

mike@tictac:~$ docker --version
Docker version 18.09.0, build 4d60db4

我认为我的/ etc / hosts文件也可以:

mike@tictac:~$ cat /etc/resolv.conf 
# Generated by NetworkManager
search home
nameserver 127.0.0.53
nameserver 8.8.8.8

这是我的码头工人信息:

mike@tictac:~$ cat /etc/hosts
127.0.0.1   localhost
127.0.1.1   tictac
8.8.8.8     tictac

# The following lines are desirable for IPv6 capable hosts
::1     ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters

我已经确认docker确实在运行:

mike@tictac:~$ docker info
Containers: 0
 Running: 0
 Paused: 0
 Stopped: 0
Images: 0
Server Version: 18.09.0
Storage Driver: overlay2
 Backing Filesystem: extfs
 Supports d_type: true
 Native Overlay Diff: true
Logging Driver: json-file
Cgroup Driver: cgroupfs
Plugins:
 Volume: local
 Network: bridge host macvlan null overlay
 Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog
Swarm: inactive
Runtimes: runc
Default Runtime: runc
Init Binary: docker-init
containerd version: c4446665cb9c30056f4998ed953e6d4ff22c7c39
runc version: 4fc53a81fb7c994640722ac585fa9ca548971871
init version: fec3683
Security Options:
 apparmor
 seccomp
  Profile: default
Kernel Version: 4.15.0-33-generic
Operating System: Linux Mint 19
OSType: linux
Architecture: x86_64
CPUs: 12
Total Memory: 15.37GiB
Name: tictac
ID: J54P:ILHO:J76M:AF27:MDKJ:BIDS:WODK:MA6N:IICP:TIMJ:BIUN:H56O
Docker Root Dir: /var/lib/docker
Debug Mode (client): false
Debug Mode (server): false
HTTP Proxy: http://proxy.example.com:80/
HTTPS Proxy: http://1.1.1.1:111
No Proxy: localhost,127.0.0.1,docker-registry.somecorporation.com
Registry: https://index.docker.io/v1/
Labels:
Experimental: false
Insecure Registries:
 127.0.0.0/8
Live Restore Enabled: false
Product License: Community Engine

WARNING: No swap limit support

如果我能打个招呼,我会很高兴的。

编辑:也相关,我可以直接卷曲URL:

mike@tictac:~$ sudo service docker status

    ● docker.service - Docker Application Container Engine
       Loaded: loaded (/lib/systemd/system/docker.service; enabled; vendor preset: enabled)
      Drop-In: /etc/systemd/system/docker.service.d
               └─10_docker_proxy.conf, http-proxy.conf
       Active: active (running) since Fri 2018-11-16 11:06:36 EST; 6min ago
         Docs: https://docs.docker.com
     Main PID: 6190 (dockerd)
        Tasks: 22
       CGroup: /system.slice/docker.service
               └─6190 /usr/bin/dockerd -H unix://

1 个答案:

答案 0 :(得分:1)

在这种情况下,我通常会怀疑代理配置,并且您的docker info还会显示一些不一致的HTTP / HTTPS和旁路配置。

HTTP Proxy: http://proxy.example.com:80/
HTTPS Proxy: http://1.1.1.1:111
No Proxy: localhost,127.0.0.1,docker-registry.somecorporation.com

通常大多数人根本不需要设置这些设置,但是有些公司会强制执行非透明的代理设置,但在这些情况下,前2个通常相同,对于旁路配置,它可能包含/var/run/docker.sock为好吧。

我将为docker deamon和客户端删除或重置所有代理配置,以确保它们全部匹配:

因此,如果您需要设置一个非透明的代理,我还要确保您的http_proxyhttps_proxyproxy_bypass环境变量也与您期望的代理配置相匹配:< / p>

env | grep proxy

因此,在curl或支持这些功能的其他Linux应用程序中,您将看到相同的结果。