How to enable emulated hue in docker container?

I’m new to HASS, I’m trying to replace my Homebridge with HASS. I started a new instance of HASS in a container through this command:

docker run -d \
  --name homeassistant \
  --privileged \
  --restart=unless-stopped \
  -e TZ=America/Sao_Paulo \
  -v /root/homeassistant/config:/config \
  --network=host \
  ghcr.io/home-assistant/home-assistant:stable

I’m already able to access through port 8123 and I’ve already managed to configure my lights:

Now I’m trying to integrate the lights into Alexa through Emulated Hue, however any setting I try, the link /description.xml or /api/v2/lights doesn’t work:

# Loads default set of integrations. Do not remove.
default_config:

emulated_hue:
  host_ip: 192.168.1.200
  listen_port: 8123
  expose_by_default: true

# RF Configuration
switch:
  - platform: rpi_rf
    gpio: 17
    switches:
      Quarto:
        code_on: 121230
        code_off: 121231
      Sala:
        code_on: 121241
        code_off: 121240

# Text to speech
tts:
  - platform: google_translate

Have you found the correct method to make this work?

Currently running Home Assistant in a Docker and I cannot get Emulated HUE to work.

Cannot verify that emulated_hue is loaded. ie.`http://:80/description.xml

Have tried various listen port settings.

1 Like