You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**Mongodb**: MongoDB is a free and open-source cross-platform document-oriented database program. Classified as a NoSQL database program, MongoDB uses JSON-like documents with schemas.
7
+
8
+
== How to install with Docker
9
+
10
+
1. Install docker: https://www.docker.com/
11
+
2. https://hub.docker.com/_/mongo
12
+
3. Run docker command:
13
+
14
+
[source, bash]
15
+
----
16
+
docker run -d --name mongodb-instance -p 27017:27017 mongo
0 commit comments