报错信息如下(系统环境为CENTOS7):
当我执行拉取镜像的命令时,
docker pull centos:latest

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)

解决方案:
root用户执行命令:
su - root
vim /etc/docker/daemon.json
如果docker目录下没有daemon.json ,那么会自动创建,执行上面命令时。
添加如下内容:

{
        "registry-mirrors": ["https://registry.docker-cn.com","http://hub-mirror.c.163.com"]
}

重启docker
systemctl restart docker
再次拉取镜像
docker pull centos:latest

努力有用的话,还要天才做什么呢?