Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/flavienbwk/neo4j-docker
Dockerized Neo4j instance with compose.
https://github.com/flavienbwk/neo4j-docker
docker docker-compose graph-databases neo4j
Last synced: 26 days ago
JSON representation
Dockerized Neo4j instance with compose.
- Host: GitHub
- URL: https://github.com/flavienbwk/neo4j-docker
- Owner: flavienbwk
- Created: 2019-12-04T09:41:26.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2022-07-16T20:52:12.000Z (over 2 years ago)
- Last Synced: 2024-05-01T19:07:37.086Z (8 months ago)
- Topics: docker, docker-compose, graph-databases, neo4j
- Size: 7.81 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Neo4j Docker
Dockerized Neo4j instance with compose.
## Run
```bash
docker-compose up -d
```> To edit configuration, [see the official documentation](https://neo4j.com/docs/operations-manual/current/docker/configuration/).
You can now visit [`localhost:7474`](localhost:7474) (default credentials: `neo4j`/`neo4jj`)
## Architecture
| Directory | Intent |
| --------- | ------------------------------------------------------------ |
| `data/` | Used to persist the Neo4j data |
| `import/` | Place your files there to import data (e.g: with `LOAD CSV`) |
| `logs/` | Logs of your Neo4j instance will appear here |## Importing files
To import files, place your files inside the `import/` directory and you will be able to import them through Cypher commands.