Renamed all docker-compose files to podman-compose
Just because I can
This commit is contained in:
parent
d546922e1e
commit
a55c7b1f99
19 changed files with 18 additions and 2 deletions
21
umami/podman-compose.toml
Normal file
21
umami/podman-compose.toml
Normal file
|
@ -0,0 +1,21 @@
|
|||
[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}"
|
||||
TRACKER_SCRIPT_NAME = "ua9quuaW"
|
||||
|
||||
[services.umami.logging.options]
|
||||
max-size = "10m"
|
||||
max-file = "10"
|
||||
|
||||
[networks.postgres]
|
||||
external = true
|
||||
|
||||
[networks.proxy]
|
||||
external = true
|
Reference in a new issue