From 82f84e5b2e180ff5e15ab8a601c36acd24a2030b Mon Sep 17 00:00:00 2001 From: Lars Fernhomberg Date: Fri, 26 Apr 2024 16:00:06 +0200 Subject: [PATCH] Fixed incorrect docker example in readme The docker example used Docker Hub based images that could not be found. This has been replaced with the correct Docker images. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 33570ef02bc..edc55c1c80c 100644 --- a/README.md +++ b/README.md @@ -490,16 +490,16 @@ We have two Docker images available for this project: # download model and persist it in a local folder docker run -it --rm \ -v path/to/models:/models \ - whisper.cpp:main "./models/download-ggml-model.sh base /models" + ghcr.io/ggerganov/whisper.cpp:main "./models/download-ggml-model.sh base /models" # transcribe an audio file docker run -it --rm \ -v path/to/models:/models \ -v path/to/audios:/audios \ - whisper.cpp:main "./main -m /models/ggml-base.bin -f /audios/jfk.wav" + ghcr.io/ggerganov/whisper.cpp:main "./main -m /models/ggml-base.bin -f /audios/jfk.wav" # transcribe an audio file in samples folder docker run -it --rm \ -v path/to/models:/models \ - whisper.cpp:main "./main -m /models/ggml-base.bin -f ./samples/jfk.wav" + ghcr.io/ggerganov/whisper.cpp:main "./main -m /models/ggml-base.bin -f ./samples/jfk.wav" ``` ## Limitations