美文网首页
docker更换国内镜像源加速拉取镜像

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

作者: 行走的记忆 | 来源:发表于2020-10-10 13:11 被阅读0次

    编辑文件

    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更换国内镜像源加速拉取镜像

          本文链接:https://www.haomeiwen.com/subject/gcodpktx.html