From 591b97042cc50f36e7bd7dd7da227eb37a812483 Mon Sep 17 00:00:00 2001 From: Klaas van Schelven Date: Fri, 7 Nov 2025 19:59:23 +0100 Subject: [PATCH] docker-compose-sample.yaml: more clearly email:password See #261 --- docker-compose-sample.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose-sample.yaml b/docker-compose-sample.yaml index ba4945a..62cb606 100644 --- a/docker-compose-sample.yaml +++ b/docker-compose-sample.yaml @@ -25,7 +25,7 @@ services: - "8000:8000" environment: SECRET_KEY: django-insecure-RMLYThim9NybWgXiUGat32Aa0Qbgqscf4NPDQuZO2glcZPOiXn # Change this (and remove django-insecure prefix), e.g. openssl rand -base64 50 - CREATE_SUPERUSER: admin:admin # Change this (or remove it and execute 'createsuperuser' against the running container) + CREATE_SUPERUSER: email:password # Change this (or remove it and execute 'createsuperuser' against the running container) PORT: 8000 DATABASE_URL: postgresql://bugsinkuser:your_super_secret_password@db:5432/bugsink # Change password to match POSTGRES_PASSWORD above BEHIND_HTTPS_PROXY: "false" # Change this for setups behind a proxy w/ ssl enabled