SciPaths-Demo / docker-compose.neo4j.yml
Beanbagdzf's picture
Upload folder using huggingface_hub
f329675 verified
Raw
History Blame Contribute Delete
511 Bytes
# Optional dedicated Neo4j if ports 7474/7687 are free.
# By default the app uses whatever answers bolt://localhost:7687
# (NEO4J_URI / NEO4J_USER / NEO4J_PASSWORD).
services:
neo4j:
image: neo4j:5.26-community
container_name: scipaths-neo4j
ports:
- "7475:7474"
- "7688:7687"
environment:
NEO4J_AUTH: neo4j/scipaths123
NEO4J_PLUGINS: '["apoc"]'
NEO4J_dbms_memory_heap_max__size: 1G
volumes:
- scipaths_neo4j_data:/data
volumes:
scipaths_neo4j_data: