28 lines
570 B
YAML
28 lines
570 B
YAML
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:
|