docker build 設定代理
阿新 • • 發佈:2018-11-21
docker build 設定代理
(金慶的專欄 2018.9)
Dockerfile.frontendapi 中有 RUN go get
, 需要設定代理。
docker build . -f Dockerfile.frontendapi \ -t registry.cn-shanghai.aliyuncs.com/jinq0123/openmatch-frontendapi:dev \ --network host \ --build-arg HTTP_PROXY=http://127.0.0.1:1080 \ --build-arg HTTPS_PROXY=http://127.0.0.1:1080
因為 docker build 會在一個容器內執行,所以須指定 network 為 host, 使之可以連線本機的代理。
參考:
https://stackoverflow.com/questions/22179301/how-do-you-run-apt-get-in-a-dockerfile-behind-a-proxy
[[email protected] java]# docker build --build-arg https_proxy=$HTTP_PROXY --build-arg http_proxy=$HTTP_PROXY --build-arg HTTP_PROXY=$HTTP_PROXY --build-arg HTTPS_PROXY=$HTTP_PROXY --build-arg NO_PROXY=$NO_PROXY --build-arg no_proxy=$NO_PROXY -t java .