Revert "Move from deconz to zha"
This reverts commit 2fb5a214f161e22671ff3c377699516b9c4abbd8.
This commit is contained in:
parent
f6bba18a8b
commit
efd7a318fb
2 changed files with 155 additions and 2 deletions
|
@ -8,14 +8,15 @@ services:
|
|||
volumes:
|
||||
- /docker/homeautomation/home-assistant:/config
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
devices:
|
||||
- /dev/ttyACM0:/dev/ttyACM0
|
||||
restart: always
|
||||
networks:
|
||||
- home-assistant
|
||||
- proxy
|
||||
ports:
|
||||
- "8123:8123"
|
||||
depends_on:
|
||||
- deconz
|
||||
- mosquitto
|
||||
labels:
|
||||
- "traefik.enable=true"
|
||||
|
||||
|
@ -32,6 +33,26 @@ services:
|
|||
- "traefik.docker.network=proxy"
|
||||
- "traefik.http.services.home-assistant.loadbalancer.server.port=8123"
|
||||
|
||||
deconz:
|
||||
container_name: deconz
|
||||
image: marthoc/deconz
|
||||
environment:
|
||||
- TZ=Europe/Helsinki
|
||||
- DECONZ_WEB_PORT=8083
|
||||
- DECONZ_WS_PORT=8084
|
||||
- DECONZ_VNC_PORT=5901
|
||||
- DECONZ_VNC_MODE=1
|
||||
- DECONZ_VNC_PASSWORD=${DECONZ_VNC_PASSWORD}
|
||||
- DEBUG_OTAU=1
|
||||
network_mode: host
|
||||
volumes:
|
||||
- /docker/homeautomation/deconz:/root/.local/share/dresden-elektronik/deCONZ
|
||||
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
restart: always
|
||||
devices:
|
||||
- /dev/ttyACM0
|
||||
|
||||
node-red:
|
||||
container_name: node-red
|
||||
image: nodered/node-red
|
||||
|
@ -64,6 +85,17 @@ services:
|
|||
- "traefik.docker.network=proxy"
|
||||
- "traefik.http.services.node.loadbalancer.server.port=1880"
|
||||
|
||||
mosquitto:
|
||||
container_name: mosquitto
|
||||
image: eclipse-mosquitto
|
||||
environment:
|
||||
- TZ=Europe/Helsinki
|
||||
network_mode: host
|
||||
volumes:
|
||||
- /docker/homeautomation/mosquitto:/mosquitto
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
restart: always
|
||||
|
||||
mariadb:
|
||||
container_name: mariadb-hass
|
||||
image: mariadb
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue