From 1ca70aa0e0bd9b2115cd2225a18cd44538a17ed6 Mon Sep 17 00:00:00 2001 From: Nirav Patel Date: Mon, 17 Jul 2023 22:49:15 -0400 Subject: [PATCH] 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. --- Apps/Node-RED/appfile.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Apps/Node-RED/appfile.json b/Apps/Node-RED/appfile.json index 75e9735..992f1bf 100644 --- a/Apps/Node-RED/appfile.json +++ b/Apps/Node-RED/appfile.json @@ -32,7 +32,7 @@ "image": "nodered/node-red:2.2.2-12", "shell": "sh", "privileged": false, - "network_model": "bridge", + "network_model": "host", "web_ui": { "http": "1880", "path": "/" @@ -86,4 +86,4 @@ "url": "" }, "latest_update_date": "" -} \ No newline at end of file +}