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
30 Jun 12:57:17 - [info] Server now running at http://127.0.0.1:1880/
60
+
10 Oct 12:57:17 - [info] Starting flows
61
+
10 Oct 12:57:17 - [info] Started flows
62
+
10 Oct 12:57:17 - [info] Server now running at http://127.0.0.1:1880/
65
63
66
64
[...]
67
65
@@ -93,18 +91,18 @@ Using Alpine Linux reduces the built image size, but removes standard dependenci
93
91
94
92
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
93
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.
94
+
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.2.0-10-arm32v7`), and run the container.
97
95
```
98
-
docker run -it -p 1880:1880 --name mynodered nodered/node-red:latest
96
+
docker run -it -p 1880:1880 -v node_red_data:/data --name mynodered nodered/node-red:latest
99
97
```
100
98
101
-
The same command can be used for running on an amd64 system, since Docker discovers it is running on an amd64 host and pulls the image with the matching tag (`1.1.0-10-amd64`).
99
+
The same command can be used for running on an amd64 system, since Docker discovers it is running on an amd64 host and pulls the image with the matching tag (`1.2.0-10-amd64`).
102
100
103
101
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
102
105
103
**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
104
```
107
-
docker run -it -p 1880:1880 --name mynodered nodered/node-red:1.1.0-10-arm32v6
105
+
docker run -it -p 1880:1880 -v node_red_data:/data --name mynodered nodered/node-red:1.2.0-10-arm32v6
the magic here being the `--link` that inserts an entry into the node-red instance
373
371
hosts file called *broker* that links to the external mybroker instance.... but we do
@@ -406,7 +404,7 @@ Disadvantages of the native GPIO support are:
406
404
407
405
To access the host serial port you may need to add the container to the `dialout` group. This can be enabled by adding `--group-add dialout` to the start command. For example
408
406
```
409
-
docker run -it -p 1880:1880 --group-add dialout --name mynodered nodered/node-red
If you want to modify the default timezone, use the TZ environment variable with the [relevant timezone](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones).
448
446
```
449
-
docker run -it -p 1880:1880 --name mynodered -e TZ=Europe/London nodered/node-red
0 commit comments