This commit is contained in:
sujiba 2024-10-03 17:29:25 +02:00
parent 1d7b12af87
commit 0a295765bf
2 changed files with 67 additions and 4 deletions

View file

@ -16,11 +16,11 @@ services:
container_name: zigbee2mqtt
environment:
- TZ=Europe/Berlin
ports:
- "127.0.0.1:38080:8080"
volumes:
- ./volumes/zigbee2mqtt/data:/app/data
- /run/udev:/run/udev:ro
ports:
- "127.0.0.1:38080:8080"
group_add:
- dialout
devices:
@ -34,10 +34,30 @@ services:
command: "mosquitto -c /mosquitto-no-auth.conf"
environment:
- TZ=Europe/Berlin
ports:
- "127.0.0.1:1883:1883"
volumes:
- ./volumes/mosquitto/conf:/mosquitto/conf
- ./volumes/mosquitto/data:/mosquitto/data
- ./volumes/mosquitto/logs:/mosquitto/log
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"
restart: unless-stopped