Docker中搜索centos的镜像出现Error response from daemon..
具体问题
Error response from daemon: Get https://index.docker.io/v1/search?q=centos&n=25:dial tcp:lookup index.docker.io on 192.168.2.2:53:read udp 192.168.2.2:53 i/o timeout
解决方案
查看服务器DNS网络配置
vi /etc/resolv.conf
本身的网络配置
修改resolv.conf中的nameserver为8.8.8.8
此时输入以下代码检测是否能成功搜索centos的镜像
docker search centos
成功搜索到centos的镜像 问题解决 over~