-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
38 lines (36 loc) · 971 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
38 lines (36 loc) · 971 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
services:
# Qdrant vector database
qdrant:
image: qdrant/qdrant:latest
ports:
- "6333:6333"
- "6334:6334" # gRPC port
volumes:
- qdrant_storage:/qdrant/storage
environment:
- QDRANT__SERVICE__HTTP_PORT=6333
- QDRANT__SERVICE__GRPC_PORT=6334
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:6333/collections"]
interval: 30s
timeout: 10s
retries: 3
start_period: 40s
# MCP Deck dashboard + router.
# Uses config/docker.yaml (vector_store.host: qdrant, web_ui bound to 0.0.0.0).
mcpdeck:
build: .
command: ["mcpdeck", "start", "--no-setup", "--config", "/app/config/docker.yaml"]
ports:
- "8080:8080" # Web UI / dashboard
volumes:
- ./config:/app/config
- ./logs:/app/logs
- ./docs:/app/docs
depends_on:
qdrant:
condition: service_healthy
restart: unless-stopped
volumes:
qdrant_storage:
driver: local