Created
February 11, 2019 16:53
-
-
Save if6was9/5f0c0ac04f0afeefe96a85c695f3668d to your computer and use it in GitHub Desktop.
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
| #!/bin/bash | |
| # Start Neo4j in Docker with auth distabled. | |
| # Remove the --env=NEO4j_AUTH=none line if you want password auth. | |
| # Kill the container with "docker kill neo4j" | |
| docker run \ | |
| -d --rm \ | |
| --publish=7474:7474 --publish=7687:7687 --publish=7473:7473 \ | |
| --env=NEO4J_ACCEPT_LICENSE_AGREEMENT=yes \ | |
| --env=NEO4J_AUTH=none \ | |
| --name=neo4j \ | |
| neo4j:3.5 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment