Skip to content

Commit ddf7458

Browse files
committed
chore[docker]: Qdrant 서비스 Docker Compose 설정 추가
1 parent eb9b851 commit ddf7458

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

backend/docker-compose.yml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,20 @@ services:
4444
timeout: 5s
4545
retries: 10
4646

47+
qdrant:
48+
image: qdrant/qdrant:v1.13.4
49+
container_name: qdrant-new
50+
restart: unless-stopped
51+
ports:
52+
- "6333:6333" # HTTP API
53+
- "6334:6334" # gRPC API
54+
healthcheck:
55+
test: [ "CMD", "curl", "-f", "http://localhost:6333/healthz" ]
56+
interval: 10s
57+
timeout: 5s
58+
retries: 10
59+
4760
volumes:
4861
mysql-data:
49-
redis-data:
62+
redis-data:
63+
qdrant-data:

0 commit comments

Comments
 (0)