一、Centos7 通过proxy 使用docker pull 镜像
内网环境中通过代理上网是无法通过docker pull拉去镜像的
[root@k8s system]# docker search nginx
Error response from daemon: Get https://index.docker.io/v1/search?q=nginx&n=25: dial tcp: lookup index.docker.io on [::1]:53: read udp [::1]:46152->[::1]:53: read: connection refused
需要给docker配置代理,步骤如下:
1 创建目录
mkdir /etc/systemd/system/docker.service.d
2 编辑文件并加入以下内容
vim /etc/systemd/system/docker.service.d/http-proxy.conf
[Service]
Environment="HTTP_PROXY=http://ip:port" "HTTPS_PROXY=http://ip:port"
3 更新重加载配置&重启Docker服务
systemctl daemon-reload
systemctl restart docker.service