mirror of
https://github.com/Dokploy/templates.git
synced 2026-07-08 15:35:24 +02:00
* 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>
24 lines
485 B
TOML
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}"
|