-
Notifications
You must be signed in to change notification settings - Fork 418
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
44 lines (44 loc) · 927 Bytes
/
docker-compose.yml
File metadata and controls
44 lines (44 loc) · 927 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
44
services:
qdrant:
image: qdrant/qdrant:latest
ports:
- "6333:6333"
volumes:
- ./long_term_memory:/qdrant/storage
restart: unless-stopped
chainlit:
build:
context: .
dockerfile: Dockerfile.chainlit
ports:
- "8000:8000"
env_file:
- .env
environment:
- QDRANT_PORT=6333
- QDRANT_API_KEY=None
- QDRANT_HOST=localhost
- QDRANT_URL=http://qdrant:6333
restart: unless-stopped
volumes:
- ./short_term_memory:/app/data
depends_on:
- qdrant
whatsapp:
build:
context: .
dockerfile: Dockerfile
ports:
- "8080:8080"
env_file:
- .env
environment:
- QDRANT_PORT=6333
- QDRANT_API_KEY=None
- QDRANT_HOST=localhost
- QDRANT_URL=http://qdrant:6333
restart: unless-stopped
volumes:
- ./short_term_memory:/app/data
depends_on:
- qdrant