Skip to content

Commit 5886f05

Browse files
authored
Upgraded GeoServer from version 2.22.1 to 2.22.2 (#497)
1 parent 7869201 commit 5886f05

File tree

4 files changed

+17
-17
lines changed

4 files changed

+17
-17
lines changed

.env

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
COMPOSE_PROJECT_NAME=kartozageoserver
22

33
IMAGE_VERSION=9.0.71-jdk11-temurin-focal
4-
GS_VERSION=2.22.1
4+
GS_VERSION=2.22.2
55
GEOSERVER_PORT=8600
66
# Build Arguments
77
JAVA_HOME=/usr/local/openjdk-11
8-
WAR_URL=http://downloads.sourceforge.net/project/geoserver/GeoServer/2.22.1/geoserver-2.22.1-war.zip
8+
WAR_URL=http://downloads.sourceforge.net/project/geoserver/GeoServer/2.22.2/geoserver-2.22.2-war.zip
99
STABLE_PLUGIN_BASE_URL=https://sourceforge.net/projects/geoserver/files/GeoServer
1010
DOWNLOAD_ALL_STABLE_EXTENSIONS=1
1111
DOWNLOAD_ALL_COMMUNITY_EXTENSIONS=1

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ARG JAVA_HOME=/usr/local/openjdk-11
44
FROM tomcat:$IMAGE_VERSION
55

66
LABEL maintainer="Tim Sutton<[email protected]>"
7-
ARG GS_VERSION=2.22.1
7+
ARG GS_VERSION=2.22.2
88
ARG WAR_URL=https://downloads.sourceforge.net/project/geoserver/GeoServer/${GS_VERSION}/geoserver-${GS_VERSION}-war.zip
99
ARG STABLE_PLUGIN_BASE_URL=https://sourceforge.net/projects/geoserver/files/GeoServer
1010
ARG DOWNLOAD_ALL_STABLE_EXTENSIONS=1

README.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ The preferred way (but using most bandwidth for the initial image) is to
5656
get our docker trusted build like this:
5757

5858
```shell
59-
VERSION=2.22.1
59+
VERSION=2.22.2
6060
docker pull kartoza/geoserver:$VERSION
6161
```
6262
### Building the image
@@ -98,13 +98,13 @@ To build using a specific tagged release for tomcat image set the
9898
to choose which tag you need to build against.
9999

100100
```
101-
ie VERSION=2.22.1
102-
docker build --build-arg IMAGE_VERSION=8-jre8 --build-arg GS_VERSION=2.22.1 -t kartoza/geoserver:${VERSION} .
101+
ie VERSION=2.22.2
102+
docker build --build-arg IMAGE_VERSION=8-jre8 --build-arg GS_VERSION=2.22.2 -t kartoza/geoserver:${VERSION} .
103103
```
104104

105105
For some recent builds it is necessary to set the JAVA_PATH as well (e.g. Apache Tomcat/9.0.36)
106106
```
107-
docker build --build-arg IMAGE_VERSION=9-jdk11-openjdk-slim --build-arg JAVA_HOME=/usr/local/openjdk-11/bin/java --build-arg GS_VERSION=2.22.1 -t kartoza/geoserver:2.22.1 .
107+
docker build --build-arg IMAGE_VERSION=9-jdk11-openjdk-slim --build-arg JAVA_HOME=/usr/local/openjdk-11/bin/java --build-arg GS_VERSION=2.22.2 -t kartoza/geoserver:2.22.2 .
108108
```
109109

110110
**Note:** Please check the [GeoServer documentation](https://docs.geoserver.org/stable/en/user/production/index.html)
@@ -171,7 +171,7 @@ The image ships with the following stable plugins:
171171
* csw-plugin
172172

173173
**Note:** The plugins listed above are omitted from [Stable_plugins.txt](https://github.com/kartoza/docker-geoserver/blob/master/build_data/stable_plugins.txt)
174-
even though they are considered [stable plugins](https://sourceforge.net/projects/geoserver/files/GeoServer/2.22.1/extensions/)
174+
even though they are considered [stable plugins](https://sourceforge.net/projects/geoserver/files/GeoServer/2.22.2/extensions/)
175175
The image activates them on startup.
176176

177177
The image provides the necessary plugin zip files which are used when activating the
@@ -189,7 +189,7 @@ The environment variable `STABLE_EXTENSIONS` can be used to activate plugins lis
189189
Example
190190

191191
```
192-
ie VERSION=2.22.1
192+
ie VERSION=2.22.2
193193
docker run -d -p 8600:8080 --name geoserver -e STABLE_EXTENSIONS=charts-plugin,db2-plugin kartoza/geoserver:${VERSION}
194194
195195
```
@@ -210,7 +210,7 @@ The environment variable `COMMUNITY_EXTENSIONS` can be used to activate plugins
210210
Example
211211

212212
```
213-
ie VERSION=2.22.1
213+
ie VERSION=2.22.2
214214
docker run -d -p 8600:8080 --name geoserver -e COMMUNITY_EXTENSIONS=gwc-sqlite-plugin,ogr-datastore-plugin kartoza/geoserver:${VERSION}
215215
216216
```
@@ -228,7 +228,7 @@ Geoserver ships with sample data which can be used by users to familiarize them
228228
This is not activated by default. You can activate it using the environment variable `SAMPLE_DATA=true`
229229

230230
```
231-
ie VERSION=2.22.1
231+
ie VERSION=2.22.2
232232
docker run -d -p 8600:8080 --name geoserver -e SAMPLE_DATA=true kartoza/geoserver:${VERSION}
233233
234234
```
@@ -319,14 +319,14 @@ If you set the environment variable `SSL=true` but do not provide the pem files
319319
the container will generate a self-signed SSL certificates.
320320

321321
```
322-
ie VERSION=2.22.1
322+
ie VERSION=2.22.2
323323
docker run -it --name geoserver -e PKCS12_PASSWORD=geoserver -e JKS_KEY_PASSWORD=geoserver -e JKS_STORE_PASSWORD=geoserver -e SSL=true -p 8443:8443 -p 8600:8080 kartoza/geoserver:${VERSION}
324324
```
325325

326326
If you already have your perm files (fullchain.pem and privkey.pem) you can mount the directory containing your keys as:
327327

328328
```
329-
ie VERSION=2.22.1
329+
ie VERSION=2.22.2
330330
docker run -it --name geo -v /etc/certs:/etc/certs -e PKCS12_PASSWORD=geoserver -e JKS_KEY_PASSWORD=geoserver -e JKS_STORE_PASSWORD=geoserver -e SSL=true -p 8443:8443 -p 8600:8080 kartoza/geoserver:${VERSION}
331331
332332
```
@@ -402,7 +402,7 @@ To include Tomcat extras including docs, examples, and the manager webapp, set t
402402
to use a strong password otherwise the default one is set up.
403403

404404
```
405-
ie VERSION=2.22.1
405+
ie VERSION=2.22.2
406406
docker run -it --name geoserver -e TOMCAT_EXTRAS=true -p 8600:8080 kartoza/geoserver:${VERSION}
407407
```
408408

@@ -429,7 +429,7 @@ If you have downloaded extra fonts you can mount the folder to the path
429429
path during initialisation.
430430

431431
```
432-
ie VERSION=2.22.1
432+
ie VERSION=2.22.2
433433
docker run -v fonts:/opt/fonts -p 8080:8080 -t kartoza/geoserver:${VERSION}
434434
```
435435

clustering/docker-compose.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ services:
1919
healthcheck:
2020
test: "PGPASSWORD=docker pg_isready -h 127.0.0.1 -U docker -d gis"
2121
master:
22-
image: kartoza/geoserver:2.22.1
22+
image: kartoza/geoserver:2.22.2
2323
volumes:
2424
- geoserver-cluster-data:/opt/geoserver/data_dir
2525
ports:
@@ -50,7 +50,7 @@ services:
5050
timeout: 10s
5151
retries: 3
5252
node:
53-
image: kartoza/geoserver:2.22.1
53+
image: kartoza/geoserver:2.22.2
5454
volumes:
5555
- geoserver-cluster-data:/opt/geoserver/data_dir
5656
ports:

0 commit comments

Comments
 (0)