Add front url for print (#298)

Signed-off-by: Artem Savchenko <armisav@gmail.com>
This commit is contained in:
Artyom Savchenko
2026-05-10 08:25:44 +07:00
committed by GitHub
parent 1d53658d7d
commit ef19ed66a3
2 changed files with 21 additions and 0 deletions
+20
View File
@@ -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.
+1
View File
@@ -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