🌐
Docker
hub.docker.com › r › linuxserver › faster-whisper
linuxserver/faster-whisper - Docker Image
© 2025 Docker, Inc. All rights reserved. | Terms of Service | Subscription Service Agreement | Privacy | Legal
🌐
GitHub
github.com › manzolo › openai-whisper-docker
GitHub - manzolo/openai-whisper-docker: This Docker image provides a convenient environment for running OpenAI Whisper, a powerful automatic speech recognition (ASR) system.
docker run --gpus all -it -v ${PWD}/models:/root/.cache/whisper -v ${PWD}/audio-files:/app openai-whisper whisper audio-file.mp3 --device cuda --model turbo --language Italian --output_dir /app --output_format txt
Starred by 149 users
Forked by 19 users
Languages   Dockerfile
🌐
LinuxServer.io
docs.linuxserver.io › images › docker-faster-whisper
faster-whisper - LinuxServer.io
To help you get started creating a container from this image you can either use docker-compose or the docker cli. ... Unless a parameter is flaged as 'optional', it is mandatory and a value must be provided. --- services: faster-whisper: image: lscr.io/linuxserver/faster-whisper:latest ...
🌐
GitHub
github.com › linuxserver › docker-faster-whisper
GitHub - linuxserver/docker-faster-whisper
To help you get started creating a container from this image you can either use docker-compose or the docker cli. ... Unless a parameter is flaged as 'optional', it is mandatory and a value must be provided.
Starred by 203 users
Forked by 15 users
Languages   Dockerfile
🌐
Medium
egemengulpinar.medium.com › running-whisper-large-v3-on-docker-with-gpu-support-e8a5b5daabf9
Running OpenAI Whisper Model on Docker with GPU Support | by Egemen Gulpinar | Medium
August 28, 2024 - torch torchaudio torchvision pybind11 python-dotenv faster-whisper nvidia-cudnn-cu11 nvidia-cublas-cu11 numpy · After these settings, let’s build: docker-compose up --build -d · Most of the person get, “Could not load library libcudnn_ops_infer.so.8. Error: libcudnn_ops_infer.so.8” error.
🌐
Home Assistant
community.home-assistant.io › configuration › voice assistant
Run whisper on external server - Voice Assistant - Home Assistant Community
May 4, 2023 - Just tested the new whisper add-on ... basically unusable for anything. I wanted to run whisper on an external beefier server, I made this docker-compose: services: whisper: image: homeassistant/amd64-addon-whisper:latest container_name: whisper ports: - 10300:10300 restart: ...
🌐
Reddit
reddit.com › r/homeassistant › using whisper in docker
r/homeassistant on Reddit: using whisper in docker
July 7, 2023 -

Hey,

So I am playing around with voice assistant, and wanted to set it up locally. I set up whisper and piper as below:

  whisper:
    container_name: whisper
    image: rhasspy/wyoming-whisper
    #command: --model base-int8 --language fr
    command: --model tiny-int8 --language en
    privileged: true
    restart: unless-stopped
    environment:
      - TZ=Europe/London
    volumes:
      - /home/pi/docker/home-automation/whisper/data:/data
    ports:
      - 10300:10300

  piper:
    container_name: piper
    image: rhasspy/wyoming-piper
    command: --voice en-gb-southern_english_female-low
    privileged: true
    restart: unless-stopped
    environment:
      - TZ=Europe/London
    volumes:
      - /home/pi/docker/home-automation/piper/data:/data
    ports:
      - 10200:10200

I added assist_pipeline: to my config file.

When I try to add a voice assistant, faster-whisper is greyed out and piper isnt an option,

I have read that you need to configure the addon, but with docker installs there is no configure.

What am I missing?

