entrance

Ansible role that deploys my edge device with connectivity containers. Currently it deploys a thread border router via the zbt-1 dongle by Home Assistant, a zigbee2MQTT interface using the Sonoff zigbee dongle and a DSMR reader with a generic P1 to USB converter.

263 BJ2
zigbee2mqtt-docker-compose.yml.j2
263 B12 lines • plaintext
1services:
2  zigbee2mqtt:
3    image: "koenkk/zigbee2mqtt:{{ z2m_version }}"
4    container_name: zigbee2mqtt
5    restart: unless-stopped
6    network_mode: host
7    volumes:
8      - ./config:/app/data
9    devices:
10      - "{{ device_paths.zigbee }}:/dev/ttyZigbee"
11
12