首页  >  问答  >  正文

docker build时怎么用http proxy代理?

dockerfile里面

RUN apt-get update && apt-get install

build的时候比较慢,想在build期间用http代理,用prioxy到127.0.0.1:8118,firefox里面代理可用,但docker build就是不行

google出来github issue里提到, docker版本1.10.3,命令试过下面的写法,都不行。

# docker build --build-arg HTTP_PROXY=http://127.0.0.1:8118 .
# docker build --build-arg=[HTTP_PROXY=http://127.0.0.1:8118] .
PHP中文网PHP中文网2758 天前1066

全部回复(3)我来回复

  • PHP中文网

    PHP中文网2017-04-24 09:12:22

    每行RUN是在一个临时container内运行的, 在container内用127.0.0.1连不到主机的proxy

    回复
    0
  • PHPz

    PHPz2017-04-24 09:12:22

    最好连接vpn,vpn这样就是全局代理了,不需要什么参数。

    回复
    0
  • 怪我咯

    怪我咯2017-04-24 09:12:22

    直接设置http_proxy https_proxy 这两个环境变量不行吗?

    回复
    0
  • 取消回复