-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
47 lines (45 loc) · 1.54 KB
/
Copy pathdocker-compose.yml
File metadata and controls
47 lines (45 loc) · 1.54 KB
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
42
43
44
45
46
47
services:
crawl4ai:
image: unclecode/crawl4ai:basic-amd64
container_name: crawl4ai
ports:
- "11225:11225"
restart: unless-stopped
kokoro-tts:
# By default, using CPU.
# To use GPU, comment out this image line and uncomment the GPU block below.
image: ghcr.io/remsky/kokoro-fastapi-cpu:latest
container_name: kokoro-tts
ports:
- "8880:8880"
restart: unless-stopped
# -------------------------------------------------------------
# FOR NVIDIA GPU: Uncomment the lines below and comment out the image above
# -------------------------------------------------------------
# image: ghcr.io/remsky/kokoro-fastapi-gpu:latest
# deploy:
# resources:
# reservations:
# devices:
# - driver: nvidia
# count: all
# capabilities: [gpu]
faster-whisper:
# By default, using CPU.
# To use GPU, comment out this image line and uncomment the GPU block below.
image: fedirz/faster-whisper-server:latest-cpu
container_name: faster-whisper
ports:
- "8000:8000"
restart: unless-stopped
# -------------------------------------------------------------
# FOR NVIDIA GPU: Uncomment the lines below and comment out the image above
# -------------------------------------------------------------
# image: fedirz/faster-whisper-server:latest-cuda
# deploy:
# resources:
# reservations:
# devices:
# - driver: nvidia
# count: all
# capabilities: [gpu]