Created
February 5, 2026 07:37
-
-
Save jalakoo/af32ce1eb02cf31df9946bb2cb8a65ee to your computer and use it in GitHub Desktop.
Neo4j Docker CLI Command - For running in terminal for a basic instance w/ persistent data folders
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| docker run \ | |
| --name neo4j-docker \ | |
| -p 7474:7474 -p 7473:7473 -p 7687:7687 \ | |
| -e NEO4J_AUTH=neo4j/password \ | |
| -e NEO4J_PLUGINS='["apoc","apoc-extended", "bloom","graph-data-science","genai"]' \ | |
| -e NEO4J_ACCEPT_LICENSE_AGREEMENT=yes \ | |
| -v $HOME/neo4j/docker/data:/data \ | |
| -v $HOME/neo4j/docker/logs:/logs \ | |
| -v $HOME/neo4j/docker/plugins:/plugins \ | |
| -v $HOME/neo4j/docker/import:/import \ | |
| neo4j:2025.09.0-enterprise |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment