Initialize docker stack repo
This commit is contained in:
23
voice/docker-compose.yml
Normal file
23
voice/docker-compose.yml
Normal file
@@ -0,0 +1,23 @@
|
||||
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
|
||||
Reference in New Issue
Block a user