From 7bd08f9734f379259cd754e974f0a193d60ff83f Mon Sep 17 00:00:00 2001 From: Andre Henn Date: Mon, 11 Dec 2023 10:36:31 +0100 Subject: [PATCH] use current geoserver stable release v2.24.1 --- Dockerfile | 4 ++-- docker-compose-demo.yml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8c8e21a..4bd8921 100644 --- a/Dockerfile +++ b/Dockerfile @@ -52,7 +52,7 @@ RUN apt purge -y \ FROM tomcat as download -ARG GS_VERSION=2.24.0 +ARG GS_VERSION=2.24.1 ARG GS_BUILD=release ARG WAR_ZIP_URL=https://downloads.sourceforge.net/project/geoserver/GeoServer/${GS_VERSION}/geoserver-${GS_VERSION}-war.zip ENV GEOSERVER_VERSION=$GS_VERSION @@ -68,7 +68,7 @@ RUN echo "Downloading GeoServer ${GS_VERSION} ${GS_BUILD}" \ FROM tomcat as install -ARG GS_VERSION=2.24.0 +ARG GS_VERSION=2.24.1 ARG GS_BUILD=release ARG STABLE_PLUGIN_URL=https://downloads.sourceforge.net/project/geoserver/GeoServer/${GS_VERSION}/extensions ARG COMMUNITY_PLUGIN_URL='' diff --git a/docker-compose-demo.yml b/docker-compose-demo.yml index c3556ba..72a2492 100644 --- a/docker-compose-demo.yml +++ b/docker-compose-demo.yml @@ -4,7 +4,7 @@ services: build: context: . args: - - GEOSERVER_VERSION=2.24.0 + - GEOSERVER_VERSION=2.24.1 - CORS_ENABLED=true - CORS_ALLOWED_METHODS=GET,POST,PUT,HEAD,OPTIONS ports: @@ -26,9 +26,9 @@ services: postgis: image: postgis/postgis:16-3.4-alpine ports: - - 5555:5432 + - "5555:5432" environment: POSTGRES_USER: geoserver POSTGRES_PASSWORD: geoserver volumes: - - ./postgis/postgresql_data:/var/lib/postgresql/data:Z \ No newline at end of file + - ./postgis/postgresql_data:/var/lib/postgresql/data:Z