-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.local.yml
More file actions
26 lines (24 loc) · 991 Bytes
/
Copy pathdocker-compose.local.yml
File metadata and controls
26 lines (24 loc) · 991 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
# Local connection test for the Qdrant backend adapter. Application
# logic loops on the in-memory backend (Index interface) and does not
# need this stack — bring it up only when verifying that the qdrant
# adapter actually talks to Qdrant (collection creation, upsert,
# filter, query).
#
# Production Kowloon points at Qdrant Cloud via KOWLOON_VECTOR_ENDPOINT;
# this compose stands up the same server locally on 127.0.0.1:6333 with
# no authentication (matches the "no api-key needed on local" path).
#
# The milvus adapter (internal/backend/milvus) is still available and
# tested — Kowloon commits to the Index interface, not to Qdrant. If a
# future workflow wants Milvus locally, revive the previous compose
# from git history (etcd + seaweedfs + milvus standalone) rather than
# stacking three services here.
services:
qdrant:
image: qdrant/qdrant:v1.13.0
ports:
- "127.0.0.1:6333:6333"
volumes:
- qdrant-data:/qdrant/storage
volumes:
qdrant-data: