https://github.com/saagie/docker-neo4j
Neo4j
https://github.com/saagie/docker-neo4j
Last synced: 2 months ago
JSON representation
Neo4j
- Host: GitHub
- URL: https://github.com/saagie/docker-neo4j
- Owner: saagie
- Created: 2018-03-30T10:12:48.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-04-06T15:02:23.000Z (about 8 years ago)
- Last Synced: 2025-01-01T10:19:25.072Z (over 1 year ago)
- Language: Shell
- Size: 7.81 KB
- Stars: 0
- Watchers: 9
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Neo4j
Docker image base on offical Neo4j image.
The only difference is the path of mounted volume where to store data: `/data-neo4j` instead of `/data`.
## Run it
`docker run -d --rm --name neo4j -p7474:7474 -p7687:7687 -v $(pwd)/data-neo4j:/data-neo4j saagie/docker-neo4j`
### Customizing ports
If you want to run Neo4j web interface on another port (default is 7474), you can set a `NEO4J_dbms_connector_http` environment variable.
If you want to customize Bolt port, you can set `NEO4J_dbms_connector_bolt`
Example:
`docker run -d --rm --name neo4j -p1234:1234 -p9876:9876 --env NEO4J_dbms_connector_http=1234 --env NEO4J_dbms_connector_bolt=9876 -v $(pwd)/data-neo4j:/data-neo4j saagie/docker-neo4j`