mirror of
https://github.com/Crocmagnon/ansible.git
synced 2024-11-22 23:38:02 +01:00
23 lines
446 B
YAML
23 lines
446 B
YAML
|
services:
|
||
|
piper:
|
||
|
image: rhasspy/wyoming-piper
|
||
|
restart: always
|
||
|
ports:
|
||
|
- '10200:10200'
|
||
|
volumes:
|
||
|
- './piper-data:/data'
|
||
|
command: --voice fr-siwis-medium
|
||
|
cpus: 1
|
||
|
mem_limit: 500m
|
||
|
|
||
|
whisper:
|
||
|
image: rhasspy/wyoming-whisper
|
||
|
restart: always
|
||
|
ports:
|
||
|
- '10300:10300'
|
||
|
volumes:
|
||
|
- './whisper-data:/data'
|
||
|
command: --model small --language fr --beam-size 10
|
||
|
cpus: 6
|
||
|
mem_limit: 8g
|