Skip to content

Commit fa2298a

Browse files
authored
Merge branch 'master' into dev
2 parents 3d18a9b + 24baa1e commit fa2298a

3 files changed

Lines changed: 5 additions & 6 deletions

File tree

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Let's dissect that command:
2828
-p 1880:1880 - connect local port 1880 to the exposed internal port 1880
2929
-v node_red_data:/data - mount the host node_red_data directory to the container /data directory so any changes made to flows are persisted
3030
--name mynodered - give this machine a friendly local name
31-
nodered/node-red - the image to base it on - currently Node-RED v5.0.0-beta.6
31+
nodered/node-red - the image to base it on - currently Node-RED v5.0.0
3232

3333

3434

@@ -136,14 +136,13 @@ The following table shows the provided Manifest Lists.
136136
| latest, latest-24, 5.0.0-24 | nodered/node-red:5.0.0-24 |
137137
| latest-24-minimal, 5.0.0-24-minimal | nodered/node-red:5.0.0.6-24-minimal |
138138

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

143142
Therefore all tags regarding Raspberry PI's are dropped.
144143

145-
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 `5.0.0-24`), and run the container.
146144

145+
For example: suppose you are running on a Raspberry PI 4B, which has `arm64v8` as architecture. Then just run the following command to pull the image (tagged by `5.0.0-24`), and run the container.
147146

148147
```
149148
docker run -it -p 1880:1880 -v node_red_data:/data --name mynodered nodered/node-red:latest

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": "4.1.2",
3+
"version": "4.1.11",
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": "4.1.2"
32+
"node-red": "4.1.11"
3333
},
3434
"engines": {
3535
"node": ">=18"

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": "5.0.0-beta.6"
32+
"node-red": "5.0.0"
3333
},
3434
"engines": {
3535
"node": ">=18"

0 commit comments

Comments
 (0)