From 1288dacb0064951b30f95417de671c689796b6b1 Mon Sep 17 00:00:00 2001 From: James Turland Date: Wed, 11 Jun 2025 16:25:58 +0100 Subject: [PATCH] zigbee2mqtt --- Links/affiliate.md | 5 +++++ Zigbee2MQTT/docker-compose.yaml | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 38 insertions(+) create mode 100644 Links/affiliate.md create mode 100644 Zigbee2MQTT/docker-compose.yaml diff --git a/Links/affiliate.md b/Links/affiliate.md new file mode 100644 index 0000000..08ed622 --- /dev/null +++ b/Links/affiliate.md @@ -0,0 +1,5 @@ +# Unifi + +Store Link: https://store.ui.com/?a_aid=JimsGarage + +# diff --git a/Zigbee2MQTT/docker-compose.yaml b/Zigbee2MQTT/docker-compose.yaml new file mode 100644 index 0000000..4df48da --- /dev/null +++ b/Zigbee2MQTT/docker-compose.yaml @@ -0,0 +1,33 @@ +services: + zigbee2mqtt: + container_name: zigbee2mqtt + image: ghcr.io/koenkk/zigbee2mqtt + restart: unless-stopped + volumes: + - /home/ubuntu/docker/zigbee2mqtt/data:/app/data # persistent data storage + ports: + # Frontend port + - 8080:8080 + environment: + - TZ=Europe/London + #devices: + # Make sure this matched your adapter location + # not required as we'll be connecting via Network - however USB devices can be used this way + # - /dev/serial/by-id/usb-Texas_Instruments_TI_CC2531_USB_CDC___0X00124B0018ED3DDF-if00:/dev/ttyACM0 + + # Uncomment the following lines if you want to use Mosquitto as a broker + # mosquitto: + # container_name: mosquitto + # image: eclipse-mosquitto:latest + # restart: always + # deploy: + # resources: + # limits: + # memory: 256M + # ports: + # - "1883:1883" + # - "9001:9001" + # volumes: + # - /home/ubuntu/docker/mosquitto/config/mosquitto.conf:/mosquitto/config/mosquitto.conf + # - /home/ubuntu/docker/mosquitto/data:/mosquitto/data + # - /home/ubuntu/docker/mosquitto/log:/mosquitto/log \ No newline at end of file