Node-RED is a programming tool for combining together APIs, devices, and online services in interesting and new ways.
We provide services to deploy quickly Node-RED applications.
A minimum of 100 MB RAM is required, see our on demand pricing page. You can also use our subscription plan which ensure to provide enough memory for your application.
There are two ways to deploy Node-RED
The easiest way to deploy Node-RED is to login in the adminitration panel, then:
If you need more custom configurations and provide a settings.js file, make sure to install our CLI, then use the following Dockerfile:
FROM nodered/node-red
ENV PORT=80
USER root
COPY settings.js /config/settings.js
The last line with COPY settings.js is only required if you want to use your own settings.js configurations file.