Docker 通过代理拉取镜像

编辑 /etc/docker/daemon.json

sudo vim /etc/docker/daemon.json

写入

{
 "proxies": {
   "default": {
     "httpProxy": "http://:",
     "httpsProxy": "http://",
     "noProxy": ""
   }
 }
}

示例

{
 "proxies": {
   "default": {
     "httpProxy": "http://proxy.example.com:3128",
     "httpsProxy": "https://proxy.example.com:3129",
     "noProxy": "*.test.example.com,.example.org,127.0.0.0/8"
   }
 }
}

参考

  1. Configure the Docker client