docker 默认的 image registry 和 kubernetes 中使用的镜像库 google registry 都需要翻墙才能拉取,通过以下方法设置 docker 代理。
- 创建服务的代理配置文件
sudo -i
mkdir /etc/systemd/system/docker.service.d
nano /etc/systemd/system/docker.service.d/http-proxy.conf
- 在配置文件中添加代理配置内容
[Service]
Environment="HTTP_PROXY=http://localhost:64000/" "HTTPS_PROXY=http://localhost:64000/" "NO_PROXY=localhost,127.0.0.1,docker-registry.somecorporation.com"
- 重启服务
sudo systemctl daemon-reload
sudo systemctl restart docker
- 测试拉取,如果拉取成功,说明配置成功
docker pull k8s.gcr.io/kube-apiserver:v1.12.2