mirror of
https://github.com/Dokploy/templates.git
synced 2026-06-15 20:25:24 +02:00
- Replace MySQL 8.4 with PostgreSQL 17-alpine for better performance - Update environment variables to use POSTGRES_* naming convention - Change health checks to use pg_isready for PostgreSQL compatibility - Update template.toml to reflect new database and configuration structure - Set version to 'latest' in meta.json for continuous updates
25 lines
567 B
TOML
25 lines
567 B
TOML
[variables]
|
|
main_domain = "${domain}"
|
|
postgres_user = "bugsinkuser"
|
|
postgres_password = "${password:32}"
|
|
postgres_db = "bugsink"
|
|
secret_key = "${password:64}"
|
|
superuser = "admin:admin"
|
|
behind_https_proxy = "false"
|
|
|
|
[config]
|
|
|
|
[[config.domains]]
|
|
serviceName = "web"
|
|
port = 8000
|
|
host = "${main_domain}"
|
|
|
|
[config.env]
|
|
POSTGRES_USER = "${postgres_user}"
|
|
POSTGRES_PASSWORD = "${postgres_password}"
|
|
POSTGRES_DB = "${postgres_db}"
|
|
SECRET_KEY = "${secret_key}"
|
|
CREATE_SUPERUSER = "${superuser}"
|
|
BEHIND_HTTPS_PROXY = "${behind_https_proxy}"
|
|
BASE_URL = "https://${main_domain}"
|