rlugojr / docker-neo4j

Docker Images for the Neo4j Graph Database

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

License:Apache License 2.0


Languages

Language:Shell 87.0%Language:Makefile 13.0%