Skip to content

Instantly share code, notes, and snippets.

@thomasvnl
Last active September 26, 2021 13:10
Show Gist options
  • Save thomasvnl/328f510de476a8c2b973446fb9dcd4c1 to your computer and use it in GitHub Desktop.
Save thomasvnl/328f510de476a8c2b973446fb9dcd4c1 to your computer and use it in GitHub Desktop.
Dockerfile for NodeRED with dialout group permission so it can access COM/(USB)tty devices on the host (like the ConBee USB stick, or RFLink)
FROM nodered/node-red
USER root
RUN addgroup node-red dialout
USER node-red
docker image build -t noderedwithdialout .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment