Skip to content

Commit b85ab6b

Browse files
committed
upgrade to Geoserver 2.19.x
1 parent 606c80a commit b85ab6b

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ services:
105105
restart: on-failure
106106

107107
data-dir-conf:
108-
image: geonode/geoserver_data:2.18.2
108+
image: geonode/geoserver_data:2.19.x
109109
container_name: gsconf4${COMPOSE_PROJECT_NAME}
110110
command: /bin/true
111111
volumes:

docker/geoserver/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@ LABEL GeoNode Development Team
44
#
55
# Set GeoServer version and data directory
66
#
7-
ENV GEOSERVER_VERSION=2.18.2
7+
ENV GEOSERVER_VERSION=2.19.x
88
ENV GEOSERVER_DATA_DIR="/geoserver_data/data"
99

1010
#
1111
# Download and install GeoServer
1212
#
1313
RUN cd /usr/local/tomcat/webapps \
14-
&& wget --no-check-certificate --progress=bar:force:noscroll https://www.dropbox.com/s/xlich7pmneaupqp/geoserver-${GEOSERVER_VERSION}.war?dl=1 -O geoserver-${GEOSERVER_VERSION}.war \
15-
&& unzip -q geoserver-${GEOSERVER_VERSION}.war -d geoserver \
16-
&& rm geoserver-${GEOSERVER_VERSION}.war \
14+
&& wget --no-check-certificate --progress=bar:force:noscroll https://artifacts.geonode.org/geoserver/${GEOSERVER_VERSION}/geoserver.war -O geoserver.war \
15+
&& unzip -q geoserver.war -d geoserver \
16+
&& rm geoserver.war \
1717
&& mkdir -p $GEOSERVER_DATA_DIR
1818

1919
VOLUME $GEOSERVER_DATA_DIR

docker/geoserver/docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: '2.2'
33
services:
44

55
geoserver:
6-
image: geonode/geoserver:2.18.2
6+
image: geonode/geoserver:2.19.x
77
build:
88
context: .
99
args:
@@ -24,7 +24,7 @@ services:
2424
- DJANGO_URL=http://localhost/
2525

2626
data_dir_conf:
27-
image: geonode/geoserver_data:2.18.2
27+
image: geonode/geoserver_data:2.19.x
2828
container_name: geoserver_data_dir # named data container
2929
command: /bin/true
3030
volumes:

0 commit comments

Comments
 (0)