Skip to content

waybarrios/geoserver-docker

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

geoserver-docker

GeoServer is an open source server for sharing geospatial data. This is a docker image that eases setting up GeoServer running with a separated data directory.

The image is based on the official Tomcat 8 image

Installation

This image is available as a trusted build on the docker hub, and is the recommended method of installation. Simple pull the image from the docker hub.

$ docker pull waybarrios/docker-geoserver

Alternatively you can build the image locally

$ git clone https://github.com/waybarrios/docker-geoserver.git
$ cd docker-geoserver
$ docker build -t "waybarrios/docker-geoserver" .

Quick start

You can quick start the image using the command line

$ docker run --name "geoserver" -d -p 8080:8080 waybarrios/docker-geoserver

Point your browser to http://localhost:8080/geoserver and login using GeoServer's default username and password:

  • Username: admin
  • Password: geoserver

Configuration

Data volume

This GeoServer container keeps its configuration data at /geoserver_data/data which is exposed as volume in the dockerfile. The volume allows for stopping and starting new containers from the same image without losing all the data and custom configuration.

You may want to map this volume to a directory on the host. It will also ease the upgrade process in the future. Volumes can be mounted by passing the -v flag to the docker run command:

-v /your/host/data/path:/geoserver_data/data

Data volume container

In case you are running Compose for automatically having GeoServer up and running then a data volume container will be mounted with a default preloaded GEOSERVER_DATA_DIR at the configuration data directory of the container. Make sure that the image from the repository data-docker is available from the GeoNode Docker Hub or has been built locally:

docker build -t geonode/geoserver_data .

Persistance behavior

If you run:

docker-compose stop

Data are retained in the GEOSERVER_DATA_DIR and can then be mounted in a new GeoServer instance by running again:

docker-compose up

If you run:

docker-compose down

Data are completely gone but you can ever start from the base GeoServer Data Directory built for Geonode.

Database

GeoServer recommends the usage of a spatial database

PostGIS container (PostgreSQL + GIS Extension)

If you want to use a PostGIS container, you can link it to this image. You're free to use any PostGIS container. An example with kartooza/postgis image:

$ docker run -d --name="postgis" kartoza/postgis

For further information see kartooza/postgis.

Now start the GeoServer instance by adding the --link option to the docker run command:

--link postgis:postgis

About

Base image for geoserver in docker

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 100.0%