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
03 Jun 12:57:17 - [info] Server now running at http://127.0.0.1:1880/
62
+
30 Jun 12:57:17 - [info] Starting flows
63
+
30 Jun 12:57:17 - [info] Started flows
64
+
30 Jun 12:57:17 - [info] Server now running at http://127.0.0.1:1880/
65
65
66
66
[...]
67
67
@@ -93,18 +93,18 @@ Using Alpine Linux reduces the built image size, but removes standard dependenci
93
93
94
94
See the [Github project README](https://github.com/node-red/node-red-docker/blob/master/README.md) for detailed Image, Tag and Manifest information.
95
95
96
-
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 `1.0.2-10-arm32v7`), and run the container.
96
+
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 `1.1.0-10-arm32v7`), and run the container.
97
97
```
98
98
docker run -it -p 1880:1880 --name mynodered nodered/node-red:latest
99
99
```
100
100
101
-
The same command can be used for running on an amd64 system, since Docker discovers it is running on a amd64 host and pulls the image with the matching tag (`1.0.2-10-amd64`).
101
+
The same command can be used for running on an amd64 system, since Docker discovers it is running on a amd64 host and pulls the image with the matching tag (`1.1.0-10-amd64`).
102
102
103
103
This has 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.
104
104
105
105
**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:
106
106
```
107
-
docker run -it -p 1880:1880 --name mynodered nodered/node-red:1.0.2-10-arm32v6
107
+
docker run -it -p 1880:1880 --name mynodered nodered/node-red:1.1.0-10-arm32v6
0 commit comments