24 lines
609 B
YAML
24 lines
609 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
wyoming-whisper:
|
|
image: rhasspy/wyoming-whisper:latest
|
|
container_name: wyoming-whisper
|
|
restart: unless-stopped
|
|
ports:
|
|
- "10300:10300"
|
|
volumes:
|
|
- ./whisper-data:/data
|
|
command: --model tiny-int8 --language ru
|
|
|
|
wyoming-piper:
|
|
image: rhasspy/wyoming-piper:latest
|
|
container_name: wyoming-piper
|
|
restart: unless-stopped
|
|
ports:
|
|
- "10200:10200"
|
|
volumes:
|
|
- ./piper-data:/data
|
|
# голос можно потом сменить, это пример русского голоса
|
|
command: --voice ru_RU-irina-medium
|