An open API service indexing awesome lists of open source software.

https://github.com/soujava/jnosql-1-0-se

This is a sample project running on Java SE, MongoDB and Eclipse JNoSQL new version
https://github.com/soujava/jnosql-1-0-se

Last synced: 3 months ago
JSON representation

This is a sample project running on Java SE, MongoDB and Eclipse JNoSQL new version

Awesome Lists containing this project

README

        

= Eclipse JNoSQL 1.0.0 sample release

This is a sample project running on Java SE, MongoDB, and Eclipse JNoSQL's new version: 1.0.0

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/
1. https://hub.docker.com/_/mongo
1. Run docker command:

[source, bash]
----
docker run -d --name mongodb-instance -p 27017:27017 mongo
----