🚨 AtomicJar is now part of Docker 🐋! Read the blog

Community Module

These modules are maintained by the community, outside of the Testcontainers project.

Description

ArangoDB is a free and open-source native graph database system. It supports three data models; graphs, JSON documents, and key/value.

Examples

var arango = new ArangoContainer();
arango.start();
var arangodb = new ArangoDbBuilder()
  .WithImage("arangodb:3.11.5")
  .Build();
await arangodb.StartAsync();
const container = await new ArangoDBContainer().start();