docs/neo4j
Docker Library Bot af8cc4a457 Run update.sh 2025-06-09 15:10:53 -07:00
..
README-short.txt Updates to Neo4j documentation 2015-11-13 16:21:40 +00:00
README.md Run update.sh 2025-06-09 15:10:53 -07:00
content.md Link "getting help" to community forums and update logo and README content 2021-05-25 16:32:52 -07:00
get-help.md Neo4j Link "getting help" to community forums (#1886) 2021-03-09 11:14:46 -08:00
github-repo Add github-repo file to every image repo 2016-05-12 16:33:19 -07:00
license.md Added Neo4j license.md 2017-12-11 11:06:24 +01:00
logo.png Link "getting help" to community forums and update logo and README content 2021-05-25 16:32:52 -07:00
maintainer.md Refactor the way information (especially links) are presented 2017-04-21 17:48:19 -07:00
metadata.json Add Docker Hub categories (#2446) 2024-05-17 11:44:00 -07:00

README.md

Quick reference

Supported tags and respective Dockerfile links

Quick reference (cont.)

What is Neo4j?

Neo4j is the world's leading graph database, with native graph storage and processing. You can learn more here.

logo

How to use this image

You can start a Neo4j container like this:

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

which allows you to access neo4j through your browser at http://localhost:7474.

This binds two ports (7474 and 7687) for HTTP and Bolt access to the Neo4j API. A volume is bound to /data to allow the database to be persisted outside the container.

By default, this requires you to login with neo4j/neo4j and change the password. You can, for development purposes, disable authentication by passing --env=NEO4J_AUTH=none to docker run.

Documentation

For more examples and complete documentation please go to our manual here.

License

View licensing information for the software contained in this image.

As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained).

Some additional license information which was able to be auto-detected might be found in the repo-info repository's neo4j/ directory.

As for any pre-built image usage, it is the image user's responsibility to ensure that any use of this image complies with any relevant licenses for all software contained within.