Part 1 - Local Voice using Docker Compose
https://blog.matterxiaomi.com/blog/Local-Voice-using-Docker-Compose-part1/
https://blog.matterxiaomi.com/blog/Local-Voice-using-Docker-Compose-part1/
0
## wyoming
whisper:
container_name: whisper
image: rhasspy/wyoming-whisper
command: --model tiny-int8 --language en
volumes:
- /opt/whisper-data:/data
environment:
- TZ=Europe/Vienna
restart: unless-stopped
ports:
- 10300:10300
###
piper:
container_name: piper
image: rhasspy/wyoming-piper
command: --voice en_US-lessac-medium
volumes:
- /opt/piper-data:/data
environment:
- TZ=Europe/Vienna
restart: unless-stopped
ports:
- 10200:10200