Guest User

Untitled

a guest
Aug 11th, 2025
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. version: '3'
  2. services:
  3. homebridge:
  4. container_name: homebridge
  5. image: homebridge/homebridge
  6. restart: always
  7. network_mode: host
  8. volumes:
  9. - ./homebridge/volumes:/homebridge
  10. logging:
  11. driver: json-file
  12. options:
  13. max-size: "10mb"
  14. max-file: "1"
  15.  
  16. mosquitto:
  17. container_name: mosquitto
  18. image: eclipse-mosquitto:2
  19. restart: always
  20. ports:
  21. - 1883:1883
  22. - 9001:9001
  23. volumes:
  24. - ./mosquitto:/mosquitto
  25.  
  26. zigbee2mqtt:
  27. container_name: zigbee2mqtt
  28. image: koenkk/zigbee2mqtt:2
  29. restart: always
  30. depends_on:
  31. - mosquitto
  32. volumes:
  33. - ./zigbee2mqtt/data:/app/data
  34. - /run/udev:/run/udev:ro
  35. ports:
  36. - 8080:8080
  37. environment:
  38. - TZ=Europe/Lisbon
  39. devices:
  40. - /dev/ttyAMA0:/dev/ttyAMA0
Advertisement
Add Comment
Please, Sign In to add comment