nodered/node-red
Low-code programming for event-driven applications
100M+
To run Node-RED in Docker in its simplest form just run:
docker run -it -p 1880:1880 -v myNodeREDdata:/data --name mynodered nodered/node-red
or for the minimal version
docker run -it -p 1880:1880 -v myNodeREDdata:/data --name mynodered nodered/node-red:latest-minimal
The minimal version does not contain build tools or support for projects.
Note: RaspberryPI Zero and 1 users (Arm6 cpu) will need to use the specific tag name to install due to an upstream docker bug in the architecture detection. For example :
docker run -it -p 1880:1880 -v myNodeREDdata:/data --name mynodered nodered/node-red:1.0.1-10-minimal-arm32v6
for the minimal node 10 version.
For more detailed information see our docker guide.
For any questions please use the public Node-RED discourse forum.
For general information about Node-RED please visit the website.
This project is available on github.
docker pull nodered/node-red