-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: enhance documentation at readme file
Signed-off-by: Otavio Santana <otaviopolianasantana@gmail.com>
- Loading branch information
1 parent
a0e85e6
commit ec37873
Showing
1 changed file
with
17 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,20 @@ | ||
= arangodb-java-2025 | ||
:toc: auto | ||
|
||
This repository introduces ArangoDB with java and Eclipse JNoSQL [2025] | ||
image::http://www.jnosql.org/img/logos/ArangoDB.png[ArangoDB, width=200px] | ||
|
||
**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. | ||
|
||
==== 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/_/arangodb | ||
1. Run docker command: | ||
|
||
[source, bash] | ||
---- | ||
docker run -e ARANGO_NO_AUTH=1 -d --name arangodb-instance -p 8529:8529 -d arangodb/arangodb | ||
---- |