1. 程式人生 > >Centos7 Docker下載映象超時

Centos7 Docker下載映象超時

docker pull tomcat 下載映象超時

官方推薦配置daemon.json檔案是首選項

https://docs.docker.com/config/daemon/#configure-the-docker-daemon

  1. 修改  vim /etc/docker/daemon.json
  2. 該檔案預設是空的{}
  3. 修改為:{"registry-mirrors":["your accelerate address"]}
  4. 重啟docker
  5. systemctl restart docker
  6. 重新pull
  7. docker pull tomcat
  8. 檢視映象
  9. docker images
  10. 國內較快的映象地址
  11. https://registry.docker-cn.com //Docker 官方中國區
  12. http://hub-mirror.c.163.com  //網易
  13. https://docker.mirrors.ustc.edu.cn    //中科大
  14. 以上3個不需要註冊,直接配置就行
  15. https://xxxxxx.mirror.aliyuncs.com  //阿里雲,進入http://dev.aliyun.com登入註冊獲取專屬加速地址
  16. http://xxxxxx.m.daocloud.io     //daocloud映象市場,進入
    https://hub.daocloud.io
    登入註冊獲取專屬加速地址

單個下載直接指定映象地址,該方式僅對當前命令有效

單個下載完之後顯示:

參考文件:http://guide.daocloud.io/dcs/daocloud-9153151.html