This commit is contained in:
Santiago Martinez-Avial
2025-12-19 20:13:00 +01:00
commit 97b7a15977
17 changed files with 1913 additions and 0 deletions

27
docker-compose.yml Normal file
View File

@@ -0,0 +1,27 @@
services:
neo4j:
image: neo4j:5
container_name: helia-neo4j
ports:
- "7474:7474" # Neo4j Browser / HTTP
- "7687:7687" # Bolt
environment:
# Matches defaults in `src/helia/graph/loader.py`
- NEO4J_AUTH=neo4j/password
volumes:
- neo4j_data:/data
- neo4j_logs:/logs
qdrant:
image: qdrant/qdrant:latest
container_name: helia-qdrant
ports:
- "6333:6333" # HTTP
- "6334:6334" # gRPC
volumes:
- qdrant_storage:/qdrant/storage
volumes:
neo4j_data:
neo4j_logs:
qdrant_storage: