I have previous attempts of Home Assistant where HA would NOT detect various IoT devices that broadcast their availability. The problem in that scenario was that docker does not pass the IoT broadcast messages on through the bubble.
The only method to get HA to work with IoT devices was to install HA in docker in host networking mode which made the container appear on the host network as if directly attached.
I am assuming that Node-RED is the same way and that it won't detect my IoT device broadcasts unless I install it in host networking mode.
Sounds pretty straight forward.... but node-red no longer responds on port 1880 when I have it in host mode.
I just commented out the port section of the compose file and made it host mode instead. This should be a no-brainer.
Anyone know what I am doing wrong?
version: "3.7"
services:
node-red:
image: nodered/node-red:latest
environment:
- TZ="America/New_York"
network_mode: host
volumes:
- node-red-data:/data
volumes:
node-red-data: