Skip to content

Instantly share code, notes, and snippets.

@loopj
Created August 14, 2023 21:07
Show Gist options
  • Save loopj/6f6c2355389cf301391d92cf8b92e4ca to your computer and use it in GitHub Desktop.
Save loopj/6f6c2355389cf301391d92cf8b92e4ca to your computer and use it in GitHub Desktop.
Home Assistant SkyConnect without Home Assistant OS

Open Thread Border Router

version: '3'
services:
  otbr:
    image: openthread/otbr
    container_name: otbr
    ports:
      - '8080:80'
    dns:
      - 127.0.0.1
    volumes:
      - '/dev/ttyUSB0:/dev/ttyUSB0'
    privileged: true
    sysctls:
      - net.ipv6.conf.all.disable_ipv6=0
      - net.ipv4.conf.all.forwarding=1
      - net.ipv6.conf.all.forwarding=1
    command:
      --radio-url spinel+hdlc+uart:///dev/ttyUSB0?uart-baudrate=460800&uart-flow-control
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment