From 87c61f436397f774333d45df351349dc5cc3a03d Mon Sep 17 00:00:00 2001 From: Till JS Date: Thu, 19 Mar 2026 14:57:50 +0100 Subject: [PATCH] fix(glitchtip): add REDIS_URL with auth to GlitchTip containers Redis requires authentication - GlitchTip needs REDIS_URL with password for cache operations (session, metrics cache clearing). Co-Authored-By: Claude Opus 4.6 (1M context) --- docker-compose.macmini.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docker-compose.macmini.yml b/docker-compose.macmini.yml index 5fb1dc9a5..c488d42f5 100644 --- a/docker-compose.macmini.yml +++ b/docker-compose.macmini.yml @@ -1915,6 +1915,7 @@ services: restart: always environment: DATABASE_URL: postgres://postgres:${POSTGRES_PASSWORD:-mana123}@postgres:5432/glitchtip + REDIS_URL: redis://:${REDIS_PASSWORD:-redis123}@redis:6379/1 SECRET_KEY: ${GLITCHTIP_SECRET_KEY:-change-me-in-production} PORT: "8020" GLITCHTIP_DOMAIN: https://glitchtip.mana.how @@ -1941,6 +1942,7 @@ services: command: ./bin/run-celery-with-beat.sh environment: DATABASE_URL: postgres://postgres:${POSTGRES_PASSWORD:-mana123}@postgres:5432/glitchtip + REDIS_URL: redis://:${REDIS_PASSWORD:-redis123}@redis:6379/1 SECRET_KEY: ${GLITCHTIP_SECRET_KEY:-change-me-in-production} GLITCHTIP_DOMAIN: https://glitchtip.mana.how CELERY_WORKER_AUTOSCALE: "1,3"