-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
44 lines (39 loc) · 818 Bytes
/
docker-compose.yml
File metadata and controls
44 lines (39 loc) · 818 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
version: "3.9"
services:
postgres:
image: postgres:15
container_name: postgres_db
environment:
POSTGRES_USER: admin
POSTGRES_PASSWORD: admin123
POSTGRES_DB: mydb
ports:
- "5432:5432"
volumes:
- ./postgres_data:/var/lib/postgresql/data
qdrant:
image: qdrant/qdrant:latest
container_name: qdrant_db
ports:
- "6333:6333" # REST API
- "6334:6334" # gRPC
volumes:
- ./qdrant_data:/qdrant/storage
redis:
image: redis:7
container_name: redis_db
ports:
- "6379:6379"
volumes:
- ./redis_data:/data
redisinsight:
image: redis/redisinsight:latest
container_name: redisinsight
ports:
- "6380:5540"
depends_on:
- redis
volumes:
postgres_data:
qdrant_data:
redis_data: