添加GraphRAG后端

This commit is contained in:
龙澳
2026-03-31 17:18:30 +08:00
parent 7b1b92d825
commit d2cf97387b
9 changed files with 601 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
services:
neo4j:
image: neo4j:5-community
container_name: dt_neo4j
ports:
- "7474:7474"
- "7687:7687"
environment:
NEO4J_AUTH: neo4j/dtmap2024
NEO4J_server_memory_heap_initial__size: 512m
NEO4J_server_memory_heap_max__size: 1G
volumes:
- neo4j_data:/data
- neo4j_logs:/logs
healthcheck:
test: ["CMD", "neo4j", "status"]
interval: 10s
timeout: 5s
retries: 10
volumes:
neo4j_data:
neo4j_logs: