Add docker-compose.yml and fix typo (#10)

This commit is contained in:
Robert Dunmire III 2025-01-19 18:24:27 -05:00 committed by GitHub
parent 7a740e30d0
commit 2ee444077d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 26 additions and 1 deletions

View File

@ -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

25
docker-compose.yml Normal file
View File

@ -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