roomauto:howto_integrate_second_otbr_into_homeassistant

This is an old revision of the document!


#homeassistant #otbr #zigbee2mqtt #raspi #docker

services:
    zigbee2mqtt:
        container_name: zigbee2mqtt
        image: ghcr.io/koenkk/zigbee2mqtt
        restart: unless-stopped
        volumes:
            - /srv/zigbee2mqtt/data/:/app/data
            - /run/udev:/run/udev:ro
        ports:
            # Frontend port
            - 8485:8080
        environment:
            - TZ=Europe/Berlin
        devices:
            - /dev/serial/by-id/usb-SONOFF_<Dongel you with to use for ZigBee>-port0:/dev/ttyUSBzb
    otbr:
        image: denniswitt/homeassistant-otbr:latest
        container_name: openthread-border-router
        restart: unless-stopped
        privileged: true
        network_mode: host
        environment:
            - DEVICE=/dev/ttyUSBth
            - BACKBONE_IF=eth0
            - BAUDRATE=460800
            - FLOW_CONTROL=0
            - BETA=0
            - AUTOFLASH_FIRMWARE=0
        devices:
          - /dev/serial/by-id/usb-SONOFF_<Dongle you with to use for Thread>-port0:/dev/ttyUSBth
        cap_add:
            - NET_ADMIN
            - NET_RAW
  • /srv/dokuwiki/data/attic/roomauto/howto_integrate_second_otbr_into_homeassistant.1772215707.txt.gz
  • Last modified: 2026-02-27 18:08
  • by xro