I'm following the getting started guide (How-To: Run Neo4j in Docker - Developer Guides) with this command:
docker run \
--name testneo4j --platform linux/amd64 \
-p7474:7474 -p7687:7687 \
-d \
-v $HOME/neo4j/data:/data \
-v $HOME...
I'm using neo4j:latest - I checked DockerHub but didn't see a numerical version associated with "latest".
Here's the output:
* Trying ::1:7474...
* Connected to localhost (::1) port 7474 (#0)
> GET / HTTP/1.1
> Host: localhost:7474
> User-Agent: c...