mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 21:21:10 +02:00
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) <noreply@anthropic.com>
This commit is contained in:
parent
8f0c747e08
commit
87c61f4363
1 changed files with 2 additions and 0 deletions
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue