4
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

dockerとproxyの問題

Last updated at Posted at 2018-04-26

社内ネットワークなどProxyが設定されている場合、
dockerを使ってwgetしたりyumを使おうとすると
ファイルを取得できずエラーになります。

まずはIEの設定などにproxyを設定していると思うので、
そちらを参照するなどしてproxyサーバーのIPとPortを確認します。

例えばProxyサーバーのIPが192.168.100.1、Portが30020だとします。

buildする際は--build-argを使用します。

docker build --build-arg http_proxy=http://192.168.100.1:30020/ .

runする際は--envを使用します。
今回はimageのIDがqwert12345の場合とします。

docker run --env http_proxy=http://192.168.100.1:30020/ -it qwert12345 bash

ちなみにwindowsの環境変数でHTTP_PROXYを下記のように設定している場合は
変数で指定することもできます。

HTTP_PROXY : http://192.168.100.1:30020/ 
docker build --build-arg http_proxy=${HTTP_PROXY} .
docker run --env http_proxy=${HTTP_PROXY} -it qwert12345 bash

私の環境はwindows7とdocker tool boxでしたが、
--build-argと--envで指定するhttp_proxy部分は
HTTP_PROXYと大文字では動作しませんでした。

環境によっては逆に小文字だと動作しない可能性もあるので
上記で動かない場合はhttp_proxyをHTTP_PROXYにしてみてください。

4
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?