-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
84 lines (77 loc) · 1.72 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
version: '3'
services:
ingestion:
build:
context: .
dockerfile: Dockerfiles/Dockerfile.ingestion
volumes:
- "./repo:/app/repo"
deploy:
resources:
limits:
cpus: '2'
memory: '4G'
reservations:
cpus: '2'
memory: '4G'
depends_on:
- qdrant
- quickwit
qdrant:
image: "qdrant/qdrant"
ports:
- "6333:6333"
- "6334:6334"
volumes:
- "./data/qdrant/data:/qdrant/storage"
quickwit:
image: "quickwit/quickwit"
ports:
- "7280:7280"
volumes:
- "./qwdata:/quickwit/qwdata"
command: run
code-understanding:
build:
context: .
dockerfile: Dockerfiles/Dockerfile.code-understanding
volumes:
- /Users/karthicrao/Documents/GitHub/Incredible.dev/ai-config.yaml:/app/ai-config.yaml
ports:
- "3002:3002"
depends_on:
- qdrant
- quickwit
- redis-stack
- code-search
code-search:
build:
context: .
dockerfile: Dockerfiles/Dockerfile.code-search
ports:
- "3003:3003"
depends_on:
- qdrant
- quickwit
- redis-stack
coordinator:
build:
context: .
dockerfile: Dockerfiles/Dockerfile.coordinator
volumes:
- /Users/karthicrao/Documents/GitHub/Incredible.dev/ai-config.yaml:/app/ai-config.yaml
ports:
- "3004:3004"
depends_on:
- qdrant
- quickwit
- redis-stack
- code-search
- code-understanding
redis-stack:
image: "redis/redis-stack:latest"
ports:
- "6379:6379" # Redis server port
- "8001:8001" # RedisInsight port
volumes:
- "./redisdata:/data" # Mount a volume for Redis data persistence