Node-RED integration: Give Docker container access to USB ports

Hello @pierre-gilles,

I’ve resumed my tests to open the USB ports so that the RFLink can connect to Node-RED.
Here is a docker run that works. When you have a bit of time, could you check if this suits you and build me a Gladys-Node-RED image with this Docker integrated? Thanks in advance and happy holidays.

docker run -d \
  --name gladys-node-red \
  --restart always \
  --network host \
  --privileged \
  -e "PORT=1881" \
  --group-add dialout \
  -v /dev:/dev \
  -v /var/lib/gladysassistant/node-red:/data \
  --log-opt max-size=10m \
  nodered/node-red:3.1
1 Like