use current geoserver stable release v2.24.1

pull/37/head
Andre Henn 2023-12-11 10:36:31 +01:00
parent 1b9b033dee
commit 7bd08f9734
No known key found for this signature in database
GPG Key ID: 776670F973DDECAA
2 changed files with 5 additions and 5 deletions

View File

@ -52,7 +52,7 @@ RUN apt purge -y \
FROM tomcat as download FROM tomcat as download
ARG GS_VERSION=2.24.0 ARG GS_VERSION=2.24.1
ARG GS_BUILD=release ARG GS_BUILD=release
ARG WAR_ZIP_URL=https://downloads.sourceforge.net/project/geoserver/GeoServer/${GS_VERSION}/geoserver-${GS_VERSION}-war.zip ARG WAR_ZIP_URL=https://downloads.sourceforge.net/project/geoserver/GeoServer/${GS_VERSION}/geoserver-${GS_VERSION}-war.zip
ENV GEOSERVER_VERSION=$GS_VERSION ENV GEOSERVER_VERSION=$GS_VERSION
@ -68,7 +68,7 @@ RUN echo "Downloading GeoServer ${GS_VERSION} ${GS_BUILD}" \
FROM tomcat as install FROM tomcat as install
ARG GS_VERSION=2.24.0 ARG GS_VERSION=2.24.1
ARG GS_BUILD=release ARG GS_BUILD=release
ARG STABLE_PLUGIN_URL=https://downloads.sourceforge.net/project/geoserver/GeoServer/${GS_VERSION}/extensions ARG STABLE_PLUGIN_URL=https://downloads.sourceforge.net/project/geoserver/GeoServer/${GS_VERSION}/extensions
ARG COMMUNITY_PLUGIN_URL='' ARG COMMUNITY_PLUGIN_URL=''

View File

@ -4,7 +4,7 @@ services:
build: build:
context: . context: .
args: args:
- GEOSERVER_VERSION=2.24.0 - GEOSERVER_VERSION=2.24.1
- CORS_ENABLED=true - CORS_ENABLED=true
- CORS_ALLOWED_METHODS=GET,POST,PUT,HEAD,OPTIONS - CORS_ALLOWED_METHODS=GET,POST,PUT,HEAD,OPTIONS
ports: ports:
@ -26,9 +26,9 @@ services:
postgis: postgis:
image: postgis/postgis:16-3.4-alpine image: postgis/postgis:16-3.4-alpine
ports: ports:
- 5555:5432 - "5555:5432"
environment: environment:
POSTGRES_USER: geoserver POSTGRES_USER: geoserver
POSTGRES_PASSWORD: geoserver POSTGRES_PASSWORD: geoserver
volumes: volumes:
- ./postgis/postgresql_data:/var/lib/postgresql/data:Z - ./postgis/postgresql_data:/var/lib/postgresql/data:Z