banner
NEWS LETTER

Docker配置代理

Scroll down

本文作者:丁辉

Docker配置代理

Docker服务代理配置

此方法适用于 docker pull 镜像配置代理

创建 Systemd 代理文件

1
2
mkdir -p /etc/systemd/system/docker.service.d
touch /etc/systemd/system/docker.service.d/proxy.conf

内容如下

1
2
3
4
[Service]
Environment="HTTP_PROXY=http://127.0.0.1:15777"
Environment="HTTPS_PROXY=http://127.0.0.1:15777"
Environment="NO_PROXY=localhost,127.0.0.1,example.com"
  • HTTP_PROXY=:设置HTTP代理服务器
  • HTTPS_PROXY=:设置HTTPS代理服务器
  • NO_PROXY="":设置不使用代理服务器的域名或IP地址列表

http://127.0.0.1:15777 换成可用的代理即可

重启生效

1
2
systemctl daemon-reload
systemctl restart docker

容器内部代理

在容器运行阶段,如果需要代理上网,则需要配置 ~/.docker/config.json

创建 Config.json 代理文件

1
2
mkdir ~/.docker/
vi ~/.docker/config.json

内容如下

1
2
3
4
5
6
7
8
9
10
11
{
"proxies":
{
"default":
{
"httpProxy": "http://192.168.1.100:15777",
"httpsProxy": "http://192.168.1.100:15777",
"noProxy": "localhost,127.0.0.1,example.com"
}
}
}

此外, 也可以直接在容器运行时通过注入 http_proxy 等环境变量进行代理

重启生效

1
2
systemctl daemon-reload
systemctl restart docker

DockerBuild代理

1
2
3
4
5
docker build . \
--build-arg "HTTP_PROXY=http://192.168.1.100:15777" \
--build-arg "HTTPS_PROXY=http://192.168.1.100:15777" \
--build-arg "NO_PROXY=localhost,127.0.0.1,example.com" \
-t your/image:tag

I'm so cute. Please give me money.

其他文章
cover
Docker配置2375端口
  • 70/01/01
  • 00:00
  • Kubernetes-Docker
cover
Docker配置守护进程
  • 70/01/01
  • 00:00
  • Kubernetes-Docker
目录导航 置顶
  1. 1. Docker配置代理
    1. 1.1. Docker服务代理配置
    2. 1.2. 容器内部代理
    3. 1.3. DockerBuild代理
请输入关键词进行搜索