Find a file
2025-07-06 16:44:03 +02:00
.vscode Update README.md and run.sh 2025-01-14 07:44:03 -05:00
build.sh First commit 2023-09-28 10:14:16 -04:00
docker-compose.yml Add docker-compose.yml and fix typo (#10) 2025-01-19 18:24:27 -05:00
Dockerfile Update whisper to v2.5.0 2025-07-06 16:39:55 +02:00
README.md Add docker-compose.yml and fix typo (#10) 2025-01-19 18:24:27 -05:00
run.sh Update docker image to use CUDA 12.3 and CUDNN 9 2025-01-19 17:51:27 -05:00

Wyoming Whisper STT docker container with Nvidia GPU support for Home-Assistant

https://github.com/rhasspy/wyoming-faster-whisper

Publish Docker image

docker pull ghcr.io/slackr31337/wyoming-whisper-gpu:latest

Models:

  • tiny-int8
  • tiny.en
  • tiny
  • base-int8
  • base.en
  • base
  • small-int8
  • small.en
  • small
  • medium-int8
  • medium.en
  • medium
  • large-v1
  • large-v2
  • large-v3
  • large
  • distil-large-v2
  • distil-medium.en
  • distil-small.en

Environment variables:

MODEL=base-int8 (Name of faster-whisper model to use)

LANGUAGE=en (Default language to set for transcription)

COMPUTE_TYPE=int8 (float16, int8, etc.)

BEAM_SIZE=5 (Size of beam during decoding. 0 for auto)

Docker compose

  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