Files
pulse/docker-compose.yml
T
Pulse Monitor 1864baeabc Fix Docker configuration and test deployment
- Docker build tested and working
- Fixed port configuration (UI and API both on port 3000)
- Updated docker-compose.yml to map 7655:3000
- Updated Dockerfile health check to use correct port
- Removed obsolete version field from docker-compose.yml
- Updated README to reflect correct port mappings
- Application successfully tested in Docker container
2025-08-03 20:14:41 +00:00

24 lines
545 B
YAML

services:
pulse:
image: rcourtman/pulse:latest
container_name: pulse
ports:
- "7655:3000" # Web UI and API
volumes:
- pulse_config:/etc/pulse
- pulse_data:/data
environment:
- TZ=UTC # Set your timezone
restart: unless-stopped
healthcheck:
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:3000"]
interval: 30s
timeout: 10s
retries: 3
start_period: 30s
volumes:
pulse_config:
driver: local
pulse_data:
driver: local