-
Notifications
You must be signed in to change notification settings - Fork 426
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Upgrade to v2.21.2
- Loading branch information
Showing
9 changed files
with
23 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ ARG JAVA_HOME=/usr/local/openjdk-11 | |
FROM tomcat:$IMAGE_VERSION | ||
|
||
LABEL maintainer="Tim Sutton<[email protected]>" | ||
ARG GS_VERSION=2.21.1 | ||
ARG GS_VERSION=2.21.2 | ||
ARG WAR_URL=https://downloads.sourceforge.net/project/geoserver/GeoServer/${GS_VERSION}/geoserver-${GS_VERSION}-war.zip | ||
ARG STABLE_PLUGIN_BASE_URL=https://sonik.dl.sourceforge.net | ||
ARG DOWNLOAD_ALL_STABLE_EXTENSIONS=1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -124,7 +124,7 @@ function validate_geo_install() { | |
DATA_PATH=$1 | ||
# Check if geoserver is installed early so that we can fail early on | ||
if [[ $(ls -A ${DATA_PATH}) ]]; then | ||
echo "GeoServer install dir exist proceed with install" | ||
echo -e "\e[32m GeoServer install dir exist proceed with install \033[0m" | ||
else | ||
exit 1 | ||
fi | ||
|
@@ -237,17 +237,7 @@ function broker_xml_config() { | |
|
||
# Helper function to configure s3 bucket | ||
# https://docs.geoserver.org/latest/en/user/community/s3-geotiff/index.html | ||
function s3_config() { | ||
if [[ ! -f "${GEOSERVER_DATA_DIR}"/s3.properties ]]; then | ||
# If it doesn't exists, copy from /settings directory if exists | ||
if [[ -f ${EXTRA_CONFIG_DIR}/s3.properties ]]; then | ||
envsubst < "${EXTRA_CONFIG_DIR}"/s3.properties > "${GEOSERVER_DATA_DIR}"/s3.properties | ||
else | ||
# default value | ||
envsubst < /build_data/s3.properties > "${GEOSERVER_DATA_DIR}"/s3.properties | ||
fi | ||
fi | ||
} | ||
# Remove this based on https://www.mail-archive.com/[email protected]/msg34214.html | ||
|
||
# Helper function to install plugin in proper path | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters