-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathcompose.yml
More file actions
43 lines (40 loc) · 876 Bytes
/
compose.yml
File metadata and controls
43 lines (40 loc) · 876 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
42
43
services:
rag:
build: .
image: rag-container:latest
ports:
- 8000:8000
environment:
OPENAI_URL: http://litellm:4000
QDRANT_URL: http://qdrant:6333
depends_on:
- litellm
- qdrant
profiles:
- prod
qdrant:
image: qdrant/qdrant:latest
ports:
- 6333:6333
- 6334:6334
volumes:
- ./qdrant/volume/:/qdrant/storage:z
profiles:
- infra
- prod
litellm:
image: ghcr.io/berriai/litellm:main-latest
ports:
- 4000:4000
volumes:
- ./litellm-config.yml:/app/litellm-config.yml
command: ["--config", "/app/litellm-config.yml"]
env_file: .env
environment:
LANGFUSE_HOST: http://langfuse:3000
REDIS_URL: redis://:myredissecret@redis:6379
profiles:
- infra
- prod
include:
- https://github.com/langfuse/langfuse.git