Reputation: 93
In Ubuntu, I can mount a USB volume with the command
docker run --privileged /dev/bus/usb/:/dev/bus/usb/ -d docker-image-name
What would be its equivalent line using Docker Toolbox for Windows ?
Upvotes: 2
Views: 291
Reputation: 585
I have this same exact question. Currently using --privileged -v /dev/bus/usb:/dev/bus/usb yields a "runtime error: invalid memory address or nil pointer dereference" error in the app when trying to use the USB
Upvotes: 1