Can't run docker in esp32 mode #175
Replies: 1 comment
-
|
Thanks for reporting this! The error makes sense — here's what's happening and how to fix it. The ProblemThe Docker image uses an environment variable ( The FixUse the docker run -p 3000:3000 -p 3001:3001 -p 5005:5005/udp \
-e CSI_SOURCE=esp32 \
ruvnet/wifi-densepose:latestAvailable source modes
ESP32 UDP SetupMake sure your ESP32 nodes are sending CSI frames to the Docker host's IP on port 5005. The If you're on Windows with Docker Desktop, the ESP32 should target your machine's LAN IP (not NoteThe docker run -p 3000:3000 -p 3001:3001 -p 5005:5005/udp ruvnet/wifi-densepose:latestand it will auto-detect your ESP32 if it's sending frames. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I pull the latest image according to the guide by using: docker pull ruvnet/wifi-densepose:latest
When I execute the command:
docker run -p 3000:3000 -p 3001:3001 -p 5005:5005/udp ruvnet/wifi-densepose:latest --source esp32
to connect the ESPs, I got the following error.
/bin/sh: 0: Illegal option --
I've tried on both Windows and Linux and got the same result.
Beta Was this translation helpful? Give feedback.
All reactions