Skip to content

Commit f07f241

Browse files
committed
upgrade GeoServer, backport /pull/570
1 parent 69aac0b commit f07f241

File tree

4 files changed

+12
-16
lines changed

4 files changed

+12
-16
lines changed

birdhouse/config/geoserver/default.env

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,22 +9,25 @@
99
# See https://github.com/kartoza/docker-geoserver/issues/232#issuecomment-808754831
1010
# The version is used for representation in CanarieAPI, while the full tag is used to reference the image.
1111
export GEOSERVER_DOCKER="pavics/geoserver"
12-
export GEOSERVER_VERSION="2.25.2"
13-
export GEOSERVER_TAGGED="2.25.2--v2024.06.25-kartoza"
12+
export GEOSERVER_VERSION="2.27.2"
13+
export GEOSERVER_TAGGED="2.27.2--v2025.08.05-kartoza"
1414
export GEOSERVER_IMAGE="${GEOSERVER_DOCKER}:${GEOSERVER_TAGGED}"
1515

1616
export GEOSERVER_ADMIN_USER="admin"
1717

1818
# # Install the stable plugin specified in
19-
# https://github.com/kartoza/docker-geoserver/blob/master/build_data/stable_plugins.txt
19+
# https://github.com/kartoza/docker-geoserver/blob/develop/build_data/stable_plugins.txt
2020
export GEOSERVER_STABLE_EXTENSIONS="grib-plugin,\
21+
ogcapi-features-plugin,\
2122
netcdf-plugin,\
2223
netcdf-out-plugin,\
2324
csw-iso-plugin,\
2425
metadata-plugin"
2526

2627
# Install the community edition plugins specified in
27-
# https://github.com/kartoza/docker-geoserver/blob/master/build_data/community_plugins.txt
28+
# https://github.com/kartoza/docker-geoserver/blob/develop/build_data/community_plugins.txt
29+
# ogcapi-features-plugin moved to stable_plugins in 2.27.0 but kept here for
30+
# back-compat with older version of GeoServer image.
2831
export GEOSERVER_COMMUNITY_EXTENSIONS="geopkg-plugin,\
2932
ogcapi-coverages-plugin,\
3033
ogcapi-dggs-plugin,\

birdhouse/config/geoserver/pre-docker-compose-up

Lines changed: 0 additions & 10 deletions
This file was deleted.

birdhouse/config/raven/docker-compose-extra.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,11 @@ services:
1313
container_name: raven
1414
environment:
1515
PYWPS_CFG: /wps.cfg
16+
# Keep for backward-compat with older RavenWPS.
1617
GEO_URL: "${RAVEN_GEO_URL}"
18+
# Forward-compat with newer RavenWPS not yet in this stack.
19+
RAVEN_GEOSERVER_URL: "${RAVEN_GEO_URL}"
20+
RAVENPY_GEOSERVER_URL: "${RAVEN_GEO_URL}"
1721
volumes:
1822
- ./config/raven/wps.cfg:/wps.cfg
1923
- /tmp

birdhouse/scripts/sync-data

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,8 @@ for item in $GEOSERVER_DATA_DIR/ $JUPYTERHUB_USER_DATA_DIR/ $MAGPIE_PERSIST_DIR/
5858
done
5959

6060
if [ ! x"$FORCE_MODE" = xforce ]; then
61-
echo "Dry-run mode, not executing '$COMPOSE_DIR/deployment/fix-geoserver-data-dir-perm' and other permission fixup"
61+
echo "Dry-run mode, not executing various permission fixup"
6262
else
63-
$COMPOSE_DIR/deployment/fix-geoserver-data-dir-perm
6463

6564
docker run --rm --name fix-jupyter-data-dir-perm \
6665
--volume ${JUPYTERHUB_USER_DATA_DIR}:/datadir \

0 commit comments

Comments
 (0)