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

Description

Couchbase is an open-source, distributed, multi-model, document oriented, NoSQL database.

Examples

var couchbase = new CouchbaseContainer(DockerImageName.parse(
  "couchbase/server:community-7.0.2"
));
couchbase.start();
couchbaseContainer, err := couchbase.RunContainer(ctx,
  testcontainers.WithImage("couchbase/server:community-7.0.2"),
  couchbase.WithBucket(couchbase.NewBucket("bucketName")),
)
var couchbaseContainer = new CouchbaseBuilder()
  .WithImage("couchbase:community-7.0.2")
  .Build();
await couchbaseContainer.StartAsync();
const container = await new CouchbaseContainer().start();