Skip to content

Commit 8f34027

Browse files
authored
Update readme with correct neo4j version (#384)
* Update README.md with correct neo4j version
1 parent 2b9ab52 commit 8f34027

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,17 +58,17 @@ addFactor!(dfg, [v1, v2], DFGFactor{Int, :Symbol}(:f1)) # Rather use a RoME-type
5858
Please see the documentation for more information on interacting with the factor graph.
5959

6060
## Setting up a Quick Neo4j Database
61-
The simplest way to set up a test database is with Docker.
61+
The simplest way to set up a test database is with Docker. The Neo4j driver currenly doesn't work with Neo4j 4.0, version 3.5 can be used as in this example.
6262

6363
To pull the Neo4j image:
6464
```bash
65-
docker pull neo4j
65+
docker pull neo4j:3.5
6666
```
6767

6868
To run the image with user `neo4j` and password `test`:
6969

7070
```bash
71-
docker run -d --publish=7474:7474 --publish=7687:7687 --env NEO4J_AUTH=neo4j/test neo4j
71+
docker run -d --publish=7474:7474 --publish=7687:7687 --env NEO4J_AUTH=neo4j/test neo4j:3.5
7272
```
7373

7474
> **Note** If you just installed docker and having permission issues, please see [this ask Ubuntu forum](https://askubuntu.com/questions/941816/permission-denied-when-running-docker-after-installing-it-as-a-snap).

0 commit comments

Comments
 (0)