https://github.com/soujava/mongodb-embedded-introduction
The introduction to embedded MongoDB
https://github.com/soujava/mongodb-embedded-introduction
Last synced: 4 months ago
JSON representation
The introduction to embedded MongoDB
- Host: GitHub
- URL: https://github.com/soujava/mongodb-embedded-introduction
- Owner: soujava
- License: apache-2.0
- Created: 2025-02-16T06:17:05.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-05-15T06:54:24.000Z (7 months ago)
- Last Synced: 2025-05-15T07:39:10.287Z (7 months ago)
- Language: Java
- Size: 23.4 KB
- Stars: 0
- Watchers: 13
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.adoc
- License: LICENSE
Awesome Lists containing this project
README
= The introduction to embedded MongoDB
:toc: auto
image::http://www.jnosql.org/img/logos/mongodb.png[MongoDB, width=200px]
**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.
== How to install with Docker
image::https://d1q6f0aelx0por.cloudfront.net/product-logos/library-docker-logo.png[]
1. Install docker: https://www.docker.com/
2. https://hub.docker.com/_/mongo
3. Run docker command:
[source, bash]
----
docker run -d --name mongodb-instance -p 27017:27017 mongo
----