Skip to content

Commit ef69ebf

Browse files
authored
Merge branch 'master' into dev
2 parents d4a6c9e + 3b0329a commit ef69ebf

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,6 @@ The following table shows the variety of provided Node-RED images.
159159
| | 18 | arm64v8 | no | no | arm64v8/node:18-alpine |
160160
| | 18 | s390x | no | no | s390x/node:18-alpine |
161161
| | 18 | i386 | no | no | i386/node:18-alpine |
162-
163162
- All images have bash, tzdata, nano, curl, git, openssl and openssh-client pre-installed to support Node-RED's Projects feature.
164163

165164
## Manifest Lists
@@ -185,16 +184,17 @@ The following table shows the provided Manifest Lists.
185184
|----------------------------------------|--------------------------------------------|
186185
| latest-18, 3.0.0-18 | nodered/node-red:3.0.0-18 |
187186
| | |
188-
| latest-18-minimal, 3.0.0-18-minimal | nodered/node-red:3.0.0-18-minimal |
189-
187+
| latest-18-minimal, 3.0.0-18-minimal | nodered/node-red:3.0.0-18-minimal
190188

191189

192190
With the support of Docker manifest list, there is no need to explicitly add the tag for the architecture to use.
193191
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.
194192

195193
Therefore all tags regarding Raspberry PI's are dropped.
196194

195+
197196
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 `3.0.0-16`), and run the container.
197+
198198
```
199199
docker run -it -p 1880:1880 -v node_red_data:/data --name mynodered nodered/node-red:latest
200200
```

docker-custom/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "node-red-docker",
3-
"version": "3.0.0-beta.4",
3+
"version": "3.0.0",
44
"description": "Low-code programming for event-driven applications",
55
"homepage": "http://nodered.org",
66
"license": "Apache-2.0",
@@ -29,7 +29,7 @@
2929
}
3030
],
3131
"dependencies": {
32-
"node-red": "3.0.0-beta.4"
32+
"node-red": "3.0.0"
3333
},
3434
"engines": {
3535
"node": ">=12"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
}
3030
],
3131
"dependencies": {
32-
"node-red": "3.0.0-beta.4"
32+
"node-red": "3.0.0"
3333
},
3434
"engines": {
3535
"node": ">=12"

0 commit comments

Comments
 (0)