axiom-community-manager/composes/umami/umami.yml

14 lines
473 B
YAML

services:
umami:
image: ghcr.io/umami-software/umami:postgresql-latest
ports:
- ${UMAMI_PORT:-3000}:3000
environment:
DATABASE_URL: postgres://${POSTGRES_NON_ROOT_USER:-$ADMIN_USER}:${POSTGRES_NON_ROOT_PASSWORD:-$POSTGRES_PASSWORD}@postgres:5432/${UMAMI_DB:-umami}
DATABASE_TYPE: postgresql
HASH_SALT: ${HASH_SALT:-replace-me-with-a-random-string}
depends_on:
postgres:
condition: service_healthy
restart: always