2024-05-05 14:00:09 +02:00
|
|
|
---
|
2024-02-22 22:13:26 +00:00
|
|
|
services:
|
|
|
|
homeassistant:
|
|
|
|
image: ghcr.io/home-assistant/home-assistant:stable
|
|
|
|
container_name: homeassistant
|
2024-05-08 23:01:18 +02:00
|
|
|
environment:
|
|
|
|
- TZ=Europe/Berlin
|
2024-02-22 22:13:26 +00:00
|
|
|
volumes:
|
|
|
|
- ./volumes/homeassistant/config:/config
|
|
|
|
- /etc/localtime:/etc/localtime:ro
|
|
|
|
network_mode: host
|
|
|
|
restart: unless-stopped
|
|
|
|
|
|
|
|
zigbee2mqtt:
|
|
|
|
image: koenkk/zigbee2mqtt
|
|
|
|
container_name: zigbee2mqtt
|
2024-05-08 23:01:18 +02:00
|
|
|
environment:
|
|
|
|
- TZ=Europe/Berlin
|
2024-02-22 22:13:26 +00:00
|
|
|
volumes:
|
|
|
|
- ./volumes/zigbee2mqtt/data:/app/data
|
|
|
|
- /run/udev:/run/udev:ro
|
2024-10-03 17:29:25 +02:00
|
|
|
ports:
|
|
|
|
- "127.0.0.1:38080:8080"
|
2024-05-08 23:01:18 +02:00
|
|
|
group_add:
|
|
|
|
- dialout
|
2024-02-22 22:13:26 +00:00
|
|
|
devices:
|
|
|
|
# Make sure this matched your adapter location
|
|
|
|
- /dev/ttyACM0:/dev/ttyACM0
|
|
|
|
restart: unless-stopped
|
|
|
|
|
|
|
|
mqtt:
|
|
|
|
image: eclipse-mosquitto:2.0
|
|
|
|
container_name: mqtt
|
|
|
|
command: "mosquitto -c /mosquitto-no-auth.conf"
|
2024-05-08 23:01:18 +02:00
|
|
|
environment:
|
|
|
|
- TZ=Europe/Berlin
|
2024-02-22 22:13:26 +00:00
|
|
|
volumes:
|
|
|
|
- ./volumes/mosquitto/conf:/mosquitto/conf
|
|
|
|
- ./volumes/mosquitto/data:/mosquitto/data
|
|
|
|
- ./volumes/mosquitto/logs:/mosquitto/log
|
2024-10-03 17:29:25 +02:00
|
|
|
ports:
|
|
|
|
- "127.0.0.1:1883:1883"
|
|
|
|
restart: unless-stopped
|
|
|
|
|
|
|
|
piper:
|
|
|
|
image: rhasspy/wyoming-piper
|
|
|
|
container_name: piper
|
|
|
|
command: --voice en-gb-southern_english_female-low
|
|
|
|
volumes:
|
|
|
|
- ./volumes/piper/data:/data
|
|
|
|
ports:
|
|
|
|
- "127.0.0.1:10200:10200"
|
|
|
|
restart: unless-stopped
|
|
|
|
|
|
|
|
whisper:
|
|
|
|
image: rhasspy/wyoming-whisper
|
|
|
|
container_name: whisper
|
|
|
|
command: --model tiny-int8 --language en
|
|
|
|
volumes:
|
|
|
|
- ./volumes/whisper/data:/data
|
|
|
|
ports:
|
|
|
|
- "127.0.0.1:10300:10300"
|
2024-05-05 14:00:09 +02:00
|
|
|
restart: unless-stopped
|