Use Docker to deploy your application

Architecture schema

For OpenShift projects:

../_images/docker-openshift.png

For stand alone projects:

../_images/docker-apache.png

Docker Images

When you build your application, the following images will be generated:

  • camptocamp/<package>_geoportal:latest

  • camptocamp/<package>_config:latest

The tag is by default latest, but you can change it by setting the DOCKER_TAG Makefile variable.

Docker compose files

  • docker-compose.yaml: The main file that describes the composition.

  • docker-compose-lib.yaml: Provideis the base description of Geomapfish Docker services.

  • .env: Generated from the env files; contains the environment variables used by the composition.

  • docker-compose.override[.sample].yaml: Some rules for debuggung.

  • .env: The variable used in the compose files.

Run the developer composition

docker-compose up -d

You can then access your application with https://localhost:8484/.

Clean

Docker does not clean anything automatically, in particular it does not clean any images, therefore disk space may become problematic after a certain number of builds. You can use the following commands to manually remove Docker files.

Use docker system prune to clean files; you can add the --all option to do a deeper clean.

Environment variables

The GeoMapFish containers can be customised with some environment variables:

Config:

  • VISIBLE_WEB_HOST: The web host visible by the browser e.-g.: ‘example.com’.

  • VISIBLE_ENTRY_POINT: The web path visible by the browser e.-g.: ‘/main/’, default is ‘/’.

  • PGSCHEMA: The postgres schema, used by mapserver.

  • GEOPORTAL_INTERNAL_URL: Used by the print in non mutualised mode.

  • TILECLOUDCHAIN_INTERNAL_URL: Used by the print in non mutualised mode.

  • ST_JOIN: Can be ST_Collect (default) or ST_Union, ST_Collect is better for performance but does not support restriction area intersection.

Geoportal:

  • VISIBLE_ENTRY_POINT: The web path visible by the browser e.-g.: ‘/main/’, default is ‘/’.

  • PGSCHEMA: The postgres schema, used by mapserver.

  • AUTHTKT_TIMEOUT: See: Authentication.

  • AUTHTKT_REISSUE_TIME: See: Authentication.

  • AUTHTKT_MAXAGE: See: Authentication.

  • AUTHTKT_SECRET: See: Authentication.

  • AUTHTKT_COOKIENAME: See: Authentication.

  • AUTHTKT_HTTP_ONLY: See: Authentication.

  • AUTHTKT_SECURE: See: Authentication.

  • AUTHTKT_SAMESITE: See: Authentication.

  • BASICAUTH: See: Authentication.

  • LOG_TYPE: Should be ‘console’ with Docker Compose and ‘json’ with OpenShift.

  • LOG_LEVEL: Log level for your application, default is INFO, can be DEBUG, INFO, WARNING, ERROR, CRITICAL or NOTSET, see also the production.ini file and the logging documentation.

  • C2CGEOPORTAL_LOG_LEVEL: Log level for all c2cgeoportal modules, default is WARN.

  • C2CWSGIUTILS_LOG_LEVEL: Log level for c2cwsgiutils, default is INFO.

  • GUNICORN_LOG_LEVEL: Log level for Gunicorn, default is INFO.

  • SQL_LOG_LEVEL: Log level for the Sqlalchemy engine``, default is WARN.

  • DOGPILECACHE_LOG_LEVEL: Log level for Dogpile cache, default is INFO.

  • OTHER_LOG_LEVEL: Log level for other modules, default is WARN.

QGIS server:

  • GEOMAPFISH_CONFIG: The GeoMapFish config file, default is /etc/qgisserver/geomapfish.yaml.

  • GEOMAPFISH_OGCSERVER: The OGC server name in single QGIS project mode.

  • GEOMAPFISH_ACCESSCONTROL_CONFIG: The access control config file for multi QGIS project mode.

  • GEOMAPFISH_POSITION: The plugin position, Default is 100.

  • LOG_LEVEL: Log level for the GeoMapFish plugins, see also the logging.ini file.

  • C2CGEOPORTAL_LOG_LEVEL: Log level for all c2cgeoportal modules, default is INFO.

  • C2CWSGIUTILS_LOG_LEVEL: Log level for c2cwsgiutils, default is INFO.

  • SQL_LOG_LEVEL: Log level for the Sqlalchemy engine``, default is WARN.

  • OTHER_LOG_LEVEL: Log level for other modules, default is WARN.

  • QGIS_SERVER_LOG_LEVEL: Qgis server log level, default is 2, 0 for verbose.

  • Other QGIS server environment variables.

  • CPL_VSIL_CURL_USE_CACHE: GDAL option, default is TRUE.

  • CPL_VSIL_CURL_CACHE_SIZE: GDAL option, default is 128000000.

  • CPL_VSIL_CURL_USE_HEAD: GDAL option, default is FALSE.

  • GDAL_DISABLE_READDIR_ON_OPEN: GDAL option, default is TRUE.

  • Other GDAL environment variables.