How to run Neo4j?
This page explains how to run a Neo4j instance inside docker. For any additional information please refer to the Neo4j documentation: https://neo4j.com/docs/getting-started/
Run Neo4j inside docker
...
services:
neo4j:
image: neo4j:5-community
environment:
NEO4J_AUTH: none
NEO4J_PLUGINS: '["apoc"]'
ports:
- 7474:7474
- 7687:7687
volumes:
- neo4j_conf:/var/lib/neo4j/conf
- neo4j_data:/var/lib/neo4j/datavolumes:
...
neo4j_data:
driver: local
neo4j_conf:
driver: localRun Neo4j Desktop
Additional options
PreviousAdvanced: how can I do bulk actions with Tarentula?NextHow can I contact ICIJ for help, bug reporting or suggestions?
Last updated