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
Dependency:
dotnet add package Testcontainers.CouchDb --version 3.9.0
Usage:
var couchDbContainer = new CouchDbBuilder()
.WithImage("couchdb:3.3")
.Build();
await couchDbContainer.StartAsync();