mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
- Introduced Docker Compose setup for BabyBuddy service, including environment variables and volume configuration. - Added logo for BabyBuddy. - Created template.toml for BabyBuddy with default variables for configuration.
15 lines
286 B
TOML
15 lines
286 B
TOML
[variables]
|
|
main_domain = "${domain}"
|
|
secret_key = "${password:32}"
|
|
time_zone = "America/New_York"
|
|
|
|
[config]
|
|
[[config.domains]]
|
|
serviceName = "babybuddy"
|
|
port = 8000
|
|
host = "${main_domain}"
|
|
|
|
[config.env]
|
|
DOMAIN = "${main_domain}"
|
|
SECRET_KEY = "${secret_key}"
|
|
TIME_ZONE = "${time_zone}" |