mirror of
https://github.com/Dokploy/templates.git
synced 2026-04-29 20:37:57 -05:00
Added a complete Zabbix 7.4 blueprint including Docker Compose setup for PostgreSQL, server, web interface, SNMP traps, and Java gateway; configuration template for environment variables; logo image; and metadata entry for easy deployment and monitoring capabilities.
17 lines
345 B
TOML
17 lines
345 B
TOML
[variables]
|
|
main_domain = "${domain}"
|
|
postgres_password = "${password:32}"
|
|
|
|
[config]
|
|
|
|
[[config.domains]]
|
|
serviceName = "zabbix-web-nginx-pgsql"
|
|
port = 8080
|
|
host = "${main_domain}"
|
|
|
|
[config.env]
|
|
POSTGRES_DB = "zabbix"
|
|
POSTGRES_USER = "zabbix"
|
|
POSTGRES_PASSWORD = "${postgres_password}"
|
|
PHP_TZ = "UTC"
|
|
ZBX_SERVER_NAME = "Dokploy Zabbix Monitoring" |