mirror of
https://github.com/Dokploy/templates.git
synced 2026-07-08 15:35:24 +02:00
* feat: Add Pulse monitoring template - Add docker-compose.yml with healthcheck and Docker socket access - Add template.toml with domain and authentication variables - Add pulse.svg logo - Add meta.json entry with monitoring, proxmox, docker tags - Supports Proxmox VE, PBS, and Docker monitoring with real-time metrics * fix: Update Pulse docs link to GitHub repository - Replace non-existent docs.pulse.rcourtman.com with GitHub docs path - Use canonical documentation location in Pulse repository * update pulse links * Update blueprints/pulse/docker-compose.yml --------- Co-authored-by: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com>
13 lines
288 B
TOML
13 lines
288 B
TOML
[variables]
|
|
main_domain = "${domain}"
|
|
pulse_auth_user = "${username}"
|
|
pulse_auth_pass = "${password:32}"
|
|
|
|
[config]
|
|
env = ["PULSE_AUTH_USER=${pulse_auth_user}", "PULSE_AUTH_PASS=${pulse_auth_pass}"]
|
|
mounts = []
|
|
|
|
[[config.domains]]
|
|
serviceName = "pulse"
|
|
port = 7_655
|
|
host = "${main_domain}" |