Changed Node-Red network mode to host (#215)

Node red does not work well when it is on bridge mode with other tools
such as HomeBridge and HomeAssistant. Running it on host mode solves
problem. The other alternative is to have both on same network but this
one is better since homebridge asks host mode specifically which is one
of the main integration which people use with Node-Red.
This commit is contained in:
Nirav Patel 2023-07-17 22:49:15 -04:00 committed by GitHub
parent a8485cb343
commit 1ca70aa0e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@
"image": "nodered/node-red:2.2.2-12", "image": "nodered/node-red:2.2.2-12",
"shell": "sh", "shell": "sh",
"privileged": false, "privileged": false,
"network_model": "bridge", "network_model": "host",
"web_ui": { "web_ui": {
"http": "1880", "http": "1880",
"path": "/" "path": "/"
@ -86,4 +86,4 @@
"url": "" "url": ""
}, },
"latest_update_date": "" "latest_update_date": ""
} }