Files
pulse/docker-compose.yml
T
pulse-triage[bot] c8f19c1dbc chore(release): prepare repaired v6.4.4-beta.2
Freeze the protected notification recovery repair as the next beta checkpoint and align version pins, tester notes, rollback guidance, and the zero-capture visual plan.

Contract-Neutral: release preparation changes version and delivery metadata only; product runtime and public API behavior remain the reviewed release-line checkpoint.
Change-source: pulse-maintainer
(cherry picked from commit 9a1f44d7c8a3e7757f5f3f3a1f8016997f04fc72)
2026-09-09 14:41:55 +01:00

31 lines
850 B
YAML

version: '3.8'
services:
pulse:
image: ${PULSE_IMAGE:-rcourtman/pulse:6.4.4-beta.2}
container_name: pulse
restart: unless-stopped
logging:
driver: json-file
options:
max-size: "10m"
max-file: "3"
ports:
- "${PULSE_PORT:-7655}:7655"
volumes:
- pulse-data:/data
# Temperature monitoring: install pulse-agent on each Proxmox host with --enable-proxmox, or use SSH (see docs/TEMPERATURE_MONITORING.md).
environment:
- TZ=${TZ:-UTC}
- PULSE_DEPLOYMENT_METHOD=docker_compose
healthcheck:
test: ["CMD-SHELL", "[ -x /docker-healthcheck.sh ] && /docker-healthcheck.sh || wget --quiet --tries=1 --spider http://localhost:7655/api/health"]
interval: 30s
timeout: 10s
retries: 3
start_period: 10s
volumes:
pulse-data:
driver: local