mirror of https://github.com/docker/cli.git
docs: fix example for proxies in daemon.json
commitc846428cb6
added proxies to the example `daemon.json`, based on the implementation that was added in427c7cc5f8
. However, a follow-up pull request changed the proxy-configuration in`daemon.json` to nest the configuration in a "proxies" struct, and the documentation was not updated accordingly; see:101dafd049
This patch fixes the example. Signed-off-by: Sebastiaan van Stijn <github@gone.nl> (cherry picked from commit2713d0bcde
) Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
aa40216965
commit
298e67926e
|
@ -1252,9 +1252,11 @@ This is a full example of the allowed configuration options on Linux:
|
||||||
"fixed-cidr-v6": "",
|
"fixed-cidr-v6": "",
|
||||||
"group": "",
|
"group": "",
|
||||||
"hosts": [],
|
"hosts": [],
|
||||||
"http-proxy": "http://proxy.example.com:80",
|
"proxies": {
|
||||||
"https-proxy": "https://proxy.example.com:443",
|
"http-proxy": "http://proxy.example.com:80",
|
||||||
"no-proxy": "*.test.example.com,.example.org",
|
"https-proxy": "https://proxy.example.com:443",
|
||||||
|
"no-proxy": "*.test.example.com,.example.org",
|
||||||
|
},
|
||||||
"icc": false,
|
"icc": false,
|
||||||
"init": false,
|
"init": false,
|
||||||
"init-path": "/usr/libexec/docker-init",
|
"init-path": "/usr/libexec/docker-init",
|
||||||
|
|
Loading…
Reference in New Issue