mirror of
https://github.com/Dokploy/templates.git
synced 2026-06-27 01:55:25 +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>
22 lines
526 B
YAML
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: |