dockerfiles/node-red
kev 8d7331807e update 2021-12-09 18:11:29 +08:00
..
arm update 2020-02-09 19:56:46 +08:00
Dockerfile update node-red 2020-04-29 18:54:08 +08:00
README.md update 2021-12-09 18:11:29 +08:00
docker-compose.yml update node-red 2019-03-13 13:38:16 +08:00
screenshot.png add new screenshot.png 2016-08-22 14:11:25 +08:00

node-red

⚠️ THIS PROJECT WAS MOVED TO: https://github.com/EasyPi/docker-node-red

Node-RED is a tool for wiring together hardware devices, APIs and online services in new and interesting ways.

directory tree

The data directory will be created after first running.

~./node-red/
├── docker-compose.yml
└── data/
    ├── flows_cred.json
    ├── flows.json
    ├── lib/
    │   └── flows
    └── settings.js

The arm directory is only needed for ARM deployments, delete it if you are not using arm.

docker-compose.yml

node-red:
  image: vimagick/node-red
  ports:
    - "1880:1880"
  volumes:
    - ./data:/data
  restart: always

set-up

Copy only the docker-compose.yml to your desired installation folder. And follow these steps:

$ docker-compose up -d

$ docker-compose exec node-red node-red-admin hash-pw
>>> Password: ******
... $2a$08$zZWtXTja0fB1pzD4sHCMyOCMYz2Z6dNbM6tl8sJogENOMcxWV9DN.

# Uncomment the adminAuth section and add your hashed password
$ sudo vi data/settings.js

$ docker-compose exec node-red bash
>>> cd /data
>>> apk add -U build-base
>>> npm install node-red-node-irc
>>> npm install node-red-node-daemon
>>> exit

$ docker-compose restart

Install nodes from node-red-nodes.

settings.js

module.exports = {
...
    adminAuth: {
        type: "credentials",
        users: [{
            username: "admin",
            password: "ADD_HERE_YOUR_HASH_PASSWORD",
            permissions: "*"
        }],
        default: {
            permissions: "read"
        }
    },
...
}

Password hash can be generated by running node-red-admin hash-pw https://nodered.org/docs/security