Skip to content

Commit 474f508

Browse files
committed
Fix docker command
1 parent 5233b88 commit 474f508

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

README.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,14 @@ The command below runs the latest Neo4j version in Docker, setting the admin use
7474

7575
```bash
7676
docker run \
77-
-p7474:7474 \ # forward port 7474 (HTTP)
78-
-p7687:7687 \ # forward port 7687 (Bolt)
79-
-d \ # run in background
80-
-e NEO4J_AUTH=neo4j/password \ # set login credentials
77+
# forward port 7474 (HTTP)
78+
-p7474:7474 \
79+
# forward port 7687 (Bolt)
80+
-p7687:7687 \
81+
# run in background
82+
-d \
83+
# set login credentials
84+
-e NEO4J_AUTH=neo4j/password \
8185
neo4j:latest
8286
```
8387

0 commit comments

Comments
 (0)