如何为Docker build设置http_proxy

我的Linux机器在公司里是通过http proxy连接Internet的。通过export http_proxy=http://proxyhost:proxyport来上网。


但执行Docker build时,执行过程中提示连接不到网络。后来找到三种办法。

      1. 在Docker file 里面写上,ENV http_proxy http://proxyhost:proxyport。

           但这样的话,就把http_proxy写死到dockerfile中了。使用这个image的人就麻烦了,他要通过这样的方式来run。    

      docker run --env http_proxy=http://10.128.46.150:3128/ my/http-client

2. 对第一种方法改进。在在Docker file 里面先写上,ENV http_proxy http://proxyhost:proxyport。最后在把
    ENV http_proxy “”
3. Docker build时,指定--build-arg flag。
$ docker build --build-arg HTTP_PROXY=http://10.20.30.2:1234 .


你可能感兴趣的:(技术)