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 move to docker buildx there are no seperate tags for each
arch anymore so remove the references from the README.
Also the bug with detecting arm32v6 for Pi Zero appears to be fixed
also removed that section.
With the support of Docker manifest list, there is no need to explicitly add the tag for the architecture to use.
185
170
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.
186
171
187
172
Therefore all tags regarding Raspberry PI's are dropped.
188
173
189
-
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 `2.0.6-13-arm32v7`), and run the container.
174
+
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 `2.0.6-14`), and run the container.
190
175
```
191
176
docker run -it -p 1880:1880 -v node_red_data:/data --name mynodered nodered/node-red:latest
192
177
```
@@ -195,11 +180,6 @@ The same command can be used for running on an amd64 system, since docker discov
195
180
196
181
This gives the advantage that you don't need to know/specify which architecture you are running on and makes docker run commands and docker compose files more flexible and exchangeable across systems.
197
182
198
-
**Note**: Currently there is a bug in Docker's architecture detection that fails for `arm32v6` - eg Raspberry Pi Zero or 1. For these devices you currently need to specify the full image tag, for example:
199
-
```
200
-
docker run -it -p 1880:1880 -v node_red_data:/data --name mynodered nodered/node-red:2.0.6-13-minimal-arm32v6
201
-
202
-
```
203
183
204
184
## Raspberry PI - native GPIO support
205
185
| v1.0 - BREAKING: Native GPIO support for Raspberry PI has been dropped |
0 commit comments