hp_chatbot/docker-compose.yml
michael 86fb3e047d Add APOC plugin to Neo4j Docker config
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-23 09:58:37 -06:00

16 lines
436 B
YAML

services:
neo4j:
image: neo4j:5
container_name: hp-neo4j
restart: unless-stopped
ports:
- "7688:7687" # Bolt protocol (mapped to 7688 to avoid conflict with other Neo4j instances)
- "7475:7474" # Browser UI (mapped to 7475 to avoid conflict)
environment:
NEO4J_AUTH: neo4j/hp-graphrag-2024
NEO4J_PLUGINS: '["apoc"]'
volumes:
- hp_neo4j_data:/data
volumes:
hp_neo4j_data: