Skip to content

qwc-services/qwc-base-db

Repository files navigation

CI docker

QWC Base DB

This repository creates two Docker images:

  • qwc-base-db: Image with a postgis server and the minimal schemas and roles for the QWC Config DB
  • qwc-base-db-migrate: Image containing alembic and the migrations to update the QWC Config DB to the latest schema

These images are designed to be configured in a docker-compose.yml as follows (minimal configuration):

  qwc-postgis:
    image: sourcepole/qwc-base-db:<pg_version>
    healthcheck:
      test: ["CMD-SHELL", "pg_isready -U postgres"]
      interval: 10s
    environment:
      POSTGRES_PASSWORD: '' # TODO: Set your postgres password here!
    volumes:
      - ./volumes/db:/var/lib/postgresql/docker

  qwc-config-db-migrate:
    image: sourcepole/qwc-base-db-migrate:<version>
    volumes:
      - ./pg_service.conf:/tmp/pg_service.conf:ro

Note:

  • You need to set a non-empty POSTGRES_PASSWORD ENV variable.
  • You can set passwords for roles in qwc_services database with ENV variables: QGIS_SERVER_PASSWORD, QWC_ADMIN_PASSWORD, QWC_SERVICE_PASSWORD, QWC_SERVICE_WRITE_PASSWORD. These variables have default values (qgis_server, qwc_admin, qwc_service, qwc_service_write).
  • For persistent storage, mount folder volume to /var/lib/postgresql/docker.
  • The sourcepole/qwc-base-db images are versioned according to the Postgres major version (i.e. 13, 14, 15, ...).
  • The sourcepole/qwc-base-db-migrate images are versioned by date (vYYYY.MM.DD)

When the qwc-postgis image is run, then it checks whether /var/lib/postgresql/docker is empty. If that's the case then it will proceed with setting up the qwc_configdb DB.

The qwc-config-db-migrate image will run qwc-postgis is up, and will apply all available migrations to the Config DB.

Keeping the Config DB up-to-date

To keep the Config DB up to date, it is sufficient to update the qwc-base-db-migrate image version to the latest available version.

Configure the qwc-config-db-migrate image mounting the pg_service.conf containing the connection information to your database:

  qwc-config-db-migrate:
    image: sourcepole/qwc-base-db-migrate:<version>
    volumes:
      - ./pg_service.conf:/tmp/pg_service.conf:ro

Migrations will be applied automatically, if necessary, whenever the Docker application is started.

To upgrade to a migration different than head, set the ALEMBIC_VERSION ENV variable.

Managing an external Config DB

You can use an external DB instead of the qwc-base-db dockerized DB.

To set up the external DB, set passwords for roles with ENV variables (QGIS_SERVER_PASSWORD, QWC_ADMIN_PASSWORD, QWC_SERVICE_PASSWORD, QWC_SERVICE_WRITE_PASSWORD) and run the SQL commands in setup-roles-and-db.sh on your external DB.

To apply the migrations, both as part as the initial setup and subsequently to keep the Config DB up-to-date:

  • Modify the qwc_configdb connection in pg_service.conf with the connection information to your external DB
  • Configure the qwc-config-db-migrate image mounting the modified pg_service.conf:
  qwc-config-db-migrate:
    image: sourcepole/qwc-base-db-migrate:<version>
    volumes:
      - ./pg_service.conf:/tmp/pg_service.conf:ro

DB Schema overview

er-diagram