Docker가 거울을 끌어올릴 수 없는 해결 방법
#docker run hello-world
Unable to find image 'hello-world:latest' locally
Pulling repository docker.io/library/hello-world
docker: Network timed out while trying to connect to https://index.docker.io/v1/repositories/library/hello-world/images. You may want to check your internet connection or if you are behind a proxy..
See 'docker run --help'.
여러 가지 방법이 모두 유효하지 않은 경우 NIC 구성 파일을 열고 DNS를 설정하면 문제가 해결됩니다.
#vim/etc/sysconfig/network-scripts/ifcfg-eth0
DEVICE=eth0
ONBOOT=yes
BOOTPROTO=static
IPADDR=10.132.40.37
NETMASK=255.255.240.0
DNS1=8.8.8.8 #google DNS
DNS2=114.114.114.114 # DNS
~
# service network restart