File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -90,7 +90,16 @@ following command to build the projects and associated Docker images:
9090
9191``` bash
9292mvn clean install -P docker
93- ```
93+ ```
94+
95+ > Note: If you are running behind a corporate proxy and receive the following message building the
96+ > Docker image:
97+ > ` Connect to gcr.io:443 [gcr.io/172.217.212.82] failed: connect timed out ` you must modify the build command
98+ > to add the proxy hosts and ports to be used by the ` jib-maven-plugin ` as shown below:
99+ >
100+ > ``` bash
101+ > mvn clean install -P docker -Dhttps.proxyHost=host -Dhttps.proxyPort=80 -Dhttp.proxyHost=host -Dhttp.proxyPort=80
102+ > ` ` `
94103
95104This will result in the following Docker image being created which contains the configuration and server-side
96105artifacts to be use by all deployments.
You can’t perform that action at this time.
0 commit comments