狗儿

热爱的话就坚持吧~

0%

Docker镜像加速器

你已经是一个成熟的docker了,要学会自己给自己加速了哦。

今天在新撸的阿里云ECS上拉镜像,速度很慢,而且最终还是出错了。

1582124733784

参考V2的帖子,推测可能是GFW的锅。

1582124928573

解决也很简单,连接大陆的docker hub镜像站即可。

Ubuntu 16.04+、Debian 8+、CentOS 7

对于使用 systemd 的系统,在 /etc/docker/daemon.json 中写入如下内容:

1
2
3
4
5
6
{
"registry-mirrors": [
"https://dockerhub.azk8s.cn",
"https://hub-mirror.c.163.com"
]
}

之后重新启动服务。

1
2
$ sudo systemctl daemon-reload
$ sudo systemctl restart docker

参考:https://yeasy.gitbooks.io/docker_practice/install/mirror.html