0
0

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 3 years have passed since last update.

Docker Desktop 裏技プロキシ設定

Last updated at Posted at 2020-03-31

###社内開発だとプロキシ環境下でDocker Desktopを利用することも多いと思います。

プロキシ設定で手こずったので、裏技かどうかわかりませんが
色んなところで応用が利くんじゃないかと思い、メモ代わりに投稿します。

http://host.docker.internal:3128
```

![image.png](https://qiita-image-store.s3.ap-northeast-1.amazonaws.com/0/531595/5698d4d1-7a23-e6f9-0215-1142630582bf.png)


設定画面とは別に config.json ファイルを編集する。

「C:¥Users¥ユーザー名¥.docker¥config.json」

.dockerフォルダが生成されていない、または config.jsonファイルが生成されていない場合は自分で作成すればいい。

編集内容

```json:config.json
{
    "proxies":
    {
        "default":
        {
            "httpProxy":"http://host.docker.internal:3128",
            "httpsProxy":"http://host.docker.internal:3128",
            "noProxy":"127.0.0.*"
        }
    }
}
```

編集後は、Docker Desktopを再起動してプロキシの設定を反映。(完了)


CNTLMと併用して利用しています。

CNTLMのダウンロード先は[こちら](https://sourceforge.net/projects/cntlm/files/)
CNTLMの設定方法については[こちら](https://qiita.com/takuma-jpn/items/8db6b135f2723a02498b)
CNTLM利用コマンド一覧は[こちら](https://vijiboy.wordpress.com/2018/03/14/configure-cntlm-to-generate-hash-for-your-password-h-and-verify-m/)
0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?