docs: add Windows Docker workaround for CLI args

Windows Docker does not pass CLI args directly after the image name.
Added explicit workaround instructions using '--' separator and
entrypoint override.

Fixes #676
This commit is contained in:
Yahya Saqban 2026-05-22 23:50:22 +03:00
parent 68abb385ae
commit 4b8d1f2001
1 changed files with 6 additions and 0 deletions

View File

@ -268,6 +268,12 @@ Uses `netsh wlan` to capture RSSI from nearby access points. No special hardware
./target/release/sensing-server --source wifi --http-port 3000 --ws-port 3001 --tick-ms 500
# Docker (requires --network host on Windows)
# Note: On Windows, Docker does not pass CLI args directly.
# Use either:
# docker run --network host ruvnet/wifi-densepose:latest -- --source wifi --tick-ms 500
# Or set the entrypoint:
# docker run --network host --entrypoint /app/target/release/sensing-server ruvnet/wifi-densepose:latest --source wifi --tick-ms 500
# See https://github.com/ruvnet/RuView/issues/676 for troubleshooting.
docker run --network host ruvnet/wifi-densepose:latest --source wifi --tick-ms 500
```