跳转至

提升 Docker 在中国大陆下载速度

文档时效性说明

本文为早期笔记,可能存在版本过时、命令失效、链接失效、最佳实践变化等问题。请以官方最新文档为准。

原英文标题:Increase Docker Download Speed in China Mainland #

Using Azure mirror and Netease mirror.

Add these in /etc/docker/daemon. (touch this file if it does not exist)

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

$ sudo systemctl daemon-reload
$ sudo systemctl restart docker