You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With the support of Docker manifest list, there is no need to explicitly add the tag for the architecture to use.
140
140
When a docker run command or docker service command or docker stack command is executed, docker checks which architecture is required and verifies if it is available in the docker repository. If it does, docker pulls the matching image for it.
141
141
142
142
Therefore all tags regarding Raspberry PI's are dropped.
143
143
144
144
145
-
For example: suppose you are running on a Raspberry PI 4B, which has `arm64v8` as architecture. Then just run the following command to pull the image (tagged by `5.0.0-24`), and run the container.
145
+
For example: suppose you are running on a Raspberry PI 4B, which has `arm64v8` as architecture. Then just run the following command to pull the image (tagged by `5.0.1-24`), and run the container.
146
146
147
147
```
148
148
docker run -it -p 1880:1880 -v node_red_data:/data --name mynodered nodered/node-red:latest
@@ -281,7 +281,7 @@ Docker build process, the dependencies are installed under `/usr/src/node-red`.
281
281
The main sections to modify are
282
282
283
283
"dependencies": {
284
-
"node-red": "^5.0.0", <-- set the version of Node-RED here
284
+
"node-red": "^5.0.1", <-- set the version of Node-RED here
285
285
"node-red-dashboard": "*" <-- add any extra npm packages here
0 commit comments