forked from speaches-ai/speaches
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yaml
More file actions
41 lines (41 loc) · 990 Bytes
/
compose.yaml
File metadata and controls
41 lines (41 loc) · 990 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# NOTE: arm images haven't been tested
services:
faster-whisper-server-cuda:
image: fedirz/faster-whisper-server:latest-cuda
build:
dockerfile: Dockerfile.cuda
context: .
platforms:
- linux/amd64
- linux/arm64
volumes:
- ~/.cache/huggingface:/root/.cache/huggingface
restart: unless-stopped
ports:
- 8000:8000
develop:
watch:
- path: faster_whisper_server
action: rebuild
deploy:
resources:
reservations:
devices:
- capabilities: ["gpu"]
faster-whisper-server-cpu:
image: fedirz/faster-whisper-server:latest-cpu
build:
dockerfile: Dockerfile.cpu
context: .
platforms:
- linux/amd64
- linux/arm64
volumes:
- ~/.cache/huggingface:/root/.cache/huggingface
restart: unless-stopped
ports:
- 8000:8000
develop:
watch:
- path: faster_whisper_server
action: rebuild