Febin K G
Febin K G

Reputation: 93

Mounting USB volume in Docker Toolbox for Windows

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

Answers (1)

Tiago Dias
Tiago Dias

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

Related Questions