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.
137
137
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.
138
138
139
139
Therefore all tags regarding Raspberry PI's are dropped.
140
140
141
-
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.3-24`), and run the container.
141
+
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.4-24`), and run the container.
142
142
143
143
144
144
```
@@ -278,7 +278,7 @@ Docker build process, the dependencies are installed under `/usr/src/node-red`.
278
278
The main sections to modify are
279
279
280
280
"dependencies": {
281
-
"node-red": "^5.0.0-beta.3", <-- set the version of Node-RED here
281
+
"node-red": "^5.0.0-beta.4", <-- set the version of Node-RED here
282
282
"node-red-dashboard": "*" <-- add any extra npm packages here
0 commit comments