Docker installation on WSL
Pre-request: Of course you need to install Linux on WSL and install docker on the Linux
- Startup and login to wsl system (In my laptop it's Ubuntu)
wsl -d Ubuntu
- Run
neo4j:latest`` using network host mode
docker run -d --name neo4j --network host neo4j` - Get the wsl Ubuntu ip using ip
It's 172.29.106.157 in my case - Access the neo4j server
http://172.29.106.157:7474/browser/
The default user and password isneo4j/neo4j
- You can now do the experiment right now.
November 17, 2024About 2 min