-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
84 lines (78 loc) · 2 KB
/
Copy pathdocker-compose.yml
File metadata and controls
84 lines (78 loc) · 2 KB
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
services:
redis:
image: redis:7-alpine
container_name: memrag-redis
ports:
- "6379:6379"
command: redis-server --maxmemory 256mb --maxmemory-policy allkeys-lru
volumes:
- redis_data:/data
healthcheck:
test: ["CMD", "redis-cli", "ping"]
interval: 5s
timeout: 3s
retries: 5
restart: unless-stopped
qdrant:
image: qdrant/qdrant:latest
container_name: memrag-qdrant
ports:
- "6333:6333"
- "6334:6334"
volumes:
- qdrant_data:/qdrant/storage
restart: unless-stopped
dynamodb-local:
image: amazon/dynamodb-local:latest
container_name: memrag-dynamodb
ports:
- "8001:8000"
command: "-jar DynamoDBLocal.jar -inMemory -sharedDb"
restart: unless-stopped
postgres:
image: postgres:16-alpine
container_name: memrag-postgres
ports:
- "5432:5432"
environment:
POSTGRES_DB: memrag
POSTGRES_USER: memrag
POSTGRES_PASSWORD: memrag
volumes:
- postgres_data:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U memrag -d memrag"]
interval: 5s
timeout: 5s
retries: 5
restart: unless-stopped
backend:
build: ./backend
container_name: memrag-backend
ports:
- "8000:8000"
depends_on:
redis:
condition: service_healthy
qdrant:
condition: service_started
dynamodb-local:
condition: service_started
postgres:
condition: service_healthy
env_file:
- .env
environment:
- DEBUG=true
- QDRANT_URL=http://qdrant:6333
- DYNAMODB_ENDPOINT_URL=http://dynamodb-local:8000
- DATABASE_URL=postgresql+asyncpg://memrag:memrag@postgres:5432/memrag
- REDIS_URL=redis://redis:6379/0
restart: unless-stopped
volumes:
qdrant_data:
postgres_data:
redis_data:
# http://localhost:8000/docs
# http://localhost:6333/dashboard
# http://localhost:8001 (DynamoDB Local — dùng AWS CLI hoặc NoSQLWorkbench để xem)