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

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();