GeospatialMax / docker-geoserver

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

docker-geoserver

Dockerized GeoServer.

Features

Trusted builds

Active versions with automated builds available on docker registry:

Other experimental (not automated build):

Running

Get the image:

docker pull oscarfonts/geoserver

Run as a service, exposing port 8080 and using a hosted GEOSERVER_DATA_DIR:

docker run -d -p 8080:8080 -v /path/to/local/data_dir:/var/local/geoserver localhost --name=MyGeoServerInstance oscarfonts/geoserver

Configure extensions

To add extensions to your GeoServer installation, provide a directory with the unzipped extensions separated by directories (one directory per extension):

docker run -d -p 8080:8080 -v /path/to/local/exts_dir:/var/local/geoserver-exts/ localhost --name=MyGeoServerInstance oscarfonts/geoserver

You can use the build_exts_dir.sh script together with a extensions configuration file to create your own extensions directory easily.

Warning: The .jar files contained in the extensions directory will be copied to the WEB-INF/lib directory of the GeoServer installation. Make sure to include only .jar files from trusted extensions to avoid security risks.

Configure path

It is also possible to configure the context path by providing a Catalina configuration directory:

docker run -d -p 8080:8080 -v /path/to/local/data_dir:/var/local/geoserver -v /path/to/local/conf_dir:/usr/local/tomcat/conf/Catalina/localhost --name=MyGeoServerInstance oscarfonts/geoserver

See some examples.

Logs

See the tomcat logs while running:

docker logs -f MyGeoServerInstance

About


Languages

Language:Dockerfile 74.5%Language:Shell 25.5%