docker更换国内镜像源加速拉取镜像

编辑文件

vi /etc/docker/daemon.json   

没有该文件则自己创建,添加如下内容

{
"registry-mirrors": ["http://hub-mirror.c.163.com"]
}

如果有此文件且已有内容,在{}中添加一行,注意这是json格式的文件。如下例

{
  "exec-opts": ["native.cgroupdriver=systemd"],
  "log-driver": "json-file",
  "log-opts": {
    "max-size": "100m"
  },
  "storage-driver": "overlay2",
  "storage-opts": [
    "overlay2.override_kernel_check=true"
  ],
  "registry-mirrors": ["http://hub-mirror.c.163.com"]
}

重启服务

systemctl restart docker.service

可以多配几个国内镜像源

  "registry-mirrors": ["https://docker.mirrors.ustc.edu.cn/","http://hub-mirror.c.163.com","http://f1361db2.m.daocloud.io"]

你可能感兴趣的:(docker更换国内镜像源加速拉取镜像)