Skip to content

Commit 4d7acab

Browse files
author
Dave Conway-Jones
committed
Fix version to say 12 is supported
correct arm versions in docker doc
1 parent c99396d commit 4d7acab

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

docs/faq/node-versions.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ slug: node versions
77

88
Node-RED currently recommends **Node 10.x LTS**.
99

10-
Version | Support Level |
11-
--------|---------------|
10+
Version | Support Level | Notes
11+
--------|---------------|------
1212
< 7.x | *Unsupported* |
13-
**8.x** | **Supported** |
13+
**8.x** | **Supported** | going End of Life December 31st 2019
1414
9.x | *Unsupported* |
1515
**10.x** | **Recommended** |
1616
11.x | *Unsupported* |
17-
12.x | Tentative |
17+
12.x | **Supported** |
1818

1919

2020
We try to stay up to date with Node.js releases. Our goal is to support

docs/getting-started/docker.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ Using Alpine Linux reduces the built image size, but removes standard dependenci
9393

9494
See the [Github project README](https://github.com/node-red/node-red-docker/blob/master/README.md) for detailed Image, Tag and Manifest information.
9595

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.0.2-10-arm32v7`), and run the container.
9797
```
9898
docker run -it -p 1880:1880 --name mynodered nodered/node-red:latest
9999
```
@@ -102,7 +102,7 @@ The same command can be used for running on an amd64 system, since Docker discov
102102

103103
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.
104104

105-
**Note**: Currently there is a bug in Docker's architecture detection that fails for Arm6 CPU - eg Raspberry Pi Zero or 1. For these devices you currently need to specify the full build label, for example:
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:
106106
```
107107
docker run -it -p 1880:1880 --name mynodered nodered/node-red:1.0.2-10-arm32v6
108108
```

0 commit comments

Comments
 (0)