forked from KnowledgeXLab/LeanRAG
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
42 lines (38 loc) · 908 Bytes
/
docker-compose.yml
File metadata and controls
42 lines (38 loc) · 908 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
39
40
41
42
version: '3.8'
services:
qdrant:
image: qdrant/qdrant:latest
container_name: leanrag_qdrant
ports:
- "6333:6333" # HTTP API port
- "6334:6334" # gRPC port (optional)
volumes:
- ./qdrant_data:/qdrant/storage
environment:
- QDRANT__SERVICE__HTTP_PORT=6333
- QDRANT__SERVICE__GRPC_PORT=6334
restart: unless-stopped
networks:
- leanrag_network
neo4j:
image: neo4j:5.23-community
container_name: leanrag_neo4j
ports:
- "7474:7474" # HTTP API port
- "7687:7687" # Bolt protocol port
volumes:
- ./neo4j_data:/data
- ./neo4j_logs:/logs
environment:
- NEO4J_AUTH=neo4j/test123456
- NEO4J_PLUGINS=["graph-data-science"]
restart: unless-stopped
networks:
- leanrag_network
networks:
leanrag_network:
driver: bridge
volumes:
qdrant_data:
neo4j_data:
neo4j_logs: