- 对第一种方法改进。在在Docker file 里面先写上,这种会增加镜像大小
ENV http_proxy http://ip:port
最后在把
ENV http_proxy ""
2、 在build 中加入参数解决:
docker build \
--build-arg http_proxy=http://10.188.61.2:8118 \
--build-arg https_proxy=https://10.188.61.2:8118 \
-f Dockerfile . -t imagename:tag
docker build \
--build-arg http_proxy=http://10.188.61.2:8118 \
--build-arg https_proxy=https://10.188.61.2:8118 \
-f Dockerfile . -t imagename
原文地址:http://blog.51cto.com/devops9527/2324824
时间: 2024-11-01 20:17:24