mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
- Updated the script to convert 'template.yml' files to 'template.toml' files during directory processing. - Added new 'template.toml' files for Backrest and BlinkO blueprints with appropriate configuration settings.
21 lines
484 B
TOML
21 lines
484 B
TOML
[variables]
|
|
main_domain = "${domain}"
|
|
postgres_password = "${password:16}"
|
|
nextauth_secret = "${password:32}"
|
|
nextauth_url = "http://${main_domain}"
|
|
next_public_base_url = "http://${main_domain}"
|
|
|
|
[config]
|
|
env = [
|
|
"nextauth_secret=${nextauth_secret}",
|
|
"postgres_password=${postgres_password}",
|
|
"nextauth_url=${nextauth_url}",
|
|
"next_public_base_url=${next_public_base_url}",
|
|
]
|
|
mounts = []
|
|
|
|
[[config.domains]]
|
|
serviceName = "blinko-website"
|
|
port = 1_111
|
|
host = "${main_domain}"
|