美文网首页
docker下载镜像加速

docker下载镜像加速

作者: 橡皮24 | 来源:发表于2018-11-23 17:42 被阅读15次

    1 简介

    由于国内访问直接访问docker hub网速比较慢,拉取镜像的时间就会比较长。一般我们会使用镜像加速或者直接从国内的一些平台镜像仓库上拉取。或者使用加速器

    2 使用加速器

    使用DaoCloud的加速器

    1、先在DaoCloud上注册账号

    地址为:http://www.daocloud.io/

    2、点击加速器


    3、进入加速器向下拉页面选择相应的系统


    4、直接执行相应系统的命令(我的是Linux)

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

    5、查看结果

    # cat /etc/docker/daemon.json
    
    {"registry-mirrors": ["http://f1361db2.m.daocloud.io"]}
    

    6、重启docker

    # systemctl restart docker
    

    相关文章

      网友评论

          本文标题:docker下载镜像加速

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