-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yaml
More file actions
69 lines (65 loc) · 2.18 KB
/
Copy pathcompose.yaml
File metadata and controls
69 lines (65 loc) · 2.18 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
services:
# ============================================================================
# JigenDb — local build
# ============================================================================
jigendb:
build:
context: publish/server
dockerfile: Dockerfile
ports:
- "3223:3223" # REST
- "13223:13223" # gRPC
volumes:
- jigen-data:/data
- /tmp/benchmark-data:/data/benchmarks:ro,z
environment:
- ASPNETCORE_ENVIRONMENT=Production
restart: unless-stopped
# ============================================================================
# Qdrant — vector search engine
# ============================================================================
qdrant:
image: docker.io/qdrant/qdrant:latest
ports:
- "6333:6333" # REST
- "6334:6334" # gRPC
volumes:
- qdrant-data:/qdrant/storage
environment:
QDRANT__SERVICE__GRPC_PORT: 6334
restart: unless-stopped
# ============================================================================
# Milvus — standalone mode (no minio/etcd needed for benchmarks)
# ============================================================================
milvus:
image: docker.io/milvusdb/milvus:v2.5.4
command: ["milvus", "run", "standalone"]
ports:
- "19530:19530" # gRPC
- "9091:9091" # Health/metrics
volumes:
- milvus-data:/var/lib/milvus
environment:
ETCD_USE_EMBED: "true"
COMMON_STORAGETYPE: local
restart: unless-stopped
# ============================================================================
# pgvector — PostgreSQL 17 + pgvector extension
# ============================================================================
pgvector:
image: docker.io/pgvector/pgvector:pg17
ports:
- "5432:5432"
volumes:
- pgvector-data:/var/lib/postgresql/data:z
- ./tests/ComparativeBenchmarks/init-pgvector.sql:/docker-entrypoint-initdb.d/init.sql:ro,z
environment:
POSTGRES_USER: benchmark
POSTGRES_PASSWORD: benchmark
POSTGRES_DB: vectordb
restart: unless-stopped
volumes:
jigen-data:
qdrant-data:
milvus-data:
pgvector-data: