Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions modules/grafana/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,20 @@ docs:
```bash
go get github.com/testcontainers/testcontainers-go/modules/grafanalgtm
```
- id: dotnet
url: https://www.nuget.org/packages/Testcontainers.Grafana
maintainer: core
example: |
```csharp
var grafanaContainer = new GrafanaBuilder()
.WithImage("grafana/grafana:12.2")
.Build();
await grafanaContainer.StartAsync();
```
installation: |
```bash
dotnet add package Testcontainers.Grafana
```
description: |
Grafana is the open source analytics & monitoring solution for every database.
---
22 changes: 22 additions & 0 deletions modules/kurrentdb/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
title: KurrentDB
categories:
- nosql-database
docs:
- id: dotnet
url: https://www.nuget.org/packages/Testcontainers.KurrentDb
maintainer: core
example: |
```csharp
var kurrentDbContainer = new KurrentDbBuilder()
.WithImage("kurrentplatform/kurrentdb:25.1")
.Build();
await kurrentDbContainer.StartAsync();
```
installation: |
```bash
dotnet add package Testcontainers.KurrentDb
```
description: |
KurrentDB is an event-native database designed specifically to store, process, and deliver application state changes, known as events.
---
14 changes: 14 additions & 0 deletions modules/mosquitto/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,20 @@ title: Mosquitto
categories:
- message-broker
docs:
- id: dotnet
url: https://www.nuget.org/packages/Testcontainers.Mosquitto
maintainer: core
example: |
```csharp
var mosquittoContainer = new MosquittoBuilder()
.WithImage("eclipse-mosquitto:2.0")
.Build();
await mosquittoContainer.StartAsync();
```
installation: |
```bash
dotnet add package Testcontainers.Mosquitto
```
- id: python
url: https://testcontainers-python.readthedocs.io/en/latest/modules/mqtt/README.html
maintainer: core
Expand Down
14 changes: 14 additions & 0 deletions modules/playwright/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,20 @@ title: Playwright
categories:
- web
docs:
- id: dotnet
url: https://www.nuget.org/packages/Testcontainers.Playwright
maintainer: core
example: |
```csharp
var playwrightContainer = new PlaywrightBuilder()
.WithImage("mcr.microsoft.com/playwright:v1.55.1")
.Build();
await playwrightContainer.StartAsync();
```
installation: |
```bash
dotnet add package Testcontainers.Playwright
```
- id: nodejs
url: https://github.com/javierlopezdeancos/testcontainers-node-playwright
maintainer: community
Expand Down
14 changes: 14 additions & 0 deletions modules/toxiproxy/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,20 @@ docs:
```bash
go get github.com/testcontainers/testcontainers-go/modules/toxiproxy
```
- id: dotnet
url: https://www.nuget.org/packages/Testcontainers.Toxiproxy
maintainer: core
example: |
```csharp
var toxiproxyContainer = new ToxiproxyBuilder()
.WithImage("ghcr.io/shopify/toxiproxy:2.12.0")
.Build();
await toxiproxyContainer.StartAsync();
```
installation: |
```bash
dotnet add package Testcontainers.Toxiproxy
```
- id: nodejs
url: https://node.testcontainers.org/modules/toxiproxy/
maintainer: core
Expand Down