Docker Access to Raspberry Pi GPIO Pins

On a Linux host, there are three possible ways to get access to the GPIO pins from within a Docker container. 1. Running Docker with the “–privileged” option Starting a container like this will give the container full access to the host’s devices, including GPIO: $ docker run –privileged -d whatever Check the Docker documentation … Read more

tech