Merge remote-tracking branch 'upstream/master' into feature/root-webapp-redirect

pull/12/head
Cristhian Rivera 2022-11-09 21:38:28 +01:00
commit 14df2bb394
No known key found for this signature in database
GPG Key ID: 29DC82012E0D1ED2
2 changed files with 11 additions and 4 deletions

View File

@ -3,7 +3,7 @@ FROM ubuntu:22.04
# The GS_VERSION argument could be used like this to overwrite the default:
# docker build --build-arg GS_VERSION=2.21.2 -t geoserver:2.21.2 .
ARG TOMCAT_VERSION=9.0.68
ARG GS_VERSION=2.21.1
ARG GS_VERSION=2.22-RC
ARG GS_DATA_PATH=./geoserver_data/
ARG ADDITIONAL_LIBS_PATH=./additional_libs/
ARG ADDITIONAL_FONTS_PATH=./additional_fonts/

View File

@ -56,8 +56,15 @@ using the same data directory.
### How to start a GeoServer without sample data?
This image populates GeoServer with demo data by default. For production scenarios this is typically not desired.
The environment variable `SKIP_DEMO_DATA` can be set to `true` to create an empty GeoServer.
This image populates ``/opt/geoserver_data/`` with demo data by default. For production scenarios this is typically not desired.
The environment variable `SKIP_DEMO_DATA` can be set to `true` to create an empty data directory.
```
docker run -it -p 80:8080 \
--env SKIP_DEMO_DATA=true \
docker.osgeo.org/geoserver:2.21.1
```
### How to issue a redirect from the root ("/") to GeoServer web interface ("/geoserver/web")?
@ -97,7 +104,7 @@ excel inspire ogr-wfs wcs2_0-eo
### How to install additional extensions from local folder?
If you want to add geoserver extensions/libs by using a mount, you can add something like
If you want to add geoserver extensions/libs, place the respective jar files in a directory and mount it like
```
docker run -it -p 80:8080 \