-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
33 lines (30 loc) · 885 Bytes
/
docker-compose.yml
File metadata and controls
33 lines (30 loc) · 885 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
# Runs the end-to-end demo stack: Ollama embeddings, Qdrant, and dscc-node.
# e2e_bench.cpp brings this stack up before it starts any scenario traffic.
# DSCC_THETA and DSCC_LOCK_HOLD_MS control the lock behavior inside dscc-node.
services:
qdrant:
image: qdrant/qdrant
ports:
- "6333:6333"
embedding-service:
image: ${EMBEDDING_IMAGE:-${INFINITY_IMAGE:-ollama/ollama:latest}}
ports:
- "7997:11434"
volumes:
- ./.cache/ollama:/root/.ollama
dscc-node:
build:
context: .
dockerfile: docker/Dockerfile
environment:
- PORT=50051
- THETA=${DSCC_THETA:-0.78}
- LOCK_HOLD_MS=${DSCC_LOCK_HOLD_MS:-750}
- QDRANT_HOST=qdrant
- QDRANT_PORT=6333
- QDRANT_COLLECTION=${QDRANT_COLLECTION:-dscc_memory_e2e}
depends_on:
- qdrant
- embedding-service
ports:
- "50051:50051"