Pass SETTINGS_URL and SETTINGS_SECRET to backend container

These were in the .env file but missing from docker-compose environment,
so process.env.SETTINGS_URL was undefined and newbook.js crashed on
URL construction.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
jtricerolph 2026-07-01 21:22:37 +00:00
parent f52054e5e2
commit b9fb7b1dc7

View file

@ -6,6 +6,8 @@ services:
environment:
- DATABASE_URL=${DATABASE_URL}
- CENTRAL_AUTH_SECRET=${CENTRAL_AUTH_SECRET}
- SETTINGS_URL=${SETTINGS_URL}
- SETTINGS_SECRET=${SETTINGS_SECRET}
- APP_SLUG=cashup
- OFFICE_IP_CHECK=${OFFICE_IP_CHECK:-disabled}
volumes: