Docker 获取容器镜像报错
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Docker 获取容器镜像报错相关的知识,希望对你有一定的参考价值。
Dokcer 获取容器镜像报错
[[email protected] ~]# docker pull nginx
Using default tag: latest
Trying to pull repository docker.io/library/nginx ...
Get https://registry-1.docker.io/v2/: net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers)
因为在下载官方镜像点的镜像国内访问速度太慢,所以报错,使用加速器就可以解决这个问题
首先打开配置文件daemon.json,centos上安装后有此文件,但是ubuntu上需要自己创建文件:
[[email protected] ~]# vim /etc/docker/daemon.json
在文件中加入:
{
"registry-mirrors":["https://docker.mirrors.ustc.edu.cn"]
}
然后重启守护进程:
[[email protected] ~]# systemctl daemon-reload
[[email protected] ~]#systemctl restart docker
可以使用阿里的加速器:https://yq.aliyun.com/articles/29941
以上是关于Docker 获取容器镜像报错的主要内容,如果未能解决你的问题,请参考以下文章
Docker获取镜像报错docker: Error response from daemon