Hello everybody,
I’m using HASS via Docker.
I recently removed network_mode: host
from my HASS docker compose file.
After that alexa stopped finding new devices over emulated_hue.
Somebody knows which ports or settings are necessary to use the alexa device discovery with emulated_hue?
Devices which where already added are still controlable.
So I think the problem is with the advertise_port.
This is my compose:
services:
hass:
container_name: hass
image: ghcr.io/home-assistant/home-assistant:stable
volumes:
- ./config:/config
- /etc/localtime:/etc/localtime:ro
restart: unless-stopped
devices:
- /dev/ttyUSB0:/dev/ttyUSB0
environment:
- TZ=Europe/Berlin
ports:
- 80:80 # emulated_hue listen_port
- 1900:1900/udp # emulated_hue advertise_port
And this is my emulated_hue config:
emulated_hue:
listen_port: 80
advertise_port: 1900
expose_by_default: false
entities:
[...]
Thanks in advance