diff --git a/monitoring/pulse/docker-compose.yaml b/monitoring/pulse/docker-compose.yaml new file mode 100644 index 0000000..079517f --- /dev/null +++ b/monitoring/pulse/docker-compose.yaml @@ -0,0 +1,18 @@ +services: + pulse: + image: rcourtman/pulse:latest + container_name: pulse + ports: + - "7655:7655" + volumes: + - pulse_config:/config + - pulse_data:/data + environment: + - PULSE_AUTH_USER= # Username for web UI login + - PULSE_AUTH_PASS= # Plain text or bcrypt hash (auto-hashed if plain) + + restart: unless-stopped + +volumes: + pulse_config: + pulse_data: \ No newline at end of file