Pull the latest images, restart, done. Migrations run on boot.
docker-compose pull app executor docker-compose up -d app executor
Database schema migrations apply automatically on first request after boot. Data in Docker volumes is preserved.
Replace latest in docker-compose.yml with a tag:
image: ghcr.io/mlab-sh/ir.mlab.sh:v0.9.0
If a release introduces a regression: re-pin to the previous tag, docker-compose up -d app executor. 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.