Last active
September 5, 2020 21:12
-
-
Save bradtumy/7bd310c84a66039cd4499315abe7e1b3 to your computer and use it in GitHub Desktop.
docker run neo4j
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
## first start | |
docker run \ | |
--name testneo4j \ | |
-p7474:7474 -p7687:7687 \ | |
-d \ | |
-v $HOME/neo4j/data:/data \ | |
-v $HOME/neo4j/logs:/logs \ | |
-v $HOME/neo4j/import:/var/lib/neo4j/import \ | |
-v $HOME/neo4j/plugins:/plugins \ | |
--env NEO4J_AUTH=neo4j/test \ | |
neo4j:latest | |
## restart | |
docker start testneo4j | |
## stop | |
docker stop testneo4j |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment