mirror of https://github.com/docker/cli.git
Merge pull request #3074 from thaJeztah/all_proxy
Add support for ALL_PROXY
This commit is contained in:
commit
25eee83d6b
|
@ -277,6 +277,8 @@ func TestCreateContainerWithProxyConfig(t *testing.T) {
|
|||
"no_proxy=noProxy",
|
||||
"FTP_PROXY=ftpProxy",
|
||||
"ftp_proxy=ftpProxy",
|
||||
"ALL_PROXY=allProxy",
|
||||
"all_proxy=allProxy",
|
||||
}
|
||||
sort.Strings(expected)
|
||||
|
||||
|
@ -299,6 +301,7 @@ func TestCreateContainerWithProxyConfig(t *testing.T) {
|
|||
HTTPSProxy: "httpsProxy",
|
||||
NoProxy: "noProxy",
|
||||
FTPProxy: "ftpProxy",
|
||||
AllProxy: "allProxy",
|
||||
},
|
||||
},
|
||||
})
|
||||
|
|
|
@ -60,6 +60,7 @@ type ProxyConfig struct {
|
|||
HTTPSProxy string `json:"httpsProxy,omitempty"`
|
||||
NoProxy string `json:"noProxy,omitempty"`
|
||||
FTPProxy string `json:"ftpProxy,omitempty"`
|
||||
AllProxy string `json:"allProxy,omitempty"`
|
||||
}
|
||||
|
||||
// KubernetesConfig contains Kubernetes orchestrator settings
|
||||
|
@ -244,6 +245,7 @@ func (configFile *ConfigFile) ParseProxyConfig(host string, runOpts map[string]*
|
|||
"HTTPS_PROXY": &config.HTTPSProxy,
|
||||
"NO_PROXY": &config.NoProxy,
|
||||
"FTP_PROXY": &config.FTPProxy,
|
||||
"ALL_PROXY": &config.AllProxy,
|
||||
}
|
||||
m := runOpts
|
||||
if m == nil {
|
||||
|
|
|
@ -32,12 +32,14 @@ func TestProxyConfig(t *testing.T) {
|
|||
httpsProxy = "https://user:password@proxy.mycorp.example.com:3129"
|
||||
ftpProxy = "http://ftpproxy.mycorp.example.com:21"
|
||||
noProxy = "*.intra.mycorp.example.com"
|
||||
allProxy = "socks://example.com:1234"
|
||||
|
||||
defaultProxyConfig = ProxyConfig{
|
||||
HTTPProxy: httpProxy,
|
||||
HTTPSProxy: httpsProxy,
|
||||
FTPProxy: ftpProxy,
|
||||
NoProxy: noProxy,
|
||||
AllProxy: allProxy,
|
||||
}
|
||||
)
|
||||
|
||||
|
@ -57,6 +59,8 @@ func TestProxyConfig(t *testing.T) {
|
|||
"ftp_proxy": &ftpProxy,
|
||||
"NO_PROXY": &noProxy,
|
||||
"no_proxy": &noProxy,
|
||||
"ALL_PROXY": &allProxy,
|
||||
"all_proxy": &allProxy,
|
||||
}
|
||||
assert.Check(t, is.DeepEqual(expected, proxyConfig))
|
||||
}
|
||||
|
|
|
@ -1973,6 +1973,8 @@ corresponding `ARG` instruction in the Dockerfile.
|
|||
- `ftp_proxy`
|
||||
- `NO_PROXY`
|
||||
- `no_proxy`
|
||||
- `ALL_PROXY`
|
||||
- `all_proxy`
|
||||
|
||||
To use these, pass them on the command line using the `--build-arg` flag, for
|
||||
example:
|
||||
|
|
|
@ -214,6 +214,7 @@ be set for each environment:
|
|||
| `httpsProxy` | Default value of `HTTPS_PROXY` and `https_proxy` for containers, and as `--build-arg` on `docker build` |
|
||||
| `ftpProxy` | Default value of `FTP_PROXY` and `ftp_proxy` for containers, and as `--build-arg` on `docker build` |
|
||||
| `noProxy` | Default value of `NO_PROXY` and `no_proxy` for containers, and as `--build-arg` on `docker build` |
|
||||
| `allProxy` | Default value of `ALL_PROXY` and `all_proxy` for containers, and as `--build-arg` on `docker build` |
|
||||
|
||||
These settings are used to configure proxy settings for containers only, and not
|
||||
used as proxy settings for the `docker` CLI or the `dockerd` daemon. Refer to the
|
||||
|
@ -295,7 +296,8 @@ various fields:
|
|||
"httpProxy": "http://user:pass@example.com:3128",
|
||||
"httpsProxy": "https://my-proxy.example.com:3129",
|
||||
"noProxy": "intra.mycorp.example.com",
|
||||
"ftpProxy": "http://user:pass@example.com:3128"
|
||||
"ftpProxy": "http://user:pass@example.com:3128",
|
||||
"allProxy": "socks://example.com:1234"
|
||||
},
|
||||
"https://manager1.mycorp.example.com:2377": {
|
||||
"httpProxy": "http://user:pass@example.com:3128",
|
||||
|
|
|
@ -437,6 +437,8 @@ A Dockerfile is similar to a Makefile.
|
|||
* `ftp_proxy`
|
||||
* `NO_PROXY`
|
||||
* `no_proxy`
|
||||
* `ALL_PROXY`
|
||||
* `all_proxy`
|
||||
|
||||
To use these, pass them on the command line using `--build-arg` flag, for
|
||||
example:
|
||||
|
|
Loading…
Reference in New Issue