Files
templates/blueprints/pulse/docker-compose.yml
Naim Hasim e00f7c0c5e feat: Add Pulse monitoring template (#617)
* 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>
2026-02-15 19:30:14 -06:00

22 lines
526 B
YAML

version: "3.8"
services:
pulse:
image: rcourtman/pulse:5.1
restart: always
expose:
- 7655
volumes:
- pulse_data:/data
- /var/run/docker.sock:/var/run/docker.sock
environment:
- PULSE_AUTH_USER=${PULSE_AUTH_USER}
- PULSE_AUTH_PASS=${PULSE_AUTH_PASS}
healthcheck:
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:7655/api/health"]
interval: 30s
timeout: 10s
retries: 3
start_period: 40s
volumes:
pulse_data: