环境:Ubuntu 20.04.1 LTS
docker服务无法继承系统的代理设置,所以需要单独为docker配置代理,有俩种配置方式:
- 方式一
/lib/systemd/system/docker.service
[Service]
Environment=HTTP_PROXY=http://192.168.3.23:7890
Environment=HTTPS_PROXY=http://192.168.3.23:7890
Environment=NO_PROXY=127.0.0.1,localhost,192.168.0.0/16,172.17.0.0/16,10.175.0.0/16
- 方式二
sudo bash -c 'cat>/etc/systemd/system/docker.service.d/http-proxy.conf<< EOF
[Service]
Environment=HTTP_PROXY=http://192.168.3.23:7890
Environment=HTTPS_PROXY=http://192.168.3.23:7890
Environment=NO_PROXY=127.0.0.1,localhost,192.168.0.0/16,172.17.0.0/16,10.175.0.0/16
EOF'
重新加载配置文件,重启服务
systemctl daemon-reload
systemctl restart docker