mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-05-13 06:56:06 +00:00
- 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
21 lines
No EOL
479 B
YAML
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 |