Add Docker Compose config for Neo4j with auto-restart
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
11494060e8
commit
797924bcb9
1 changed files with 15 additions and 0 deletions
15
docker-compose.yml
Normal file
15
docker-compose.yml
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
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
|
||||
volumes:
|
||||
- hp_neo4j_data:/data
|
||||
|
||||
volumes:
|
||||
hp_neo4j_data:
|
||||
Loading…
Add table
Reference in a new issue