mirror of https://github.com/docker/cli.git
Add docs for proxy configuration in config.json
Setting proxy-configuration in config.json was added in commit35f1e301b5
(docker 17.07), but never found its way to the documentation. This patch adds some basic information about the feature. Signed-off-by: Sebastiaan van Stijn <github@gone.nl> (cherry picked from commite70d6bcb8a
) Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
e22f088abb
commit
3f39587e3b
|
@ -221,6 +221,23 @@ running `docker stack` management commands. Valid values are `"swarm"`,
|
||||||
`"kubernetes"`, and `"all"`. This property can be overridden with the
|
`"kubernetes"`, and `"all"`. This property can be overridden with the
|
||||||
`DOCKER_STACK_ORCHESTRATOR` environment variable, or the `--orchestrator` flag.
|
`DOCKER_STACK_ORCHESTRATOR` environment variable, or the `--orchestrator` flag.
|
||||||
|
|
||||||
|
The property `proxies` specifies proxy environment variables to be automatically
|
||||||
|
set on containers, and set as `--build-arg` on containers used during `docker build`.
|
||||||
|
A `"default"` set of proxies can be configured, and will be used for any docker
|
||||||
|
daemon that the client connects to, or a configuration per host (docker daemon),
|
||||||
|
for example, "https://docker-daemon1.example.com". The following properties can
|
||||||
|
be set for each environment:
|
||||||
|
|
||||||
|
* `httpProxy` (sets the value of `HTTP_PROXY` and `http_proxy`)
|
||||||
|
* `httpsProxy` (sets the value of `HTTPS_PROXY` and `https_proxy`)
|
||||||
|
* `ftpProxy` (sets the value of `FTP_PROXY` and `ftp_proxy`)
|
||||||
|
* `noProxy` (sets the value of `NO_PROXY` and `no_proxy`)
|
||||||
|
|
||||||
|
> **Warning**: Proxy settings may contain sensitive information (for example,
|
||||||
|
> if the proxy requires authentication). Environment variables are stored as
|
||||||
|
> plain text in the container's configuration, and as such can be inspected
|
||||||
|
> through the remote API or committed to an image when using `docker commit`.
|
||||||
|
|
||||||
Once attached to a container, users detach from it and leave it running using
|
Once attached to a container, users detach from it and leave it running using
|
||||||
the using `CTRL-p CTRL-q` key sequence. This detach key sequence is customizable
|
the using `CTRL-p CTRL-q` key sequence. This detach key sequence is customizable
|
||||||
using the `detachKeys` property. Specify a `<sequence>` value for the
|
using the `detachKeys` property. Specify a `<sequence>` value for the
|
||||||
|
@ -275,6 +292,18 @@ Following is a sample `config.json` file:
|
||||||
"anotheroption": "anothervalue",
|
"anotheroption": "anothervalue",
|
||||||
"athirdoption": "athirdvalue"
|
"athirdoption": "athirdvalue"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"proxies": {
|
||||||
|
"default": {
|
||||||
|
"httpProxy": "http://user:pass@example.com:3128",
|
||||||
|
"httpsProxy": "http://user:pass@example.com:3128",
|
||||||
|
"noProxy": "http://user:pass@example.com:3128",
|
||||||
|
"ftpProxy": "http://user:pass@example.com:3128"
|
||||||
|
},
|
||||||
|
"https://manager1.mycorp.example.com:2377": {
|
||||||
|
"httpProxy": "http://user:pass@example.com:3128",
|
||||||
|
"httpsProxy": "http://user:pass@example.com:3128"
|
||||||
|
},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
{% endraw %}
|
{% endraw %}
|
||||||
|
|
Loading…
Reference in New Issue