Files
Pulse/docker-compose.yml
Pulse Monitor 1aadd9dc0a Remove PBS summary card and fix backup chart timezone
- Removed PBS summary card from Dashboard and Backups tabs (not needed)
- Fixed backup frequency chart to use local timezone instead of UTC
- Chart now properly includes today in the date range
- Dates display according to user's browser timezone
2025-08-08 15:30:28 +00:00

23 lines
636 B
YAML

services:
pulse:
image: rcourtman/pulse:latest
container_name: pulse
ports:
- "7655:7655" # Web UI and API
volumes:
- pulse_data:/data
environment:
- TZ=UTC # Set your timezone
# - PUID=1000 # Optional: Set user ID (uncomment and adjust as needed)
# - PGID=1000 # Optional: Set group ID (uncomment and adjust as needed)
restart: unless-stopped
healthcheck:
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:7655"]
interval: 30s
timeout: 10s
retries: 3
start_period: 30s
volumes:
pulse_data:
driver: local