Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/neo4j/docker-neo4j
Docker Images for the Neo4j Graph Database
https://github.com/neo4j/docker-neo4j
Last synced: about 1 month ago
JSON representation
Docker Images for the Neo4j Graph Database
- Host: GitHub
- URL: https://github.com/neo4j/docker-neo4j
- Owner: neo4j
- License: apache-2.0
- Created: 2015-04-27T08:50:44.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-09-20T10:16:02.000Z (about 2 months ago)
- Last Synced: 2024-09-29T17:40:41.218Z (about 1 month ago)
- Language: Java
- Size: 1.36 MB
- Stars: 330
- Watchers: 65
- Forks: 172
- Open Issues: 58
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-neo4j - docker-neo4j - Docker Images for the Neo4j Graph Database. (REST API / Other)
- awesome-starred - neo4j/docker-neo4j - Docker Images for the Neo4j Graph Database (others)
README
*NOTE:* Supported images are available in the [official image library](https://hub.docker.com/_/neo4j/) on Docker Hub.
Please use those in production.# Using the Neo4j Docker Image
Documentation for the Neo4j image can be found [here](https://neo4j.com/docs/operations-manual/current/deployment/single-instance/docker/).
You can start a Neo4j container like this:
```
docker run \
--publish=7474:7474 --publish=7687:7687 \
--volume=$HOME/neo4j/data:/data \
--volume=$HOME/neo4j/logs:/logs \
neo4j:latest
```To start a Neo4j Enterprise Edition container, you can run:
```
docker run \
--publish=7474:7474 --publish=7687:7687 \
--env=NEO4J_ACCEPT_LICENSE_AGREEMENT=yes \
--volume=$HOME/neo4j/data:/data \
--volume=$HOME/neo4j/logs:/logs \
neo4j:enterprise
```Mounting the `/data` and `/logs` folder is optional,
but it means that data can persist between closing and reopening Neo4j containers.# Neo4j images for ARM64
From 4.4.0 and onwards, Neo4j images have been available for ARM64 architectures through [Docker Hub](https://hub.docker.com/_/neo4j/).
For earlier versions, we provide unsupported and untested builds of ARM64 Neo4j community edition from 4.0.0 to 4.3.23.
These are unsuitable for production use, but may be useful for experimentation or hobbyists.They are available on Docker hub at:
https://hub.docker.com/r/neo4j/neo4j-arm64-experimental
The images take the name format `neo4j/neo4j-arm64-experimental:-arm64`.
Example usage:```shell script
docker run \
--publish=7474:7474 --publish=7687:7687 \
--volume=$HOME/neo4j/data:/data \
--volume=$HOME/neo4j/logs:/logs \
neo4j/neo4j-arm64-experimental:4.1.0-arm64
```# Building and Developing the Neo4j Docker Image
See [DEVELOPMENT.md](DEVELOPMENT.md)
# Getting support and contributing
For bug reports and feature requests, please create issues and pull requests against this Github repository.
If you need guidance with using Neo4j you can ask questions here: https://community.neo4j.com/