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

Documentation

.NET

Description

CouchDB is an open-source document-oriented NoSQL clustered database that allows you to run a single logical database server on any number of servers or VM.

Examples

var couchDbContainer = new CouchDbBuilder()
  .WithImage("couchdb:3.3")
  .Build();
await couchDbContainer.StartAsync();