Portainer Templates

Nodered

Smarthome

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

Volumes

/data : /portainer/Files/AppData/Config/Nodered

Restart Policy always

Installation

Via Portainer

  1. Ensure both Docker and Portainer are installed, and up-to-date
  2. Log into your Portainer web UI
  3. Under Settings → App Templates, paste the below URL
  4. Head to Home → App Templates, and the list of apps will show up
  5. 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 demo

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

Container Documentation