From aca014abccd575bb76b4001767dabe0e1e1549d2 Mon Sep 17 00:00:00 2001 From: Hermes Agent Date: Sat, 23 May 2026 19:19:35 +0000 Subject: [PATCH 1/2] docs: add Windows Docker CLI argument note --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index d15a71f4..1fc5d4de 100644 --- a/README.md +++ b/README.md @@ -589,3 +589,11 @@ MIT License — see [LICENSE](LICENSE) for details. --- **WiFi DensePose** — Privacy-preserving human pose estimation through WiFi signals. + +## Windows Note + +If running on Windows with Docker Desktop, pass CLI arguments differently: +``` +docker run -p 3000:3000 ruvnet/wifi-densepose:latest -- --help +``` +On Windows, use `--` to pass arguments through the Docker container to the binary inside. From 4c823ebb1d3b1ee463ce30a6b744c75b413b8517 Mon Sep 17 00:00:00 2001 From: Hermes Agent Date: Sat, 23 May 2026 21:30:09 +0000 Subject: [PATCH 2/2] docs: clarify docker run flags for first-time users - Add 'may take a minute' note on pull to set expectations - Add -it hint for interactive use - Document fallback port suggestion when 3000 is occupied --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1fc5d4de..42b6d355 100644 --- a/README.md +++ b/README.md @@ -76,8 +76,8 @@ RuView turns ordinary WiFi into a contactless sensor. A $9 ESP32 board reads the ```bash # Option 1: Docker (simulated data, no hardware needed) -docker pull ruvnet/wifi-densepose:latest -docker run -p 3000:3000 ruvnet/wifi-densepose:latest +docker pull ruvnet/wifi-densepose:latest # may take a minute +docker run -p 3000:3000 ruvnet/wifi-densepose:latest # use -it for interactive; if port 3000 is taken, try -p 3001:3000 # Open http://localhost:3000 # Option 2: Live sensing with ESP32-S3 hardware ($9)