🌐
Runpod
runpod.io › home › articles › guides › running whisper with a ui in docker: a beginner’s guide
Running Whisper with a UI in Docker: A Beginner’s Guide
Provides a beginner-friendly tutorial for running OpenAI’s Whisper speech recognition with a GUI in Docker, covering container setup and using a web UI for transcription without coding.
🌐
LabLab
lablab.ai › t › whisper-api-flask-docker
Creating OpenAI Whisper API in a Docker Container tutorial
It's your turn to build something that matters. If you're serious about AI, you're in the right place - the community where developers and founders ship AI products through world-class hackathons.
Find elsewhere
🌐
Docker Hub
hub.docker.com › r › matusstas › openai-whisper-microservice
matusstas/openai-whisper-microservice - Docker Image
openai-whisper-microservice · © 2025 Docker, Inc. All rights reserved. | Terms of Service | Subscription Service Agreement | Privacy | Legal
🌐
Docker Hub
hub.docker.com › r › onerahmet › openai-whisper-asr-webservice
onerahmet/openai-whisper-asr-webservice - Docker Image
openai-whisper-asr-webservice · © 2025 Docker, Inc. All rights reserved. | Terms of Service | Subscription Service Agreement | Privacy | Legal
🌐
Bazarr Wiki
wiki.bazarr.media › Additional-Configuration › Whisper-Provider
Whisper Provider Setup - Bazarr Wiki
whisper-asr-webservice supports multiple backends. Currently, there are two available options: ... The complete Docker Compose file can be found here.
🌐
GitHub
github.com › ahmetoner › whisper-asr-webservice
GitHub - ahmetoner/whisper-asr-webservice: OpenAI Whisper ASR Webservice API
docker run -d --gpus all -p 9000:9000 \ -e ASR_MODEL=base \ -e ASR_ENGINE=openai_whisper \ onerahmet/openai-whisper-asr-webservice:latest-gpu
Starred by 3.1K users
Forked by 546 users
Languages   Python 96.8% | Dockerfile 3.2%
🌐
Reddit
reddit.com › r/openai › whisper docker container
r/OpenAI on Reddit: Whisper docker container
April 25, 2023 -

So there wasn't a solution out that would allow you to submit your audio/video files to a dockerized flask app and have your subtitle files etc generated as if you were using whisper via the command line... so I made one. Go check it out here jlonge4/whisperAI-flask-docker: I built this project because there was no user friendly way to upload a file to a dockerized flask web form and have whisper do its thing via CLI in the background. Now there is. Enjoy! (github.com)

🌐
Home Assistant
community.home-assistant.io › installation
How to manually install Piper and whisper on Home Assistant core - Installation - Home Assistant Community
October 29, 2023 - I would try to install Piper and whisper on my self installed Home Assistant on a RPI P3b+ (Raspian + venv + pip install), but I can’t found information about the process. Docker Install Pull the container,change path to your path and run it. Rename containers to something like wyoming-piper and wyomin-whisper and add wyoming integration.
🌐
Medium
learningdevops.medium.com › step-by-step-guide-to-building-a-dockerfile-for-deploying-openai-whisper-models-with-dynamic-model-7bfa8ba95cd7
Step-by-Step Guide to Building a Dockerfile for Deploying OpenAI Whisper Models with Dynamic Model Selection | by Ravi Pandit | Medium
November 13, 2024 - By containerizing Whisper, you eliminate compatibility issues, as dependencies are encapsulated within the Docker image, making the setup consistent across different environments.
🌐
GitHub
github.com › supershaneski › openai-whisper › blob › main › docker-compose.yml
openai-whisper/docker-compose.yml at main · supershaneski/openai-whisper
A sample web app using OpenAI Whisper to transcribe audio built on Next.js. It records audio continuously for some time interval then uploads the audio data to the server for transcribing/translating.
Author   supershaneski
🌐
GitHub
github.com › Inushin › dockerWhisperApiFlask
GitHub - Inushin/dockerWhisperApiFlask: With this repo, you will deploy, using Docker Compose, an API of Whisper running on a Flask server.
With this repo, you will deploy, using Docker Compose, an API of Whisper, an automatic State-of-the-Art speech recognition system from OpenAI that has been trained on 680,000 hours of multilingual and multitask supervised data collected from ...
Author   Inushin
🌐
Docker Hub
hub.docker.com › r › rhasspy › wyoming-whisper
rhasspy/wyoming-whisper - Docker Image
© 2025 Docker, Inc. All rights reserved. | Terms of Service | Subscription Service Agreement | Privacy | Legal
🌐
GitHub
github.com › ahmetoner › whisper-asr-webservice › blob › main › docker-compose.yml
whisper-asr-webservice/docker-compose.yml at main · ahmetoner/whisper-asr-webservice
whisper-asr-webservice: build: context: . dockerfile: Dockerfile · environment: - ASR_MODEL=base · ports: - "9000:9000" volumes: - ./app:/app/app · - cache-whisper:/root/.cache ·
Author   ahmetoner