To get the image onto your system:
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:$VERSION
Note 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 .env to 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.
Content type
Image
Digest
sha256:1c389856c…
Size
1.4 GB
Last updated
about 12 hours ago
docker pull kartoza/geoserver