Pulse/docker-compose.yml
Pulse Monitor 8d8ae65028 fix: correct Docker compose port mapping and remove unnecessary config volume (#249)
- Fix port mapping from 7655:3000 to 7655:7655
- Fix healthcheck to use correct port 7655
- Remove pulse_config volume as it's not needed in v4
- All configuration is stored in /data directory
2025-08-05 20:29:48 +00:00

21 lines
No EOL
479 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
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