mirror of
https://github.com/Dokploy/templates.git
synced 2026-07-23 14:55:29 +02:00
* Add PodFetch template * Use env array syntax in template.toml * Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> * Address review: match version to image tag, expose admin_username variable, dark-mode friendly logo --------- Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
16 lines
261 B
TOML
16 lines
261 B
TOML
[variables]
|
|
main_domain = "${domain}"
|
|
admin_username = "admin"
|
|
admin_password = "${password:24}"
|
|
|
|
[config]
|
|
env = [
|
|
"USERNAME=${admin_username}",
|
|
"PASSWORD=${admin_password}"
|
|
]
|
|
|
|
[[config.domains]]
|
|
serviceName = "podfetch"
|
|
port = 8000
|
|
host = "${main_domain}"
|