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:
parent
a8485cb343
commit
1ca70aa0e0
|
@ -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": ""
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue