mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 09:45:04 +01:00
7dd5d97279
GHCR allows images to be pulled anonymously
25 lines
610 B
YAML
25 lines
610 B
YAML
---
|
|
version: '3'
|
|
services:
|
|
umami:
|
|
image: ghcr.io/mikecao/umami:postgresql-latest
|
|
ports:
|
|
- "3000:3000"
|
|
environment:
|
|
DATABASE_URL: postgresql://umami:umami@db:5432/umami
|
|
DATABASE_TYPE: postgresql
|
|
HASH_SALT: replace-me-with-a-random-string
|
|
depends_on:
|
|
- db
|
|
db:
|
|
image: postgres:alpine
|
|
environment:
|
|
POSTGRES_DB: umami
|
|
POSTGRES_USER: umami
|
|
POSTGRES_PASSWORD: umami
|
|
volumes:
|
|
- ./sql/schema.postgresql.sql:/docker-entrypoint-initdb.d/schema.postgresql.sql:ro
|
|
- umami-db-data:/var/lib/postgresql/data
|
|
volumes:
|
|
umami-db-data:
|