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

Documentation

Java .NET

Description

Azure Cosmos DB is a fully managed, horizontally scalable, NoSQL and relational database.

Examples

var cosmos = new CosmosDBEmulatorContainer(
  DockerImageName.parse("mcr.microsoft.com/cosmosdb/linux/azure-cosmos-emulator:latest")
);
cosmos.start();
var cosmosDbContainer = new CosmosDbBuilder()
  .WithImage("mcr.microsoft.com/cosmosdb/linux/azure-cosmos-emulator:latest")
  .Build();
await cosmosDbContainer.StartAsync();