美文网首页
Containerd镜像加速

Containerd镜像加速

作者: 奶茶不要奶不要茶 | 来源:发表于2023-03-13 09:09 被阅读0次

    编辑Containerd的配置文件 /etc/containerd/config.toml, 在 [plugins."io.containerd.grpc.v1.cri".registry] 下方添加 config_path

        [plugins."io.containerd.grpc.v1.cri".registry]
          config_path = "/etc/containerd/certs.d"
    

    创建目录 /etc/containerd/certs.d/docker.io,在其中添加包含下面内容的 hosts.toml 文件

    server = "https://docker.io" # 源镜像地址
    [host."https://xxxxxx.mirror.aliyuncs.com"] # 镜像加速地址
    

    重启 Containerd

    systemctl restart containerd
    

    案例

    $ tree /etc/containerd/certs.d
    /etc/containerd/certs.d/
    ├── docker.io
    │   └── hosts.toml
    └── quay.io
        └── hosts.toml
    
    $ cat /etc/containerd/certs.d/docker.io/hosts.toml
    server = "https://docker.io"
    [host."https://prh13f1a.mirror.aliyuncs.com"]
    
    $ cat /etc/containerd/certs.d/quay.io/hosts.toml
    server = "https://quay.io"
    [host."https://quay.mirrors.ustc.edu.cn"]
    

    参考链接
    registry.md
    config.md#registry-configuration

    相关文章

      网友评论

          本文标题:Containerd镜像加速

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