Merge remote-tracking branch 'upstream/master' into feature/root-webapp-redirect
commit
14df2bb394
|
|
@ -3,7 +3,7 @@ FROM ubuntu:22.04
|
||||||
# The GS_VERSION argument could be used like this to overwrite the default:
|
# 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 .
|
# docker build --build-arg GS_VERSION=2.21.2 -t geoserver:2.21.2 .
|
||||||
ARG TOMCAT_VERSION=9.0.68
|
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 GS_DATA_PATH=./geoserver_data/
|
||||||
ARG ADDITIONAL_LIBS_PATH=./additional_libs/
|
ARG ADDITIONAL_LIBS_PATH=./additional_libs/
|
||||||
ARG ADDITIONAL_FONTS_PATH=./additional_fonts/
|
ARG ADDITIONAL_FONTS_PATH=./additional_fonts/
|
||||||
|
|
|
||||||
13
README.md
13
README.md
|
|
@ -56,8 +56,15 @@ using the same data directory.
|
||||||
|
|
||||||
### How to start a GeoServer without sample data?
|
### 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.
|
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 GeoServer.
|
|
||||||
|
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")?
|
### 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?
|
### 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 \
|
docker run -it -p 80:8080 \
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue