Supported tags and respective Dockerfile links

Experimental

Geoserver with ERDAS ECW/JP2 v.5 (read-only) support and GDAL 2.2.1

Geoserver with ECW 3.3 SDK (read-write) support and GDAL 2.2.1

What is GeoServer?

GeoServer is a Java-based software server that allows users to view and edit geospatial data. Using open standards set forth by the Open Geospatial Consortium (OGC), GeoServer allows for great flexibility in map creation and data sharing.

GeoServer_200.png

wiki: wikipedia.org | site: geoserver.org | documentation: docs.geoserver.org | repository: github.com

Image description

Is not official GeoServer image based on Oracle Java with JAI 1.1.3, ImageIO 1.1, GDAL 1.10.1 and extensions:

  • ogr
  • gdal
  • printing
  • importer

How to use this image

Start a GeoServer instance

$ docker run -d winsent/geoserver

You can test it by visiting http://container-ip:8080

Using a custom GeoServer data directory

Make geoserver data directory and run container

$ mkdir /data/geoserver_data
$ docker run --name geoserver --restart=always -d -p 8080:8080 -v /data/geoserver_data:/opt/geoserver/data_dir winsent/geoserver

JAVA_OPT

You can set JAVA_OPTS as docker env

JAVA_OPTS="$JAVA_OPTS -Xmx1536M -XX:MaxPermSize=756M"
JAVA_OPTS="$JAVA_OPTS -Djava.awt.headless=true -XX:+UseConcMarkSweepGC -XX:+CMSClassUnloadingEnabled"

docker run \
--name geoserver \
--restart=always \
-d \
-e JAVA_OPTS="$JAVA_OPTS" \
-p 8080:8080 \
-v /data/geoserver_data:/opt/geoserver/data_dir \
winsent/geoserver

For example

License

GeoServer licensed under the GPL.

Other GIS containers

User Feedback

Issues

If you have any problems or questions about this image, please contact me through a Bitbucket issue or email pipetc@gmail.com.