#OpenThread router podman

1 messages · Page 1 of 1 (latest)

late sage
#

Hello, I'm trying to setup an OpenThread router over podman using an tcp device. it works with the addon but since I can't see the docker configuration behind, I don't know what makes it work, with the podman compose it doesn't work. my main home assistant is container based to save resources. the compose:

services:
openthread:
image: docker.io/openthread/border-router:latest
container_name: openthread
network_mode: host
privileged: true
environment:
- TZ=Europe/Berlin
- OT_RCP_DEVICE=spinel+hdlc+tcp://192.168.3.21:6638
- OT_LOG_LEVEL=7
- OT_THREAD_IF=wpan0
- OT_INFRA_IF=eth0
- OT_REST_LISTEN_ADDR=0.0.0.0
- OT_REST_LISTEN_PORT=9212
volumes:
- /mnt/cache/appdata/smart-home/openthread:/data:rw
devices:
- /dev/net/tun:/dev/net/tun
cap_add:
- NET_ADMIN
restart: always

I hope someone can give me a tip. baudrate is 115200.