Skip to content
Merged
Changes from 1 commit
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
15 changes: 13 additions & 2 deletions modules/dapr/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,29 @@ docs:
maintainer: official
example: |
```java
var dapr = new DaprContainer("daprio/daprd:1.16.0");
var dapr = new DaprContainer("daprio/daprd:1.16.4");
dapr.start();
```
installation: |
```xml
<dependency>
<groupId>io.dapr</groupId>
<artifactId>testcontainers-dapr</artifactId>
<version>1.16.0</version>
<version>1.16.4</version>
<scope>test</scope>
</dependency>
```
- id: nodejs
url: https://github.com/dapr/testcontainer-node
maintainer: official
example: |
```javascript
const dapr = await new DaprContainer("daprio/daprd:1.16.4").start();
```
installation: |
```bash
npm install @dapr/testcontainer-node --save-dev
```
description: |
Dapr is a CNCF and open-source project that enables developers with consistent application-level APIs to develop secure, scalable, and resilient cloud-native applications.
---