美文网首页
docker拉取自建http镜像仓库

docker拉取自建http镜像仓库

作者: PENG先森_晓宇 | 来源:发表于2020-10-07 18:36 被阅读0次

    背景

    自己搭建的镜像仓库,类似于harbor等,我们通常需要把我们的镜像pull push到我们的镜像仓库,而我们的镜像仓库的url是http时,docker默认是不支持直接拉取http的仓库的。

    配置

    我们只需要在/etc/docker/daemon.json文件中配 置insecure-registries段即可,如下,是一个数组可以配置多个镜像仓库。

    {
     "insecure-registries": [
        "harbor.maigengduo.com"
     ]
    }
    

    生效

    配置完文件之后,重启即可

    systemctl restart docker
    

    重启之后我们就可以拉取http://harbor.maigengduo.com内的镜像了,例如

    docker pull harbor.maigengduo.com/phperall/php:latest
    

    相关文章

      网友评论

          本文标题:docker拉取自建http镜像仓库

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