Nodered
Node-RED provides a browser-based flow editor that makes it easy to wire together flows using the wide range of nodes in the palette.
Pulls:
288.0M
Stars:
707
User:
nodered
Created:
Sep 30, 2019
Updated:
7 days ago
Status:
active
Type
Container
Platform
linux
Image
nodered/node-red
Ports
1880:1880/tcp
/data : /portainer/Files/AppData/Config/Nodered
always
Installation
Via Portainer
- Ensure both Docker and Portainer are installed, and up-to-date
- Log into your Portainer web UI
- Under Settings → App Templates, paste the below URL
- Head to Home → App Templates, and the list of apps will show up
- Select the app you wish to deploy, fill in any config options, and hit Deploy
Template Import URL
https://raw.githubusercontent.com/Lissy93/portainer-templates/main/templates.json
Show Me
Via Docker Run
docker run -d \
-p 1880:1880/tcp \
-v /portainer/Files/AppData/Config/Nodered:/data \
--restart=always \
nodered/node-red
Via Docker Compose
Save this file as docker-compose.yml
and run docker-compose up -d
Use this only as a guide.
version: '3.8'
services:
nodered:
image: nodered/node-red
ports:
- 1880:1880:tcp
volumes:
- /portainer/Files/AppData/Config/Nodered:/data
Alternative Methods
For more installation options, see the Documentation in the GitHub repo