NOTE: Supported images are available in the official image library on Docker Hub. Please use those for production use.
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
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
Please create issues and pull requests in the Github repository.