Merge pull request #17374 from thaJeztah/fix_daemon_proxy

This commit is contained in:
Sebastiaan van Stijn 2023-05-19 17:50:05 +02:00 committed by GitHub
commit 0ef535c566
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 3 deletions

View File

@ -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"
}
}
```