Skip to content

Instantly share code, notes, and snippets.

@timlinux
Created June 12, 2018 06:17
Show Gist options
  • Select an option

  • Save timlinux/5487ba77908535612fde14447abfff2f to your computer and use it in GitHub Desktop.

Select an option

Save timlinux/5487ba77908535612fde14447abfff2f to your computer and use it in GitHub Desktop.
Example docker compose for QGIS
version: "3"
services:
qgisserver:
image: kartoza/qgis-server:LTR
hostname: qgis-server
environment:
- QGIS_PROJECT_FILE=/project/Swellendam.qgs
volumes:
# Wherever you want to mount your data from
- ./:/project
links:
- db:db
ports:
- "8080:80"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment