Advertisement
penright

docker-compose

Mar 29th, 2022
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.41 KB | None | 0 0
  1. services:
  2.   zigbee2mqtt:
  3.     container_name: zigbee2mqtt
  4.     image: koenkk/zigbee2mqtt
  5.     volumes:
  6.      - ./data:/app/data
  7.       - /run/udev:/run/udev:ro
  8.     ports:
  9.      # Frontend port
  10.       - 8080:8080
  11.     environment:
  12.      - TZ=Europe/Berlin
  13.     devices:
  14.      # Make sure this matched your adapter location
  15.       - /dev/serial/by-id/usb-Texas_Instruments_TI_CC2531_USB_CDC___0X00124B001CD47621-if00
  16.  
  17.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement