Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- networks:
- smarthome:
- name: smarthome
- driver: bridge
- services:
- mosquitto:
- image: eclipse-mosquitto:latest
- container_name: mosquitto
- restart: unless-stopped
- ports:
- - 1883:1883
- volumes:
- - ~/apps/mosquitto/data:/mosquitto/data
- - ~/apps/mosquitto/config:/mosquitto/config
- - ~/apps/mosquitto/log:/mosquitto/log
- environment:
- - TZ=Europe/Berlin
- networks:
- - smarthome
- zigbee2mqtt:
- image: koenkk/zigbee2mqtt:latest
- container_name: zigbee2mqtt
- hostname: zigbee2mqtt
- restart: unless-stopped
- depends_on:
- - mosquitto
- ports:
- - 8080:8080
- volumes:
- - ~/apps/zigbee2mqtt/data:/app/data
- - /run/udev:/run/udev:ro
- devices:
- - /dev/ttyACM0:/dev/ttyACM0
- environment:
- - TZ=Europe/Berlin
- networks:
- - smarthome
- homebridge:
- image: homebridge/homebridge:latest
- container_name: homebridge
- restart: unless-stopped
- ports:
- - 8581:8581
- volumes:
- - ~/apps/homebridge:/homebridge
- environment:
- - TZ=Europe/Berlin
- networks:
- - smarthome
- nodered:
- image: nodered/node-red:latest
- container_name: nodered
- restart: unless-stopped
- ports:
- - 1880:1880
- volumes:
- - ~/apps/nodered/data:/data
- environment:
- - TZ=Europe/Berlin
- - NODE_RED_UID=1000
- - NODE_RED_GID=1000
- networks:
- - smarthome
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement