Fedir Zadniprovskyi 2024-05-27
chore: update docker tags
@fcea6d18b40eef29a1920e76975d329fc55c60ef
README.md
--- README.md
+++ README.md
@@ -20,9 +20,9 @@
 ## Quick Start
 Using Docker
 ```bash
-docker run --gpus=all --publish 8000:8000 --volume ~/.cache/huggingface:/root/.cache/huggingface fedirz/faster-whisper-server:cuda
+docker run --gpus=all --publish 8000:8000 --volume ~/.cache/huggingface:/root/.cache/huggingface fedirz/faster-whisper-server:0.1-cuda
 # or
-docker run --publish 8000:8000 --volume ~/.cache/huggingface:/root/.cache/huggingface fedirz/faster-whisper-server:cpu
+docker run --publish 8000:8000 --volume ~/.cache/huggingface:/root/.cache/huggingface fedirz/faster-whisper-server:0.1-cpu
 ```
 Using Docker Compose
 ```bash
compose.yaml
--- compose.yaml
+++ compose.yaml
@@ -1,15 +1,13 @@
 # NOTE: arm images haven't been tested
 services:
   faster-whisper-server-cuda:
-    image: fedirz/faster-whisper-server:cuda
+    image: fedirz/faster-whisper-server:cuda-0.1
     build:
       dockerfile: Dockerfile.cuda
       context: .
       platforms:
         - linux/amd64
         - linux/arm64
-      tags:
-        - fedirz/faster-whisper-server:cuda
     volumes:
       - ~/.cache/huggingface:/root/.cache/huggingface
     restart: unless-stopped
@@ -21,15 +19,13 @@
           devices:
             - capabilities: ["gpu"]
   faster-whisper-server-cpu:
-    image: fedirz/faster-whisper-server:cpu
+    image: fedirz/faster-whisper-server:cpu-0.1
     build:
       dockerfile: Dockerfile.cpu
       context: .
       platforms:
         - linux/amd64
         - linux/arm64
-      tags:
-        - fedirz/faster-whisper-server:cpu
     volumes:
       - ~/.cache/huggingface:/root/.cache/huggingface
     restart: unless-stopped
Add a comment
List