为所有docker container设置代理:修订间差异
来自三线的随记
(创建页面,内容为“TODO <br /> === Method 1 === ~/.docker/config.json 添加配置 "proxies": { "default": { "httpProxy": "<nowiki>http://127.0.0.1:3001</nowiki>",…”) |
无编辑摘要 |
||
第1行: | 第1行: | ||
TODO | TODO | ||
<br /> | <br />https://docs.docker.com/network/proxy/ | ||
=== Method 1 === | ===Method 1=== | ||
~/.docker/config.json 添加配置 | ~/.docker/config.json 添加配置 | ||
"proxies": { | "proxies": { | ||
第12行: | 第12行: | ||
} | } | ||
} | } | ||
[[分类:Docker]] | [[分类:Docker]] | ||
[[分类:Linux]] | |||
[[分类:Linux]] | |||
{{DEFAULTSORT:wei}} | {{DEFAULTSORT:wei}} |
2020年9月27日 (日) 23:57的版本
TODO
https://docs.docker.com/network/proxy/
Method 1
~/.docker/config.json 添加配置
"proxies": { "default": { "httpProxy": "http://127.0.0.1:3001", "httpsProxy": "http://127.0.0.1:3001", "noProxy": "*.test.example.com,.example2.com" } }