diff --git a/MIGRATION.md b/MIGRATION.md index 0f6b0cf..98fb4bd 100644 --- a/MIGRATION.md +++ b/MIGRATION.md @@ -13,6 +13,26 @@ WARNING: if you are migrating from v6 see [v0.7.204](#v07204) for details. > [!CAUTION] > Do not upgrade directly from v6 to v7. Direct upgrades will lock your deployment with MongoDB-specific data, making the future migration significantly more complex. Follow the migration instructions below instead. +### Next release (TBD) + +#### Print Service + +`FRONT_URL` is now required for the `print` service. If you have the optional `print` service deployed, add `FRONT_URL` to its environment: + +```yaml +print: + ... + environment: + ... + - FRONT_URL=http${SECURE:+s}://${HOST_ADDRESS} +``` + +After updating, recreate the container: + +```bash +docker compose up -d --force-recreate print +``` + ### v0.7.382 No changes required. diff --git a/README.md b/README.md index 34fe506..c25594b 100644 --- a/README.md +++ b/README.md @@ -588,6 +588,7 @@ Redis can be used as an alternative backend for HulyPulse – for example, in mu - STATS_URL=http://stats:4900 - SECRET=${SECRET} - ACCOUNTS_URL=http://account:3000 + - FRONT_URL=http${SECURE:+s}://${HOST_ADDRESS} restart: unless-stopped networks: - huly_net