Skip to content

Instantly share code, notes, and snippets.

@tostu
Created August 13, 2025 16:45
Show Gist options
  • Select an option

  • Save tostu/079a39f3a499d7af021eec87d0c3ed3f to your computer and use it in GitHub Desktop.

Select an option

Save tostu/079a39f3a499d7af021eec87d0c3ed3f to your computer and use it in GitHub Desktop.
Zigbee2MQTT
version: '3.8'
services:
mqtt:
image: eclipse-mosquitto:2.0
restart: unless-stopped
volumes:
- './mosquitto-data:/mosquitto'
ports:
- '1883:1883'
- '9001:9001'
command: 'mosquitto -c /mosquitto-no-auth.conf'
zigbee2mqtt:
container_name: zigbee2mqtt
restart: unless-stopped
image: koenkk/zigbee2mqtt
volumes:
- ./zigbee2mqtt-data:/app/data
- /run/udev:/run/udev:ro
ports:
- 8080:8080
environment:
- TZ=Europe/Berlin
devices:
- /dev/ttyACM0:/dev/ttyACM0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment