docker pull lookup index.docker.io: no such host

后端 未结 1 664
小蘑菇
小蘑菇 2021-01-02 07:31

I am attempting to download centos image in \"Docker quickstart terminal\" with command

docker pull centos:7

with result

Pu         


        
相关标签:
1条回答
  • 2021-01-02 08:18

    This usually is a proxy issue: if you are using a proxy to access internet, make sure to:

    • either set properly your HTTP(S)_PROXY environment variable
    • or to use docker-machine create with the right --engine-env option

    For instance, on my Windows, using VirtualBox:

    docker-machine create -d virtualbox \
      --engine-env HTTP_PROXY=$http_proxy --engine-env HTTPS_PROXY=$https_proxy \
      --engine-env http_proxy=$http_proxy --engine-env https_proxy=$https_proxy \
      --engine-env NO_PROXY=$no_proxy --engine-env no_proxy=$no_proxy
      aMachine
    

    That will create the right /var/lib/boot2docker/profile setting file, with those variables declared in it, allowing docker daemon to access the internet.

    The quickstart terminal opens by default an ssh session to the "default" VM.
    That is the same as docker-machine ssh default.
    If that default VM misses the right docker profile, you can docker-machine rm it, and recreate it, this time using --engine-env.

    0 讨论(0)
提交回复
热议问题