mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-09-21 18:53:37 +00:00
1864baeabc
- 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
24 lines
545 B
YAML
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 |