mirror of
https://github.com/umami-software/umami.git
synced 2025-12-06 01:18:00 +01:00
Added support for deployment using podman
This commit is contained in:
parent
38ab685143
commit
05f0e7ba76
5 changed files with 131 additions and 0 deletions
16
podman/env.sample
Normal file
16
podman/env.sample
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
# Rename this file to .env and modify the values
|
||||
#
|
||||
# Connection string for Umami’s database.
|
||||
# If you use the bundled DB container, "db" is the hostname.
|
||||
DATABASE_URL=postgresql://umami:replace-me-with-a-random-string@db:5432/umami
|
||||
|
||||
# Database type (e.g. postgresql)
|
||||
DATABASE_TYPE=postgresql
|
||||
|
||||
# A secret string used by Umami (replace with a strong random string)
|
||||
APP_SECRET=replace-me-with-a-random-string
|
||||
|
||||
# Postgres container defaults.
|
||||
POSTGRES_DB=umami
|
||||
POSTGRES_USER=umami
|
||||
POSTGRES_PASSWORD=replace-me-with-a-random-string
|
||||
Loading…
Add table
Add a link
Reference in a new issue