Docker container can't see a serial port device
问题 I'm trying to run a Docker container with access to a serial port on the host. Here is what I did: I used a Mac Installed drivers on the host (http://www.prolific.com.tw/US/ShowProduct.aspx?p_id=229&pcid=41) Plugged in the device Ran ls /dev/t* that returned /dev/tty.usbserial - so it worked Ran the container, docker run -it --privileged -v /dev:/dev node:4.4.0 /bin/bash , and then ls /dev/t* inside the container which didn't return the /dev/tty.usbserial device... I played a lot with