Skip to content

Instantly share code, notes, and snippets.

@ahmetkizilay
Last active September 11, 2015 23:23
Show Gist options
  • Save ahmetkizilay/e20fa667d35a2671e645 to your computer and use it in GitHub Desktop.
Save ahmetkizilay/e20fa667d35a2671e645 to your computer and use it in GitHub Desktop.
neo4j docker code
docker run -i -t -d -e NEO4J_AUTH=none --name neo4j --cap-add=SYS_RESOURCE -p 7474:7474 tpires/neo4j
docker run -i -t -d -e NEO4J_AUTH=username:password --name neo4j --cap-add=SYS_RESOURCE -p 7474:7474 tpires/neo4j
docker pull tpires/neo4j
docker run -i -t -d -e NEO4J_AUTH=none --name neo4j --cap-add=SYS_RESOURCE -v <path-to-local-folder>:/var/lib/neo4j/data/graph.db -p 7474:7474 tpires/neo4j
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment