- A simple docker container that runs GeoServer influenced by this docker recipe.
- The image has environment variables that allow users to configure GeoServer based on running-in-production
- Incorporates PostgreSQL database backend. Currently backed to use kartoza/postgis as a database backend. You can use any other PostgreSQL image but adjust the environment variables accordingly.
To get the image onto your system:
- Pulling from Central Registry (Dockerhub)
- Building locally - Consult the Developer Guidelines
The recommended approach (though it requires more bandwidth for the initial download) is to pull the trusted Docker image as follows:
VERSION=2.28.3
docker pull kartoza/geoserver:$VERSIONNote It is recommended to use tagged versions i.e.
kartoza/geoserver:$VERSION for stability.
We provide a sample docker-compose.yml file that illustrates
how you can establish a GeoServer + PostGIS.
Start the services using:
-
Navigate to the directory with compose yaml files.
cd compose -
Update
.envto suit your need and start the services.docker-compose up -d
Note The default login credentials are stored in the .env file and should be updated to something more secure..
Once all the services start, test by visiting the GeoServer landing page in your browser: http://localhost:8600/geoserver.
For a minimum example use the following:
GS_VERSION=2.28.3
docker run -d -p 8600:8080 --name geoserver -e GEOSERVER_ADMIN_PASSWORD=myawesomegeoserver -e GEOSERVER_ADMIN_USER=admin kartoza/geoserver:${GS_VERSION}Navigate to the URL: http://localhost:8600/geoserver
This README focuses on simplicity. Additional documentation covering advanced configuration and examples can be found here:
We encourage community contributions. Kindly submit pull requests against the develop branch so they can be reviewed and tested before being merged into master. All existing unit tests must pass for any changes, and new features or modifications should include accompanying unit tests where applicable.
When reporting issues especially those related to installed extensions (community or stable), please first consult the GeoServer Issue page to check whether the issue has already been reported upstream. We rely on the GeoServer community to address such upstream issues. For urgent upstream problems, consider obtaining paid support from the developers at GeoServer.
- This repository focuses on the orchestration and packaging of GeoServer.
- Issues specifically related to running the Docker image or its configuration should be reported here.
- Before opening an issue, please verify whether the problem originates from GeoServer itself or from this repository by checking upstream reports.
- Tim Sutton (tim@kartoza.com)
- Shane St Clair (shane@axiomdatascience.com)
- Alex Leith (alexgleith@gmail.com)
- Admire Nyakudya (addloe@gmail.com)
- Gavin Fleming (gavin@kartoza.com)