2024-02-20 16:08:16 +00:00
|
|
|
# documentation: https://umami.is
|
2024-02-22 10:53:25 +00:00
|
|
|
# slogan: Umami is web analytics platform which provides insights into visitor behavior without compromising user privacy.
|
2023-10-24 10:33:49 +00:00
|
|
|
# tags: analytics, insights, privacy
|
2024-02-20 16:08:16 +00:00
|
|
|
# logo: svgs/umami.svg
|
2024-03-13 08:27:42 +00:00
|
|
|
# port: 3000
|
2023-10-19 08:51:03 +00:00
|
|
|
|
|
|
|
services:
|
|
|
|
umami:
|
|
|
|
image: ghcr.io/umami-software/umami:postgresql-latest
|
|
|
|
environment:
|
2024-03-13 08:27:42 +00:00
|
|
|
- SERVICE_FQDN_UMAMI_3000
|
2023-10-19 08:51:03 +00:00
|
|
|
- DATABASE_URL=postgres://$SERVICE_USER_POSTGRES:$SERVICE_PASSWORD_POSTGRES@postgresql:5432/$POSTGRES_DB
|
|
|
|
- DATABASE_TYPE=postgres
|
|
|
|
- APP_SECRET=$SERVICE_PASSWORD_64_UMAMI
|
|
|
|
depends_on:
|
|
|
|
postgresql:
|
|
|
|
condition: service_healthy
|
2024-03-18 14:40:25 +00:00
|
|
|
healthcheck:
|
2024-05-17 08:11:55 +00:00
|
|
|
test: ["CMD", "curl", "-f", "http://127.0.0.1:3000/api/heartbeat"]
|
2024-03-18 14:40:25 +00:00
|
|
|
interval: 5s
|
|
|
|
timeout: 20s
|
|
|
|
retries: 10
|
2023-10-19 08:51:03 +00:00
|
|
|
postgresql:
|
2023-11-30 11:21:21 +00:00
|
|
|
image: postgres:16-alpine
|
2023-10-19 08:51:03 +00:00
|
|
|
volumes:
|
|
|
|
- postgresql-data:/var/lib/postgresql/data
|
|
|
|
environment:
|
|
|
|
- POSTGRES_USER=$SERVICE_USER_POSTGRES
|
|
|
|
- POSTGRES_PASSWORD=$SERVICE_PASSWORD_POSTGRES
|
|
|
|
- POSTGRES_DB=${POSTGRES_DB:-umami}
|
|
|
|
healthcheck:
|
|
|
|
test: ["CMD-SHELL", "pg_isready -U $${POSTGRES_USER} -d $${POSTGRES_DB}"]
|
|
|
|
interval: 5s
|
2023-10-26 08:02:51 +00:00
|
|
|
timeout: 20s
|
2023-10-19 08:51:03 +00:00
|
|
|
retries: 10
|