Skip to content

meteofi/docker-geoserver

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GeoServer

GeoServer is a OGC compliant implementation of a number of open standards such as Web Feature Service (WFS), Web Map Service (WMS), and Web Coverage Service (WCS).

Additional formats and publication options are available including Web Map Tile Service (WMTS) and extensions for Catalogue Service (CSW) and Web Processing Service (WPS).

Supported tags and respective Dockerfile links

FEATURES

INSTALL

docker pull meteofi/geoserver

or build it yourself

git clone https://github.com/meteofi/docker-geoserver.git
cd docker-geoserver
docker build --rm -t meteofi/geoserver 2.19

QUICK START

docker run -d --name geoserver -p 8080:8080  meteofi/geoserver

Admin interface: http://localhost:8080/geoserver/web/

Check the administration credentials from container output or user GEOSERVER_ADMIN_PASSWORD environmental variable during first run.

Run with custom GeoServer data directory

docker volume create geoserver-storage
docker run -d --name geoserver -p 8080:8080 \
 -v geoserver-storage:/data/geoserver meteofi/geoserver