mirror of
https://github.com/Dokploy/templates.git
synced 2026-06-15 20:25:24 +02:00
- Add docker-compose.yml for containerized deployment with health checks and environment variables - Include template.toml with configuration variables, domain settings, and mount points - Add upsnap.svg icon for the service visualization This commit introduces a complete blueprint to simplify deployment of the Upsnap network monitoring tool using Docker.
24 lines
456 B
TOML
24 lines
456 B
TOML
[variables]
|
|
main_domain = "${domain}"
|
|
upsnap_password = "${password:32}"
|
|
|
|
[config]
|
|
|
|
[[config.domains]]
|
|
serviceName = "upsnap"
|
|
port = 8090
|
|
host = "${main_domain}"
|
|
path = "/"
|
|
|
|
[config.env]
|
|
TZ = "Europe/Berlin"
|
|
UPSNAP_INTERVAL = "*/10 * * * * *"
|
|
UPSNAP_SCAN_RANGE = "192.168.1.0/24"
|
|
UPSNAP_SCAN_TIMEOUT = "500ms"
|
|
UPSNAP_PING_PRIVILEGED = "true"
|
|
UPSNAP_WEBSITE_TITLE = "Upsnap Network Monitor"
|
|
|
|
[[config.mounts]]
|
|
source = "upsnap-data"
|
|
target = "/app/pb_data"
|