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
Last updated