你已经是一个成熟的docker了,要学会自己给自己加速了哦。
今天在新撸的阿里云ECS上拉镜像,速度很慢,而且最终还是出错了。
参考V2的帖子,推测可能是GFW的锅。
解决也很简单,连接大陆的docker hub镜像站即可。
Ubuntu 16.04+、Debian 8+、CentOS 7
对于使用 systemd 的系统,在 /etc/docker/daemon.json
中写入如下内容:
{
"registry-mirrors": [
"https://dockerhub.azk8s.cn",
"https://hub-mirror.c.163.com"
]
}
之后重新启动服务。
$ sudo systemctl daemon-reload
$ sudo systemctl restart docker
参考:https://yeasy.gitbooks.io/docker_practice/install/mirror.html