Skip to content

Commit 47e804e

Browse files
committed
docs: update documentation readmeadoc
Signed-off-by: Otavio Santana <[email protected]>
1 parent dbe9819 commit 47e804e

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.adoc

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
= arangodb-java-2025
22
:toc: auto
33

4-
image::http://www.jnosql.org/img/logos/ArangoDB.png[ArangoDB, width=200px]
4+
image::http://www.jnosql.org/img/logos/mongodb.png[MongoDB, width=200px]
55

6-
**ArangoDB**: ArangoDB is a native multi-model database system developed by triAGENS GmbH. The database system supports three important data models (key/value, documents, graphs) with one database core and a unified query language AQL (ArangoDB Query Language). The query language is declarative and allows the combination of different data access patterns in a single query. ArangoDB is a NoSQL database system but AQL is similar in many ways to SQL.
76

8-
== How to install with Docker
7+
**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.
98

9+
== How to install with Docker
1010

1111
image::https://d1q6f0aelx0por.cloudfront.net/product-logos/library-docker-logo.png[]
1212

13-
* Install docker: https://www.docker.com/
14-
* https://hub.docker.com/_/arangodb
15-
* Run docker command:
13+
1. Install docker: https://www.docker.com/
14+
2. https://hub.docker.com/_/mongo
15+
3. Run docker command:
1616

1717
[source, bash]
1818
----
19-
docker run -e ARANGO_NO_AUTH=1 -d --name arangodb-instance -p 8529:8529 -d arangodb/arangodb
19+
docker run -d --name mongodb-instance -p 27017:27017 mongo
2020
----

0 commit comments

Comments
 (0)