Add support for ALL_PROXY
Support for ALL_PROXY as default build-arg was added recently in buildkit and the classic builder. This patch adds the `ALL_PROXY` environment variable to the list of configurable proxy variables, and updates the documentation. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
@ -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",
|
||||
},
|
||||
},
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user