umami/docker-compose.yml

32 lines
757 B
YAML
Raw Normal View History

2020-08-22 10:00:35 +00:00
---
version: '3'
2020-08-19 04:23:04 +00:00
services:
umami:
image: ghcr.io/umami-software/umami:postgresql-latest
2020-08-19 04:23:04 +00:00
ports:
- "3000:3000"
environment:
2020-08-22 10:00:35 +00:00
DATABASE_URL: postgresql://umami:umami@db:5432/umami
DATABASE_TYPE: postgresql
2022-12-28 05:38:23 +00:00
APP_SECRET: replace-me-with-a-random-string
2020-08-22 10:00:35 +00:00
depends_on:
db:
condition: service_healthy
restart: always
2020-08-22 10:00:35 +00:00
db:
2023-04-17 17:10:05 +00:00
image: postgres:15-alpine
2020-08-19 04:23:04 +00:00
environment:
2020-08-22 10:00:35 +00:00
POSTGRES_DB: umami
2020-08-19 04:23:04 +00:00
POSTGRES_USER: umami
POSTGRES_PASSWORD: umami
volumes:
2020-08-22 10:00:35 +00:00
- umami-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
2020-08-19 04:23:04 +00:00
volumes:
2020-08-22 10:00:35 +00:00
umami-db-data: