- Included a blurb on the README.md - Provides a default "context.xml" that a user can easily configure using environment variables. - Provides a mechanism for the user to override the default "context.xml" with their own version of the file for more advanced customization of the connection pool. Heavily inspired by the work done at https://github.com/kartoza/docker-geoserver. |
||
|---|---|---|
| additional_fonts | ||
| additional_libs | ||
| build | ||
| config | ||
| geoserver_data | ||
| .dockerignore | ||
| .gitignore | ||
| BUILD.md | ||
| Dockerfile | ||
| LICENSE.md | ||
| README.md | ||
| RELEASE.md | ||
| docker-compose-demo.yml | ||
| install-extensions.sh | ||
| startup.sh | ||
README.md
A geoserver docker image
This Dockerfile can be used to create images for all geoserver versions since 2.5.
- Debian based Linux
- OpenJDK 11
- Tomcat 9
- GeoServer
- Support of custom fonts (e.g. for SLD styling)
- CORS support
- Support extensions
- Support additional libraries
This README.md file covers use of official docker image, additional build and release instructions are available.
How to run official release?
To pull an official image use docker.osgeo.org/geoserver:{{VERSION}}, e.g.:
docker pull docker.osgeo.org/geoserver:2.23.1
Afterwards you can run the pulled image locally with:
docker run -it -p 80:8080 docker.osgeo.org/geoserver:2.23.1
Or if you want to start the container daemonized, use e.g.:
docker run -d -p 80:8080 docker.osgeo.org/geoserver:2.23.1
Check http://localhost/geoserver to see the geoserver page,
and login with geoserver default admin:geoserver credentials.
IMPORTANT NOTE: Please change the default geoserver and master passwords.
For more information see the user-guide docker installation instructions.
How to mount an external folder for use as a data directory
To use an external folder as your geoserver data directory.
docker run -it -p 80:8080 \
--mount src="/absolute/path/on/host",target=/opt/geoserver_data/,type=bind \
docker.osgeo.org/geoserver:2.23.1
An empty data directory will be populated on first use. You can easily update GeoServer while using the same data directory.
How to start a GeoServer without sample data?
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.23.1
How to issue a redirect from the root ("/") to GeoServer web interface ("/geoserver/web")?
By default, the ROOT webapp is not available which makes requests to the root endpoint "/" return a 404 error.
The environment variable ROOT_WEBAPP_REDIRECT can be set to true to issue a permanent redirect to the web interface.
How to download and install additional extensions on startup?
The startup.sh script allows some customization on startup:
INSTALL_EXTENSIONStotrueto download and install extensionsSTABLE_EXTENSIONSlist of extensions to download and installCORS_ENABLEDtotrueto enable CORS support. The following environment variables can be used to customize the CORS configuration.CORS_ALLOWED_ORIGINS(default*)CORS_ALLOWED_METHODS(defaultGET,POST,PUT,DELETE,HEAD,OPTIONS)CORS_ALLOWED_HEADERS(default*)CORS_ALLOW_CREDENTIALS(defaultfalse) Setting this totruewill only have the desired effect ifCORS_ALLOWED_ORIGINSdefines explicit origins (not*)
PROXY_BASE_URLto the base URL of the GeoServer web app if GeoServer is behind a proxy. Example:https://example.com/geoserver.
Example installing wps and ysld extensions:
docker run -it -p 80:8080 \
--env INSTALL_EXTENSIONS=true --env STABLE_EXTENSIONS="wps,ysld" \
docker.osgeo.org/geoserver:2.23.1
The list of extensions (taken from SourceForge download page):
app-schema gdal jp2k ogr-wps web-resource
authkey geofence libjpeg-turbo oracle wmts-multi-dimensional
cas geofence-server mapml params-extractor wps-cluster-hazelcast
charts geopkg-output mbstyle printing wps-cluster-hazelcast
control-flow grib mongodb pyramid wps-download
css gwc-s3 monitor querylayer wps-jdbc
csw h2 mysql sldservice wps
db2 imagemap netcdf-out sqlserver xslt
dxf importer netcdf vectortiles ysld
excel inspire ogr-wfs wcs2_0-eo
How to install additional extensions from local folder?
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 \
--mount src="/dir/with/libs/on/host",target=/opt/additional_libs,type=bind \
docker.osgeo.org/geoserver:2.23.1
How to add additional fonts to the docker image (e.g. for SLD styling)?
If you want to add custom fonts (the base image only contains 26 fonts) by using a mount:
docker run -it -p 80:8080 \
--mount src="/dir/with/fonts/on/host",target=/opt/additional_fonts,type=bind \
docker.osgeo.org/geoserver:2.23.1
Note: Do not change the target value!
How to enable a PostgreSQL JNDI resource?
To enable a PostgreSQL JNDI resource, provide the following environment variables:
POSTGRES_JNDI_ENABLEDtotruePOSTGRES_HOSTPOSTGRES_PORT(optional; defaults to 5432)POSTGRES_DBPOSTGRES_USERNAMEPOSTGRES_PASSWORDPOSTGRES_JNDI_RESOURCE_NAME(optional; defaults tojava:comp/env/jdbc/postgres)
For advanced customization of the connection pool, you can provide your own customized "context.xml"
file to Apache Tomcat by mounting it to the container at /opt/config_overrides/context.xml.
How to use the docker-compose demo?
The docker-compose-demo.yml to build with your own data directory and extensions.
Stage geoserver data directory contents into geoserver_data, and any extensions into additional_libs folder.
Run docker-compose:
docker-compose -f docker-compose-demo.yml up --build
Troubleshooting
How to watch geoserver.log from host?
To watch geoserver.log of a running container:
docker exec -it {CONTAINER_ID} tail -f /opt/geoserver_data/logs/geoserver.log