34 lines
692 B
YAML
34 lines
692 B
YAML
version: '3.7'
|
|
services:
|
|
|
|
wyoming-piper:
|
|
image: rhasspy/wyoming-piper
|
|
container_name: Piper
|
|
restart: unless-stopped
|
|
stdin_open: true
|
|
tty: true
|
|
ports:
|
|
- 10200:10200
|
|
volumes:
|
|
- /dockers/piper:/data
|
|
command: --voice en_US-lessac-medium
|
|
logging:
|
|
options:
|
|
max-size: "10m"
|
|
max-file: "3"
|
|
|
|
wyoming-whisper:
|
|
image: rhasspy/wyoming-whisper
|
|
container_name: Whisper
|
|
restart: unless-stopped
|
|
stdin_open: true
|
|
tty: true
|
|
ports:
|
|
- 10300:10300
|
|
volumes:
|
|
- /dockers/whisper:/data
|
|
command: --model tiny-int8 --language en
|
|
logging:
|
|
options:
|
|
max-size: "10m"
|
|
max-file: "3" |