美文网首页
docker镜像加速

docker镜像加速

作者: 等哈哈咯 | 来源:发表于2018-03-27 14:54 被阅读0次

    docker的安装很简单了,就yum install docker即可

    但是,当你docker pull contos时,会报错:

    error pulling image configuration: Get https://dseasb33srnrn.cloudfront.net/registry-v2/docker/registry/v2/blobs/sha256/2d/2d194b392dd16955847a14f969b2dd319251471ffa6356be6d8f16c5bf53db9b/data?Expires=1522098752&Signature=Zd~LlyIem1QEEc0YqpG3-xEdlMR7z4vEwYV97SAdG7Rqm7wKLSoHxkISPtHhIUCDFeWo2OztjzTlgsahkj1Bv1P6lfHg0K6Z~aQEBj5ll4YUHgRPe4B-RHoB~eJuLzDCiRun3VuL1byGk7OZrBIIR-96IBRpAvN9QxESmkpHUdk_&Key-Pair-Id=APKAJECH5M7VWIS5YZ6Q: net/http: TLS handshake timeout
    

    原因很简单了,就是国内获取镜像失败。

    网上的docker镜像加速都试了个遍,都不靠谱。
    最后选择daocloud的加速,才好用。镜像加速配置文档:https://www.daocloud.io/mirror#accelerator-doc
    linux执行以下命令:

    curl -sSL https://get.daocloud.io/daotools/set_mirror.sh | sh -s http://0d39ce35.m.daocloud.io
    

    在/etc/docker/daemon.json中配置上加速源。
    然后重启即可,但有个小坑,重启会失败:

    restart docker.service
    Job for docker.service failed because the control process exited with error code. See "systemctl status docker.service" and "journalctl -xe" for details.
    
    vim /etc/docker/daemon.json后发现,内容是
    {"registry-mirrors": ["http://0d39ce35.m.daocloud.io"],}
    

    把倒数第二个字符,也就是逗号去掉,重启成功。daocloud的官方文档,小坑。

    也可以在pull xx命令之后接上参数registry-mirrors=加速源

    相关文章

      网友评论

          本文标题:docker镜像加速

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