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.
143
143
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.
144
144
145
145
Therefore all tags regarding Raspberry PI's are dropped.
146
146
147
-
For 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 `5.0.0-beta.0-24`), and run the container.
147
+
For 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 `5.0.0-beta.1-24`), and run the container.
148
148
149
149
150
150
```
@@ -284,7 +284,7 @@ Docker build process, the dependencies are installed under `/usr/src/node-red`.
284
284
The main sections to modify are
285
285
286
286
"dependencies": {
287
-
"node-red": "^5.0.0-beta.0", <-- set the version of Node-RED here
287
+
"node-red": "^5.0.0-beta.1", <-- set the version of Node-RED here
288
288
"node-red-dashboard": "*" <-- add any extra npm packages here
0 commit comments