docker配置网络代理拉取镜像
# containerd和docker容器配置局域网代理拉取镜像
#containerd执行
vim /usr/lib/systemd/system/containerd.service
#docker执行
vim /usr/lib/systemd/system/docker.service
#添加下面配置
[Service]
Environment="HTTP_PROXY=http://192.168.0.101:10809"
Environment="HTTPS_PROXY=http://192.168.0.101:10809"
# 重启服务
systemctl daemon-reload
# containerd执行
systemctl restart containerd
#docker执行
systemctl restart docker
1
2
3
4
5
6
7
8
9
10
11
12
13
14
2
3
4
5
6
7
8
9
10
11
12
13
14
# 公网服务器拉取容器配置网络代理
cat /etc/docker/daemon.json
{
"registry-mirrors": [
"https://registry.docker-cn.com",
"https://docker.mirrors.ustc.edu.cn",
"https://hub-mirror.c.163.com",
"https://mirror.baidubce.com",
"https://ccr.ccs.tencentyun.com"
]
}
# 重启服务
systemctl daemon-reload
#docker执行
systemctl restart docker
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 使用第三方网络服务拉取镜像
# 添加同步镜像
https://docker.aityp.com/manage/add
添加完镜像,同步完成后搜索镜像,选择同步下来的镜像在服务器下载,并修改名称和tag号
上次更新: 2024/11/15, 16:53:03