@@ -29,6 +29,7 @@ Let's dissect that command:
2929 nodered/node-red - the image to base it on - currently Node-RED v4.0.0
3030
3131
32+
3233Running that command should give a terminal window with a running instance of Node-RED.
3334
3435 Welcome to Node-RED
@@ -115,27 +116,23 @@ The following table shows the variety of provided Node-RED images.
115116| ** Tag** | ** Node** | ** Arch** | ** Python** | ** Dev** | ** Base Image** |
116117| ----------------------------| --------| ----------| ------------| -------| ----------------------------|
117118| 4.0.0-18 | 18 | amd64 | 3.x | yes | amd64/node:18-alpine |
118- | | 18 | arm32v6 | 3.x | yes | arm32v6/node:18-alpine |
119119| | 18 | arm32v7 | 3.x | yes | arm32v7/node:18-alpine |
120120| | 18 | arm64v8 | 3.x | yes | arm64v8/node:18-alpine |
121121| | 18 | i386 | 3.x | yes | i386/node:18-alpine |
122122| | | | | | |
123123| 4.0.0-18-minimal | 18 | amd64 | no | no | amd64/node:18-alpine |
124- | | 18 | arm32v6 | no | no | arm32v6/node:18-alpine |
125124| | 18 | arm32v7 | no | no | arm32v7/node:18-alpine |
126125| | 18 | arm64v8 | no | no | arm64v8/node:18-alpine |
127126| | 18 | i386 | no | no | i386/node:18-alpine |
128127
129128| ** Tag** | ** Node** | ** Arch** | ** Python** | ** Dev** | ** Base Image** |
130129| ----------------------------| --------| ----------| ------------| -------| ----------------------------|
131130| 4.0.0-20 | 20 | amd64 | 3.x | yes | amd64/node:20-alpine |
132- | | 20 | arm32v6 | 3.x | yes | arm32v6/node:20-alpine |
133131| | 20 | arm32v7 | 3.x | yes | arm32v7/node:20-alpine |
134132| | 20 | arm64v8 | 3.x | yes | arm64v8/node:20-alpine |
135133| | 20 | i386 | 3.x | yes | i386/node:20-alpine |
136134| | | | | | |
137135| 4.0.0-20-minimal | 20 | amd64 | no | no | amd64/node:20-alpine |
138- | | 20 | arm32v6 | no | no | arm32v6/node:20-alpine |
139136| | 20 | arm32v7 | no | no | arm32v7/node:20-alpine |
140137| | 20 | arm64v8 | no | no | arm64v8/node:20-alpine |
141138| | 20 | i386 | no | no | i386/node:20-alpine |
@@ -144,18 +141,14 @@ The following table shows the variety of provided Node-RED images.
144141| | 20 | arm32v7 | 3.x | yes | amd64/node:20-buster-slim |
145142| | 20 | arm64v8 | 3.x | yes | amd64/node:20-buster-slim |
146143
147- Coming when NodeJS v22 is released
148-
149144| ** Tag** | ** Node** | ** Arch** | ** Python** | ** Dev** | ** Base Image** |
150145| ----------------------------| --------| ----------| ------------| -------| ----------------------------|
151146| 4.0.0-22 | 22 | amd64 | 3.x | yes | amd64/node:22-alpine |
152- | | 22 | arm32v6 | 3.x | yes | arm32v6/node:22-alpine |
153147| | 22 | arm32v7 | 3.x | yes | arm32v7/node:22-alpine |
154148| | 22 | arm64v8 | 3.x | yes | arm64v8/node:22-alpine |
155149| | 22 | i386 | 3.x | yes | i386/node:22-alpine |
156150| | | | | | |
157151| 4.0.0-22-minimal | 22 | amd64 | no | no | amd64/node:22-alpine |
158- | | 22 | arm32v6 | no | no | arm32v6/node:22-alpine |
159152| | 22 | arm32v7 | no | no | arm32v7/node:22-alpine |
160153| | 22 | arm64v8 | no | no | arm64v8/node:22-alpine |
161154| | 22 | i386 | no | no | i386/node:22-alpine |
@@ -183,11 +176,10 @@ The following table shows the provided Manifest Lists.
183176| | |
184177| latest-18-minimal, 4.0.0-18-minimal | nodered/node-red:4.0.0-18-minimal |
185178
186- Coming when NodeJS v22 released
187179
188180| ** Tag** | ** Node-RED Base Image** |
189181| ----------------------------------------| --------------------------------------------|
190- | latest-18 , 4.0.0-22 | nodered/node-red:4.0.0-22 |
182+ | latest-22 , 4.0.0-22 | nodered/node-red:4.0.0-22 |
191183| | |
192184| latest-22-minimal, 4.0.0-22-minimal | nodered/node-red:4.0.0-22-minimal
193185
@@ -199,6 +191,7 @@ Therefore all tags regarding Raspberry PI's are dropped.
199191
200192For example: suppose you are running on a Raspberry PI 3B, which has ` arm32v7 ` as architecture. Then just run the following command to pull the image (tagged by ` 4.0.0-20 ` ), and run the container.
201193
194+
202195```
203196docker run -it -p 1880:1880 -v node_red_data:/data --name mynodered nodered/node-red:latest
204197```
0 commit comments