From 4b8d1f2001985348c21419c5642b31cf8295401f Mon Sep 17 00:00:00 2001 From: Yahya Saqban Date: Fri, 22 May 2026 23:50:22 +0300 Subject: [PATCH] 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 --- docs/user-guide.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/user-guide.md b/docs/user-guide.md index 5f6743fa..c720ac6b 100644 --- a/docs/user-guide.md +++ b/docs/user-guide.md @@ -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 ```