Skip to content

gaeldestrem/docker-neo4j

 
 

Repository files navigation

NOTE: Supported images are available in the official image library on Docker Hub. Please use those for production use.

Using the Neo4j Docker image

Neo4j 2.3

Documentation for the Neo4j 2.3 image can be found here.

You can start a Neo4j 2.3 container like this:

docker run \
    --publish=7474:7474 \
    --volume=$HOME/neo4j/data:/data \
    neo4j:2.3

Neo4j 3.0

Documentation for the Neo4j 3.0 image can be found here.

You can start a Neo4j 3.0 container like this:

docker run \
    --publish=7474:7474 --publish=7687:7687 \
    --volume=$HOME/neo4j/data:/data \
    neo4j:3.0

Getting support and contributing

Please create issues and pull requests in the Github repository.

About

Docker Images for the Neo4j Graph Database

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 88.0%
  • Makefile 6.4%
  • Python 5.6%