mirror of https://github.com/docker/docs.git
config: fix example for proxies in daemon.json
commit073cd2fe24
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>
This commit is contained in:
parent
1ecad399de
commit
ce4523fcd5
|
@ -42,9 +42,11 @@ behavior for the daemon in the [`daemon.json` file](./index.md#configure-the-doc
|
|||
|
||||
```json
|
||||
{
|
||||
"http-proxy": "http://proxy.example.com:3128",
|
||||
"https-proxy": "https://proxy.example.com:3129",
|
||||
"no-proxy": "*.test.example.com,.example.org,127.0.0.0/8"
|
||||
"proxies": {
|
||||
"http-proxy": "http://proxy.example.com:3128",
|
||||
"https-proxy": "https://proxy.example.com:3129",
|
||||
"no-proxy": "*.test.example.com,.example.org,127.0.0.0/8"
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
|
|
Loading…
Reference in New Issue