diff options
author | Alexis de Talhouët <adetalhouet89@gmail.com> | 2017-03-06 15:51:13 -0500 |
---|---|---|
committer | Alexis de Talhouët <adetalhouet89@gmail.com> | 2017-03-07 13:00:17 +0000 |
commit | f207b17cde9c2d7d634ef33f8272bcc96ee3c5e0 (patch) | |
tree | 7a31e43aa7859d1dfa96ed1b1aa94067110c3e2d /packages/docker | |
parent | e5cd0e12039cee90a731a3def3d4b04878ad4f89 (diff) |
Remove AT&T HTTP proxy URL from Dockerfile(s)
As this is now open-source code, they shouldn't be any reference to
AT&T proxy settings.
One can still configure the HTTP proxy by providing its proxy address,
and by enabling it in docker-files/settings.xml.
Change-Id: I190dc9e01349a9948b2103fb1791191e89b7399d
Signed-off-by: Alexis de Talhouët <adetalhouet89@gmail.com>
Diffstat (limited to 'packages/docker')
-rw-r--r-- | packages/docker/src/main/docker/docker-files/settings.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/docker/src/main/docker/docker-files/settings.xml b/packages/docker/src/main/docker/docker-files/settings.xml index ff9343b6c6..57c2179bad 100644 --- a/packages/docker/src/main/docker/docker-files/settings.xml +++ b/packages/docker/src/main/docker/docker-files/settings.xml @@ -26,11 +26,11 @@ xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.o <proxies> <proxy> <id>optional</id> - <active>true</active> + <active>false</active> <protocol>http</protocol> - <host>one.proxy.att.com</host> + <host></host> <port>8080</port> - <nonProxyHosts>localhost,127.0.0.1,*.att.com</nonProxyHosts> + <nonProxyHosts>localhost,127.0.0.1</nonProxyHosts> </proxy> </proxies> |