mirror of
https://github.com/Dokploy/templates.git
synced 2026-07-08 23:45:24 +02:00
* Adding Windshift for Dokploy * Added up-to-date version and better tags * Updated logo with less transparency * Update docker-compose.yml with latest version Signed-off-by: Stefan Ernst <ernst.stefan@icloud.com> --------- Signed-off-by: Stefan Ernst <ernst.stefan@icloud.com>
20 lines
360 B
TOML
20 lines
360 B
TOML
[variables]
|
|
main_domain = "${domain}"
|
|
sso_secret = "${hash:64}"
|
|
db_password = "${password:32}"
|
|
|
|
[config]
|
|
env = [
|
|
"DOMAIN=${main_domain}",
|
|
"SSO_SECRET=${sso_secret}",
|
|
"POSTGRES_USER=windshift",
|
|
"POSTGRES_PASSWORD=${db_password}",
|
|
"POSTGRES_DB=windshift",
|
|
]
|
|
mounts = []
|
|
|
|
[[config.domains]]
|
|
serviceName = "windshift"
|
|
port = 8080
|
|
host = "${main_domain}"
|