-
Notifications
You must be signed in to change notification settings - Fork 118
/
docker-compose.yml
46 lines (41 loc) · 1.01 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
version: '3'
networks:
server:
services:
indexify:
image: tensorlake/indexify-server
ports:
- 8900:8900
networks:
server:
aliases:
- indexify-server
volumes:
- data:/tmp/indexify-blob-storage
scraper:
image: tensorlake/scraper-image:latest
command: ["indexify-cli", "executor", "--server-addr", "indexify:8900"]
networks:
server:
volumes:
- data:/tmp/indexify-blob-storage
openai:
image: tensorlake/openai-image:latest
environment:
- OPENAI_API_KEY=${OPENAI_API_KEY}
command: ["indexify-cli", "executor", "--server-addr", "indexify:8900"]
networks:
server:
volumes:
- data:/tmp/indexify-blob-storage
elevenlabs:
image: tensorlake/elevenlabs-image:latest
environment:
- ELEVENLABS_API_KEY=${ELEVENLABS_API_KEY}
command: ["indexify-cli", "executor", "--server-addr", "indexify:8900"]
networks:
server:
volumes:
- data:/tmp/indexify-blob-storage
volumes:
data: