Fedir Zadniprovskyi commited on
Commit
fcea6d1
·
1 Parent(s): 47627a9

chore: update docker tags

Browse files
Files changed (2) hide show
  1. README.md +2 -2
  2. compose.yaml +2 -6
README.md CHANGED
@@ -20,9 +20,9 @@ See [OpenAI API reference](https://platform.openai.com/docs/api-reference/audio)
20
  ## Quick Start
21
  Using Docker
22
  ```bash
23
- docker run --gpus=all --publish 8000:8000 --volume ~/.cache/huggingface:/root/.cache/huggingface fedirz/faster-whisper-server:cuda
24
  # or
25
- docker run --publish 8000:8000 --volume ~/.cache/huggingface:/root/.cache/huggingface fedirz/faster-whisper-server:cpu
26
  ```
27
  Using Docker Compose
28
  ```bash
 
20
  ## Quick Start
21
  Using Docker
22
  ```bash
23
+ docker run --gpus=all --publish 8000:8000 --volume ~/.cache/huggingface:/root/.cache/huggingface fedirz/faster-whisper-server:0.1-cuda
24
  # or
25
+ docker run --publish 8000:8000 --volume ~/.cache/huggingface:/root/.cache/huggingface fedirz/faster-whisper-server:0.1-cpu
26
  ```
27
  Using Docker Compose
28
  ```bash
compose.yaml CHANGED
@@ -1,15 +1,13 @@
1
  # NOTE: arm images haven't been tested
2
  services:
3
  faster-whisper-server-cuda:
4
- image: fedirz/faster-whisper-server:cuda
5
  build:
6
  dockerfile: Dockerfile.cuda
7
  context: .
8
  platforms:
9
  - linux/amd64
10
  - linux/arm64
11
- tags:
12
- - fedirz/faster-whisper-server:cuda
13
  volumes:
14
  - ~/.cache/huggingface:/root/.cache/huggingface
15
  restart: unless-stopped
@@ -21,15 +19,13 @@ services:
21
  devices:
22
  - capabilities: ["gpu"]
23
  faster-whisper-server-cpu:
24
- image: fedirz/faster-whisper-server:cpu
25
  build:
26
  dockerfile: Dockerfile.cpu
27
  context: .
28
  platforms:
29
  - linux/amd64
30
  - linux/arm64
31
- tags:
32
- - fedirz/faster-whisper-server:cpu
33
  volumes:
34
  - ~/.cache/huggingface:/root/.cache/huggingface
35
  restart: unless-stopped
 
1
  # NOTE: arm images haven't been tested
2
  services:
3
  faster-whisper-server-cuda:
4
+ image: fedirz/faster-whisper-server:cuda-0.1
5
  build:
6
  dockerfile: Dockerfile.cuda
7
  context: .
8
  platforms:
9
  - linux/amd64
10
  - linux/arm64
 
 
11
  volumes:
12
  - ~/.cache/huggingface:/root/.cache/huggingface
13
  restart: unless-stopped
 
19
  devices:
20
  - capabilities: ["gpu"]
21
  faster-whisper-server-cpu:
22
+ image: fedirz/faster-whisper-server:cpu-0.1
23
  build:
24
  dockerfile: Dockerfile.cpu
25
  context: .
26
  platforms:
27
  - linux/amd64
28
  - linux/arm64
 
 
29
  volumes:
30
  - ~/.cache/huggingface:/root/.cache/huggingface
31
  restart: unless-stopped