From 856c92ccf6177a46a705da6b7320ce927fd65456 Mon Sep 17 00:00:00 2001 From: hisham waleed karam Date: Mon, 22 Oct 2018 00:10:09 +0200 Subject: [PATCH] update Build Arguments section in build.sh --- build.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 51ba538b..6b82bdcc 100755 --- a/build.sh +++ b/build.sh @@ -11,12 +11,13 @@ echo "Building GeoServer using the specified version " sed -i "s/${OLD_MAJOR}.${OLD_MINOR}.${OLD_BUGFIX}/${MAJOR}.${MINOR}.${BUGFIX}/g" Dockerfile docker build --build-arg GS_VERSION=${MAJOR}.${MINOR}.${BUGFIX} -t kartoza/geoserver:${MAJOR}.${MINOR}.${BUGFIX} . -# Build Arguments - The change the defaults when building the image +# Build Arguments - To change the defaults when building the image #need to specify a different value. ``` --build-arg ORACLE_JDK=true --build-arg COMMUNITY_MODULES=true --build-arg TOMCAT_EXTRAS=false +--build-arg WAR_URL=http://downloads.sourceforge.net/project/geoserver/GeoServer//geoserver--war.zip ```