2019-11-05 15:35:43 +00:00
|
|
|
|
# 镜像加速器
|
2016-11-12 19:48:40 +00:00
|
|
|
|
|
2019-05-12 01:44:17 +00:00
|
|
|
|
国内从 Docker Hub 拉取镜像有时会遇到困难,此时可以配置镜像加速器。国内很多云服务商都提供了国内加速器服务,例如:
|
2016-11-12 19:48:40 +00:00
|
|
|
|
|
2019-12-09 07:05:06 +00:00
|
|
|
|
* [网易云加速器 `https://hub-mirror.c.163.com`](https://www.163yun.com/help/documents/56918246390157312)
|
2020-05-11 11:01:06 +00:00
|
|
|
|
* [百度云加速器 `https://mirror.baidubce.com`](https://cloud.baidu.com/doc/CCE/s/Yjxppt74z#%E4%BD%BF%E7%94%A8dockerhub%E5%8A%A0%E9%80%9F%E5%99%A8)
|
2020-04-04 14:54:32 +00:00
|
|
|
|
* [阿里云加速器(需登录账号获取)](https://cr.console.aliyun.com/cn-hangzhou/mirrors)
|
2016-11-12 19:48:40 +00:00
|
|
|
|
|
2020-05-11 11:01:06 +00:00
|
|
|
|
**由于镜像服务可能出现宕机,建议同时配置多个镜像。各个镜像站测试结果请到 [docker-practice/docker-registry-cn-mirror-test](https://github.com/docker-practice/docker-registry-cn-mirror-test/actions) 查看。**
|
2018-06-28 03:15:25 +00:00
|
|
|
|
|
2019-05-12 01:44:17 +00:00
|
|
|
|
> 国内各大云服务商均提供了 Docker 镜像加速服务,建议根据运行 Docker 的云平台选择对应的镜像加速服务,具体请参考官方文档。
|
2018-07-10 00:07:31 +00:00
|
|
|
|
|
2020-04-04 14:54:32 +00:00
|
|
|
|
本节我们以 [网易云](https://www.163yun.com/) 镜像服务 `https://hub-mirror.c.163.com` 为例进行介绍。
|
2016-11-12 19:48:40 +00:00
|
|
|
|
|
2019-11-05 15:35:43 +00:00
|
|
|
|
## Ubuntu 16.04+、Debian 8+、CentOS 7
|
2016-11-12 19:48:40 +00:00
|
|
|
|
|
2017-10-19 15:24:41 +00:00
|
|
|
|
对于使用 [systemd](https://www.freedesktop.org/wiki/Software/systemd/) 的系统,请在 `/etc/docker/daemon.json` 中写入如下内容(如果文件不存在请新建该文件)
|
2016-11-12 19:48:40 +00:00
|
|
|
|
|
2017-10-19 15:24:41 +00:00
|
|
|
|
```json
|
|
|
|
|
{
|
|
|
|
|
"registry-mirrors": [
|
2020-05-11 11:01:06 +00:00
|
|
|
|
"https://hub-mirror.c.163.com",
|
|
|
|
|
"https://mirror.baidubce.com"
|
2017-10-19 15:24:41 +00:00
|
|
|
|
]
|
|
|
|
|
}
|
2016-11-12 19:48:40 +00:00
|
|
|
|
```
|
|
|
|
|
|
2017-12-03 02:27:36 +00:00
|
|
|
|
> 注意,一定要保证该文件符合 json 规范,否则 Docker 将不能启动。
|
|
|
|
|
|
2017-10-19 15:24:41 +00:00
|
|
|
|
之后重新启动服务。
|
2016-11-12 19:48:40 +00:00
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
$ sudo systemctl daemon-reload
|
|
|
|
|
$ sudo systemctl restart docker
|
|
|
|
|
```
|
|
|
|
|
|
2020-04-04 14:54:32 +00:00
|
|
|
|
>注意:如果您之前查看旧教程,修改了 `docker.service` 文件内容,请去掉您添加的内容(`--registry-mirror=https://hub-mirror.c.163.com`)。
|
2017-10-19 15:24:41 +00:00
|
|
|
|
|
2019-11-05 15:35:43 +00:00
|
|
|
|
## Windows 10
|
2016-11-17 13:36:22 +00:00
|
|
|
|
|
2019-09-20 07:05:06 +00:00
|
|
|
|
对于使用 `Windows 10` 的用户,在任务栏托盘 Docker 图标内右键菜单选择 `Settings`,打开配置窗口后在左侧导航菜单选择 `Docker Engine`,在右侧像下边一样编辑 json 文件,之后点击 `Apply & Restart` 保存后 Docker 就会重启并应用配置的镜像地址了。
|
2019-09-20 06:06:04 +00:00
|
|
|
|
|
|
|
|
|
```json
|
|
|
|
|
{
|
|
|
|
|
"registry-mirrors": [
|
2020-05-11 11:01:06 +00:00
|
|
|
|
"https://hub-mirror.c.163.com",
|
|
|
|
|
"https://mirror.baidubce.com"
|
2019-09-20 06:06:04 +00:00
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
```
|
2016-11-17 13:36:22 +00:00
|
|
|
|
|
2019-11-05 15:35:43 +00:00
|
|
|
|
## macOS
|
2017-04-27 10:53:06 +00:00
|
|
|
|
|
2019-09-20 06:06:04 +00:00
|
|
|
|
对于使用 macOS 的用户,在任务栏点击 Docker Desktop 应用图标 -> `Perferences`,在左侧导航菜单选择 `Docker Engine`,在右侧像下边一样编辑 json 文件。修改完成之后,点击 `Apply & Restart` 按钮,Docker 就会重启并应用配置的镜像地址了。
|
|
|
|
|
|
|
|
|
|
```json
|
|
|
|
|
{
|
|
|
|
|
"registry-mirrors": [
|
2020-05-11 11:01:06 +00:00
|
|
|
|
"https://hub-mirror.c.163.com",
|
|
|
|
|
"https://mirror.baidubce.com"
|
2019-09-20 06:06:04 +00:00
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
```
|
2017-04-27 10:53:06 +00:00
|
|
|
|
|
2019-11-05 15:35:43 +00:00
|
|
|
|
## 检查加速器是否生效
|
2016-11-12 19:48:40 +00:00
|
|
|
|
|
2019-05-12 01:44:17 +00:00
|
|
|
|
执行 `$ docker info`,如果从结果中看到了如下内容,说明配置成功。
|
2016-11-12 19:48:40 +00:00
|
|
|
|
|
|
|
|
|
```bash
|
2017-08-21 07:02:49 +00:00
|
|
|
|
Registry Mirrors:
|
2020-04-04 14:54:32 +00:00
|
|
|
|
https://hub-mirror.c.163.com/
|
2019-05-12 01:44:17 +00:00
|
|
|
|
```
|
|
|
|
|
|
2020-04-07 01:18:40 +00:00
|
|
|
|
## `k8s.gcr.io` 镜像
|
|
|
|
|
|
|
|
|
|
可以登录 [阿里云 容器镜像服务](https://www.aliyun.com/product/acr?source=5176.11533457&userCode=8lx5zmtu&type=copy) **镜像中心** -> **镜像搜索** 查找。
|
|
|
|
|
|
|
|
|
|
例如 `k8s.gcr.io/coredns:1.6.7` 镜像可以用 `registry.cn-hangzhou.aliyuncs.com/google_containers/coredns:1.6.7` 代替。
|
|
|
|
|
|
|
|
|
|
一般情况下有如下对应关系:
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
# $ docker pull k8s.gcr.io/xxx
|
|
|
|
|
|
|
|
|
|
$ docker pull registry.cn-hangzhou.aliyuncs.com/google_containers/xxx
|
|
|
|
|
```
|
|
|
|
|
|
2020-04-04 14:54:32 +00:00
|
|
|
|
## 云服务商
|
2019-05-12 01:44:17 +00:00
|
|
|
|
|
2020-04-04 14:54:32 +00:00
|
|
|
|
某些云服务商提供了仅供内部访问的镜像服务,当您的 Docker 运行在云平台时可以选择它们。
|
2019-05-12 01:44:17 +00:00
|
|
|
|
|
2020-04-04 14:54:32 +00:00
|
|
|
|
* [Azure 中国镜像 `https://dockerhub.azk8s.cn`](https://github.com/Azure/container-service-for-azure-china/blob/master/aks/README.md#22-container-registry-proxy)
|
2019-05-12 01:44:17 +00:00
|
|
|
|
|
2020-04-04 14:54:32 +00:00
|
|
|
|
* [腾讯云 `https://mirror.ccs.tencentyun.com`](https://cloud.tencent.com/redirect.php?redirect=10058&cps_key=3a5255852d5db99dcd5da4c72f05df61)
|