mirror of
https://github.com/Dokploy/templates.git
synced 2026-07-08 07:25:23 +02:00
20 lines
356 B
TOML
20 lines
356 B
TOML
[variables]
|
|
main_domain = "${domain}"
|
|
postgres_password = "${password:32}"
|
|
|
|
[config]
|
|
[[config.domains]]
|
|
serviceName = "budget-board-client"
|
|
port = 6253
|
|
host = "${main_domain}"
|
|
path = "/"
|
|
|
|
|
|
[config.env]
|
|
POSTGRES_PASSWORD = "${postgres_password}"
|
|
|
|
|
|
[[config.mounts]]
|
|
source = "../files/db-data"
|
|
target = "/var/lib/postgresql/data"
|
|
type = "bind" |