Files
templates/blueprints/dolibarr/template.toml
Copilot b3e62b447d Add Dolibarr ERP & CRM template (#610)
* Initial plan

* Add Dolibarr ERP & CRM template

Co-authored-by: Siumauricio <47042324+Siumauricio@users.noreply.github.com>

* Update template.toml

* Update blueprints/dolibarr/docker-compose.yml

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: Siumauricio <47042324+Siumauricio@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
2025-12-19 22:29:05 -06:00

24 lines
485 B
TOML

[variables]
main_domain = "${domain}"
db_name = "dolibarr"
db_user = "dolibarr"
db_password = "${password:32}"
db_root_password = "${password:32}"
admin_password = "${password:32}"
[config]
env = [
"DOLIBARR_HOST=${main_domain}",
"DB_NAME=${db_name}",
"DB_USER=${db_user}",
"DB_PASSWORD=${db_password}",
"DB_ROOT_PASSWORD=${db_root_password}",
"ADMIN_PASSWORD=${admin_password}"
]
mounts = []
[[config.domains]]
serviceName = "dolibarr"
port = 80
host = "${main_domain}"