mirror of
https://git.korhonen.cc/FunctionalHacker/dotfiles.git
synced 2024-11-18 21:27:42 +00:00
21 lines
445 B
TOML
21 lines
445 B
TOML
[services.umami]
|
|
image = "ghcr.io/umami-software/umami:postgresql-latest"
|
|
container_name = "umami"
|
|
restart = "unless-stopped"
|
|
networks = ["postgres", "proxy"]
|
|
env_file = ".env"
|
|
|
|
[services.umami.environment]
|
|
DATABASE_URL = "postgresql://umami:${POSTGRES_PASS}@postgres:5432/umami"
|
|
HASH_SALT = "${HASH_SALT}"
|
|
|
|
[services.umami.logging.options]
|
|
max-size = "10m"
|
|
max-file = "10"
|
|
|
|
[networks.postgres]
|
|
external = true
|
|
|
|
[networks.proxy]
|
|
external = true
|