mirror of
https://github.com/altstackHQ/altstack-data.git
synced 2026-04-17 21:53:12 +02:00
42 lines
1014 B
YAML
42 lines
1014 B
YAML
|
|
# -------------------------------------------------------------------------
|
|
# 🚀 Created and distributed by The AltStack
|
|
# 🌍 https://thealtstack.com
|
|
# -------------------------------------------------------------------------
|
|
|
|
|
|
services:
|
|
glitchtip:
|
|
image: glitchtip/glitchtip:latest
|
|
container_name: glitchtip
|
|
restart: unless-stopped
|
|
depends_on:
|
|
- db
|
|
- redis
|
|
ports:
|
|
- "8000:8000"
|
|
environment:
|
|
- DATABASE_URL=postgres://glitchtip:glitchtip@db:5432/glitchtip
|
|
- REDIS_URL=redis://redis:6379
|
|
- SECRET_KEY=change_me_to_something_random
|
|
- PORT=8000
|
|
|
|
db:
|
|
image: postgres:14
|
|
container_name: glitchtip-db
|
|
restart: unless-stopped
|
|
environment:
|
|
- POSTGRES_USER=glitchtip
|
|
- POSTGRES_PASSWORD=glitchtip
|
|
- POSTGRES_DB=glitchtip
|
|
volumes:
|
|
- glitchtip_db_data:/var/lib/postgresql/data
|
|
|
|
redis:
|
|
image: redis:alpine
|
|
container_name: glitchtip-redis
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
glitchtip_db_data:
|