-
Notifications
You must be signed in to change notification settings - Fork 121
/
Copy pathdocker-compose.yml
56 lines (50 loc) · 1.17 KB
/
docker-compose.yml
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
48
49
50
51
52
53
54
55
56
networks:
server:
services:
indexify:
image: tensorlake/indexify-server
ports:
- 8900:8900
networks:
server:
aliases:
- indexify-server
volumes:
- data:/app
yt-downloader:
image: tensorlake/yt-downloader:latest
command: ["indexify-cli", "executor", "--server-addr", "indexify:8900"]
networks:
server:
volumes:
- data:/app
audio-processor:
image: tensorlake/audio-processor:latest
command: ["indexify-cli", "executor", "--server-addr", "indexify:8900"]
networks:
server:
volumes:
- data:/app
transcriber:
image: tensorlake/transcriber:latest
command: ["indexify-cli", "executor", "--server-addr", "indexify:8900"]
networks:
server:
volumes:
- data:/app
llama-cpp:
image: tensorlake/llama-cpp:latest
command: ["indexify-cli", "executor", "--server-addr", "indexify:8900"]
networks:
server:
volumes:
- data:/app
router:
image: tensorlake/base-image:latest
command: ["indexify-cli", "executor", "--server-addr", "indexify:8900"]
networks:
server:
volumes:
- data:/app
volumes:
data: