mirror of
https://github.com/Dokploy/templates.git
synced 2026-07-04 05:25:22 +02:00
* feat: add wuzapi template * chore: remove temporary meta_entry.json * fix(wuzapi): remove explicit networks and simplify depends_on for Dokploy compatibility * fix(wuzapi): remove invalid config.mounts from template.toml * Update Docker images for wuzapi and PostgreSQL fixed the version of the wuzapi docker image.
21 lines
447 B
TOML
21 lines
447 B
TOML
[variables]
|
|
main_domain = "${domain}"
|
|
admin_token = "${password:32}"
|
|
encryption_key = "${password:32}"
|
|
db_user = "wuzapi"
|
|
db_password = "${password:32}"
|
|
db_name = "wuzapi"
|
|
|
|
[config]
|
|
[[config.domains]]
|
|
serviceName = "wuzapi-server"
|
|
port = 8080
|
|
host = "${main_domain}"
|
|
|
|
[config.env]
|
|
WUZAPI_ADMIN_TOKEN = "${admin_token}"
|
|
WUZAPI_GLOBAL_ENCRYPTION_KEY = "${encryption_key}"
|
|
DB_USER = "${db_user}"
|
|
DB_PASSWORD = "${db_password}"
|
|
DB_NAME = "${db_name}"
|