Skip to content

Commit 4b4d91d

Browse files
authored
Add v8 image details to docker docs
1 parent a9cfcbc commit 4b4d91d

1 file changed

Lines changed: 11 additions & 1 deletion

File tree

docs/platforms/docker.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ There are many ways you could choose to run Node-RED under Docker. This guide
88
describe some of the ways you can do it.
99

1010
It assumes you have some basic familiarity with Docker and the
11-
[Docker Command Line](https://docs.docker.com/reference/commandline/cli/).
11+
[Docker Command Line](https://docs.docker.com/engine/reference/commandline/cli/).
1212

1313

1414
### Container versions
@@ -24,13 +24,23 @@ standard dependencies that are required for native module compilation. If you
2424
want to add modules with native dependencies, use the standard image or extend
2525
the slim image with the missing packages.
2626

27+
Additional images using a newer Node.js v8 base image are now available with the following tags.
28+
29+
- **latest-v8**
30+
- **slim-v8**
31+
- **rpi-v8**
32+
33+
Node-RED releases are also tagged with a version label, allowing you to fix on a specific version: `latest:X.Y.Z`,
34+
`slim:X.Y.Z`, `rpi:X.Y.Z`.
2735

2836
### Quick start
2937

3038
To run the `latest` container:
3139

3240
docker run -it -p 1880:1880 --name mynodered nodered/node-red-docker
3341

42+
*Note:* on a Raspberry Pi you must use a `rpi`-tagged image: `nodered/node-red-docker:rpi`.
43+
3444
This command will download the `nodered/node-red-docker` container from DockerHub
3545
and run an instance of it with the name of `mynodered` and with port 1880 exposed.
3646
In the terminal window you will see Node-RED start. Once started you can then

0 commit comments

Comments
 (0)