docs: fix Docker socket mount path for standalone sensor proxy

The standalone installer creates the socket at /mnt/pulse-proxy on the host,
not /run/pulse-sensor-proxy. Updated documentation to show the correct mount:
  /mnt/pulse-proxy:/run/pulse-sensor-proxy:ro

Related to #822
This commit is contained in:
rcourtman 2025-12-15 02:08:15 +00:00
parent 3b4c77de28
commit 5609f5a6af

View file

@ -30,8 +30,9 @@ If running Pulse in Docker, you must install the proxy on the host and share the
Add the socket volume to your Pulse service:
```yaml
volumes:
- /run/pulse-sensor-proxy:/run/pulse-sensor-proxy:ro
- /mnt/pulse-proxy:/run/pulse-sensor-proxy:ro
```
> **Note**: The standalone installer creates the socket at `/mnt/pulse-proxy` on the host. Map it to `/run/pulse-sensor-proxy` inside the container.
3. **Restart Pulse**: `docker compose up -d`