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

Documentation

Java Go .NET

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