17 lines
311 B
YAML
17 lines
311 B
YAML
|
|
services:
|
||
|
|
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
|
||
|
|
- en
|
||
|
|
- --beam-size
|
||
|
|
- "1"
|