🚀 Our inaugural State of Local Development and Testing report is live! Explore insights & best practices now

Documentation

Java .NET Node.js

Community Modules

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();
arangodb.StartAsync();
const container = await new ArangoDBContainer().start();