Pull the latest image, restart, done. Migrations run on boot.
docker compose pull app docker compose up -d app
Database schema migrations (the versioned V1 → V15 system) apply automatically on startup. Data in Docker volumes is preserved.
Replace latest in docker-compose.yml with a tag:
image: ghcr.io/mlab-sh/tprm.mlab.sh:v1.3.0
If a release introduces a regression: re-pin to the previous tag, then docker compose up -d app. Schema rollbacks are not automatic — restore the MySQL/ClickHouse volumes from backup if a migration is involved.
mysql_data and clickhouse_data volumes (or run the logical dump from the installation page) before bumping a major version.
Subscribe to the changelog. Major releases announce breaking changes at least one minor version ahead.