From ee85a6f597924b0cd41879f5375e8f00d09bbde9 Mon Sep 17 00:00:00 2001 From: raller1028 <57336867+raller1028@users.noreply.github.com> Date: Tue, 18 Jul 2023 10:51:04 +0800 Subject: [PATCH] Update docker-compose.yml (#218) 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. Update Node-Red compose file network_mode --- Apps/Node-RED/docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Apps/Node-RED/docker-compose.yml b/Apps/Node-RED/docker-compose.yml index 2add24c14..714bbd5f9 100644 --- a/Apps/Node-RED/docker-compose.yml +++ b/Apps/Node-RED/docker-compose.yml @@ -6,7 +6,7 @@ services: resources: reservations: memory: 64M - network_mode: bridge + network_mode: host ports: - target: 1880 published: "1880"