Skip to content

Commit 9ef2e11

Browse files
authored
Add dotnet section to qdrant (#125)
1 parent 4e896fd commit 9ef2e11

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

modules/qdrant/index.md

+14
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,20 @@ docs:
3333
```bash
3434
go get github.com/testcontainers/testcontainers-go/modules/qdrant
3535
```
36+
- id: dotnet
37+
url: https://www.nuget.org/packages/Testcontainers.Qdrant
38+
maintainer: core
39+
example: |
40+
```csharp
41+
var qdrantContainer = new QdrantBuilder()
42+
.WithImage("qdrant/qdrant:v1.13.4")
43+
.Build();
44+
await qdrantContainer.StartAsync();
45+
```
46+
installation: |
47+
```bash
48+
dotnet add package Testcontainers.Qdrant
49+
```
3650
- id: nodejs
3751
url: https://node.testcontainers.org/modules/qdrant/
3852
maintainer: core

0 commit comments

Comments
 (0)