umami/docker-compose.yml
2026-02-12 14:09:22 +05:30

35 lines
884 B
YAML

---
services:
syncfuse:
image: ghcr.io/umami-software/umami:latest
ports:
- "3000:3000"
environment:
DATABASE_URL: postgresql://syncfuse:syncfuse@db:5432/syncfuse
APP_SECRET: replace-me-with-a-random-string
depends_on:
db:
condition: service_healthy
init: true
restart: always
healthcheck:
test: ["CMD-SHELL", "curl http://localhost:3000/api/heartbeat"]
interval: 5s
timeout: 5s
retries: 5
db:
image: postgres:15-alpine
environment:
POSTGRES_DB: syncfuse
POSTGRES_USER: syncfuse
POSTGRES_PASSWORD: syncfuse
volumes:
- syncfuse-db-data:/var/lib/postgresql/data
restart: always
healthcheck:
test: ["CMD-SHELL", "pg_isready -U $${POSTGRES_USER} -d $${POSTGRES_DB}"]
interval: 5s
timeout: 5s
retries: 5
volumes:
syncfuse-db-data: