mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
- Introduced Docker Compose setup for automatisch service, including web, worker, PostgreSQL, and Redis components with environment variables and volume configuration. - Added logo for automatisch. - Created template.toml for automatisch with default variables for configuration.
20 lines
503 B
TOML
20 lines
503 B
TOML
[variables]
|
|
main_domain = "${domain}"
|
|
db_password = "${password:16}"
|
|
redis_password = "${password:16}"
|
|
encryption_key = "${password:32}"
|
|
webhook_secret_key = "${password:32}"
|
|
app_secret_key = "${password:32}"
|
|
|
|
[config]
|
|
[[config.domains]]
|
|
serviceName = "automatisch"
|
|
port = 3000
|
|
host = "${main_domain}"
|
|
|
|
[config.env]
|
|
DB_PASSWORD = "${db_password}"
|
|
REDIS_PASSWORD = "${redis_password}"
|
|
ENCRYPTION_KEY = "${encryption_key}"
|
|
WEBHOOK_SECRET_KEY = "${webhook_secret_key}"
|
|
APP_SECRET_KEY = "${app_secret_key}" |