Skip to content

Instantly share code, notes, and snippets.

@if6was9
Created February 11, 2019 16:53
Show Gist options
  • Select an option

  • Save if6was9/5f0c0ac04f0afeefe96a85c695f3668d to your computer and use it in GitHub Desktop.

Select an option

Save if6was9/5f0c0ac04f0afeefe96a85c695f3668d to your computer and use it in GitHub Desktop.
#!/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