mirror of
https://github.com/Dokploy/templates.git
synced 2026-07-17 20:05:25 +02:00
25 lines
578 B
TOML
25 lines
578 B
TOML
[variables]
|
|
main_domain = "${domain}"
|
|
oneuptime_version = "release"
|
|
database_password = "${password:32}"
|
|
redis_password = "${password:32}"
|
|
clickhouse_password = "${password:32}"
|
|
encryption_secret = "${password:64}"
|
|
|
|
|
|
[config]
|
|
env = [
|
|
"ONEUPTIME_HOST=${main_domain}",
|
|
"ONEUPTIME_VERSION=${oneuptime_version}",
|
|
"DATABASE_PASSWORD=${database_password}",
|
|
"REDIS_PASSWORD=${redis_password}",
|
|
"CLICKHOUSE_PASSWORD=${clickhouse_password}",
|
|
"ENCRYPTION_SECRET=${encryption_secret}",
|
|
]
|
|
mounts = []
|
|
|
|
[[config.domains]]
|
|
serviceName = "home"
|
|
port = 3002
|
|
host = "${main_domain}"
|