From 9ce176f19217a66c97b53e3de21f4a937b8ee839 Mon Sep 17 00:00:00 2001 From: Dinesh Udayakumar Date: Wed, 29 Jan 2025 21:09:17 -0500 Subject: [PATCH] Update README.md Changed the image name mongodb:latest to mongo:latest to run the mongodb container locally as mongodb image does not exist. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6b7e3b9..ef5be9b 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ Open your browser and type `http://localhost:5173` ### Run the mongodb container -`docker run --network=demo --name mongodb -d -p 27017:27017 -v ~/opt/data:/data/db mongodb:latest` +`docker run --network=demo --name mongodb -d -p 27017:27017 -v ~/opt/data:/data/db mongo:latest` ### Build the server