Node-RED: Difference between revisions
mNo edit summary |
mNo edit summary |
||
(6 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
== Adding Prerequisites to Docker == | |||
<pre> | |||
FROM nodered/node-red:latest | |||
USER root | |||
RUN apk add py3-pip py3-numpy py3-pandas py3-scikit-learn | |||
RUN pip install tensorflow | |||
USER node-red | |||
</pre> | |||
== DevOps == | |||
* https://www.youtube.com/watch?v=0fwzo4IPaHs | |||
** https://binnes.github.io/Node-RED-container-prod/Packaging-Node-RED-apps-in-containers/index.html | |||
** https://github.com/binnes/Node-RED-Docker | |||
== Terminology == | == Terminology == | ||
=== Flows are the tabs === | === Flows are the tabs === | ||
[[ | [[File:Flow-tabs.png|rand|488x488px]] | ||
=== Nodes are the boxes with inputs and outputs === | === Nodes are the boxes with inputs and outputs === | ||
[[ | [[File:Nodered nodes.png.png|rand|450x450px]] | ||
== Links == | == Links == | ||
* https://www.youtube.com/watch?v=xwLTby6b-IU&list=PLKYvTRORAnx6a9tETvF95o35mykuysuOw | * MySql | ||
** https://www.youtube.com/watch?v=xwLTby6b-IU&list=PLKYvTRORAnx6a9tETvF95o35mykuysuOw | |||
* InfluxDB | |||
** https://www.youtube.com/watch?v=ffg3_1AgtyA | |||
[[Category:Home Automation]] | [[Category:Home Automation]] | ||
[[Category:Programming]] |
Latest revision as of 15:15, 28 September 2024
Adding Prerequisites to Docker
FROM nodered/node-red:latest USER root RUN apk add py3-pip py3-numpy py3-pandas py3-scikit-learn RUN pip install tensorflow USER node-red
DevOps
Terminology
Flows are the tabs
Nodes are the boxes with inputs and outputs