Skip to content

Commit 95bd89a

Browse files
mohitbadwalclaude
andcommitted
Fix: point Docker quickstart email links at :8000
The web service serves on :8000 but PUBLIC_BASE_URL fell back to the dev default :8011, so verification/reset/invite email links were unreachable for anyone following the Docker quickstart. Set PUBLIC_BASE_URL explicitly on the web service. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent b17e097 commit 95bd89a

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

docker-compose.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,9 @@ services:
4444
DATABASE_URL: postgres://opensurvey:opensurvey@db:5432/opensurvey
4545
CELERY_BROKER_URL: redis://redis:6379/1
4646
CELERY_RESULT_BACKEND: redis://redis:6379/2
47+
# This container serves on :8000, so the links in outgoing emails (verification,
48+
# password reset, invitations) must point there — not the dev default of :8011.
49+
PUBLIC_BASE_URL: http://127.0.0.1:8000
4750
ports:
4851
- "8000:8000"
4952
depends_on:

0 commit comments

Comments
 (0)