Hi everyone, this is my Docker stack, but I can't connect devices via the HA Companion app(After a while the pairing on my companion responds with "unable to reach the device"). IPv6 is enabled correctly. I tried installing HAOS on another PC and was able to add the devices successfully. I'm probably doing something wrong in the configuration or there are network issues. Can you help me? Thanks!
(Homeassistant run on docker in network: host)
services:
otbr:
container_name: otbr
image: ghcr.io/ownbee/hass-otbr-docker
restart: unless-stopped
privileged: true # don't change this !
network_mode: host # don't change this !
cap_add:
- SYS_ADMIN
- NET_ADMIN
environment:
DEVICE: "/dev/ttyUSB1"
BACKBONE_IF: enp2s0
FLOW_CONTROL: 0
FIREWALL: 1
NAT64: 0
BAUDRATE: 460800
OTBR_REST_PORT: 8081
OTBR_WEB_PORT: 7586
AUTOFLASH_FIRMWARE: 0
OTBR_LOG_LEVEL: 3
devices: - /dev/serial/by-id/usb-SONOFF_SONOFF_Dongle_Plus_MG24_ba97a769c59aef1194b7b29061ce3355-if00-port0:/dev/ttyUSB1
- /dev/net/tun:/dev/net/tun
volumes: - /home/pluto/Containers/openThreadBorderRouter/data:/data/
matter-server:
image: ghcr.io/home-assistant-libs/python-matter-server:stable
container_name: matter-server
restart: unless-stopped
network_mode: host
privileged: true
security_opt:
- apparmor:unconfined
volumes: - /home/pluto/Containers/matter/data:/data/
- /run/dbus:/run/dbus:ro # For bluetooth
- /etc/localtime:/etc/localtime:ro
command: >
--storage-path /data
--paa-root-cert-dir /data/credentials
--bluetooth-adapter 0
--log-level-sdk progress
--primary-interface enp2s0