fix(service): glitchtip webdashboard doesn't load (#8249)

This commit is contained in:
Andras Bacsai 2026-02-16 14:42:36 +01:00 committed by GitHub
commit 84f62c78db
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,9 +1,9 @@
# documentation: https://glitchtip.com # documentation: https://glitchtip.com
# slogan: GlitchTip is a self-hosted, open-source error tracking system. # slogan: GlitchTip is a error tracking system.
# category: monitoring # category: monitoring
# tags: error, tracking, open-source, self-hosted, sentry # tags: error, tracking, sentry
# logo: svgs/glitchtip.png # logo: svgs/glitchtip.png
# port: 8080 # port: 8000
services: services:
postgres: postgres:
@ -29,14 +29,14 @@ services:
retries: 10 retries: 10
web: web:
image: glitchtip/glitchtip image: glitchtip/glitchtip:6.0
depends_on: depends_on:
postgres: postgres:
condition: service_healthy condition: service_healthy
redis: redis:
condition: service_healthy condition: service_healthy
environment: environment:
- SERVICE_URL_GLITCHTIP_8080 - SERVICE_URL_GLITCHTIP_8000
- DATABASE_URL=postgres://$SERVICE_USER_POSTGRESQL:$SERVICE_PASSWORD_POSTGRESQL@postgres:5432/${POSTGRESQL_DATABASE:-glitchtip} - DATABASE_URL=postgres://$SERVICE_USER_POSTGRESQL:$SERVICE_PASSWORD_POSTGRESQL@postgres:5432/${POSTGRESQL_DATABASE:-glitchtip}
- SECRET_KEY=$SERVICE_BASE64_64_ENCRYPTION - SECRET_KEY=$SERVICE_BASE64_64_ENCRYPTION
- EMAIL_URL=${EMAIL_URL:-consolemail://} - EMAIL_URL=${EMAIL_URL:-consolemail://}
@ -53,7 +53,7 @@ services:
retries: 10 retries: 10
worker: worker:
image: glitchtip/glitchtip image: glitchtip/glitchtip:6.0
command: ./bin/run-celery-with-beat.sh command: ./bin/run-celery-with-beat.sh
depends_on: depends_on:
postgres: postgres:
@ -77,7 +77,7 @@ services:
retries: 10 retries: 10
migrate: migrate:
image: glitchtip/glitchtip image: glitchtip/glitchtip:6.0
restart: "no" restart: "no"
depends_on: depends_on:
postgres: postgres: