version: "3" services: umami: image: ghcr.io/mikecao/umami:postgresql-latest container_name: umami ports: - "127.0.0.1:${UMAMI_PORT}:3000" env_file: - ../stack.env depends_on: - umami_db restart: always umami_db: image: postgres:12-alpine container_name: umami_db env_file: - ../stack.env volumes: - /containers/umami/schema.postgresql.sql:/docker-entrypoint-initdb.d/schema.postgresql.sql:ro - /containers/umami/db:/var/lib/postgresql/data restart: always volumes: umami-db-data: