Node-RED: Difference between revisions

From Wiki
mNo edit summary
mNo edit summary
 
(2 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 ==
== DevOps ==


Line 8: Line 17:


=== Flows are the tabs ===
=== Flows are the tabs ===
[[Datei:Flow-tabs.png|rand|488x488px]]
[[File:Flow-tabs.png|rand|488x488px]]


=== Nodes are the boxes with inputs and outputs ===
=== Nodes are the boxes with inputs and outputs ===
[[Datei:Nodered nodes.png.png|rand|450x450px]]
[[File:Nodered nodes.png.png|rand|450x450px]]





Latest revision as of 09:20, 8 January 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

rand

Nodes are the boxes with inputs and outputs

rand


Links