[root@node1 ~]# 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)node
由於在下載官方鏡像點的鏡像國內訪問速度太慢,因此報錯,使用加速器就能夠解決這個問題nginx
首先打開配置文件daemon.json,centos上安裝後有此文件,可是ubuntu上須要本身建立文件:
[root@node1 ~]# vim /etc/docker/daemon.json
在文件中加入:
{
"registry-mirrors":["https://docker.mirrors.ustc.edu.cn"]
}docker
而後重啓守護進程:
[root@node1 ~]# systemctl daemon-reload
[root@node1 ~]#systemctl restart dockerjson
能夠使用阿里的加速器:https://yq.aliyun.com/articles/29941ubuntu