Add docker-compose.yml and fix typo (#10)
This commit is contained in:
parent
7a740e30d0
commit
2ee444077d
|
|
@ -1,4 +1,4 @@
|
|||
Wyoming Whisper SST docker container with Nvidia GPU support for Home-Assistant
|
||||
Wyoming Whisper STT docker container with Nvidia GPU support for Home-Assistant
|
||||
|
||||
https://github.com/rhasspy/wyoming-faster-whisper
|
||||
|
||||
|
|
|
|||
|
|
@ -0,0 +1,25 @@
|
|||
services:
|
||||
wyoming-whisper:
|
||||
image: slackr31337/wyoming-whisper-gpu:latest
|
||||
container_name: wyoming-whisper
|
||||
environment:
|
||||
- MODEL=base-int8
|
||||
- LANGUAGE=en
|
||||
- COMPUTE_TYPE=int8
|
||||
- BEAM_SIZE=5
|
||||
ports:
|
||||
- 10300:10300
|
||||
volumes:
|
||||
- /path/to/persistent/data:/data
|
||||
restart: unless-stopped
|
||||
runtime: nvidia
|
||||
deploy:
|
||||
resources:
|
||||
reservations:
|
||||
devices:
|
||||
- driver: nvidia
|
||||
count: 1
|
||||
capabilities:
|
||||
- gpu
|
||||
- utility
|
||||
- compute
|
||||
Loading…
Reference in New Issue