https://github.com/baynezy/learn-neo4j
https://github.com/baynezy/learn-neo4j
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/baynezy/learn-neo4j
- Owner: baynezy
- Created: 2018-07-18T19:13:02.000Z (almost 7 years ago)
- Default Branch: develop
- Last Pushed: 2018-10-30T05:17:38.000Z (over 6 years ago)
- Last Synced: 2025-01-21T20:33:52.562Z (3 months ago)
- Language: Dockerfile
- Size: 8.68 MB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Learn Neo4j
This is a learning project for working with Neo4j.
## Build Docker Image
```powershell
docker build -t apoc-neo4j .
```## Start via Docker
``` powershell
$path = $(Get-Location).Path
$nonwindowspath = ($path -replace "\\","/")
$data = "$($nonwindowspath)/data"
$logs = "$($nonwindowspath)/logs"docker run --rm -p 7474:7474 -p 7687:7687 --volume="$($data):/data" --volume="$($logs):/logs" apoc-neo4j
```