-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathdocker-compose.dev.yml
More file actions
43 lines (43 loc) · 878 Bytes
/
docker-compose.dev.yml
File metadata and controls
43 lines (43 loc) · 878 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:
postgres:
image: postgres:15
restart: unless-stopped
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: root
POSTGRES_DB: dcup
ports:
- "5432:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
redis:
image: redis:7.2.4
restart: unless-stopped
ports:
- "${REDIS_DB_PORT:-6379}:6379"
healthcheck:
test: ["CMD", "redis-cli", "ping"]
interval: 1s
timeout: 3s
retries: 30
volumes:
- redis_data:/data
qdrant:
image: qdrant/qdrant
restart: unless-stopped
environment:
QDRANT__SERVICE__GRPC_PORT: 6334
ports:
- "6333:6333"
volumes:
- qdrant_data:/data
parser:
build:
context: ./svc_parser/
dockerfile: Dockerfile
ports:
- "9000:9000"
volumes:
postgres_data:
redis_data:
qdrant_data: