We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 888d4f5 commit f268adcCopy full SHA for f268adc
modules/valkey/index.md
@@ -15,6 +15,25 @@ docs:
15
```bash
16
go get github.com/testcontainers/testcontainers-go/modules/valkey
17
```
18
+ - id: java
19
+ url: https://github.com/ss-bhatt/testcontainers-java-valkey
20
+ maintainer: community
21
+ example: |
22
+ ```java
23
+ try (ValkeyContainer valkey = new ValkeyContainer(DockerImageName.parse("valkey/valkey:8"))) {
24
+ valkey.start();
25
+ // use valkey.getConnectionString()
26
+ }
27
+ ```
28
+ installation: |
29
+ ```xml
30
+ <dependency>
31
+ <groupId>io.github.ss-bhatt</groupId>
32
+ <artifactId>testcontainers-valkey</artifactId>
33
+ <version>1.0.0</version>
34
+ <scope>test</scope>
35
+ </dependency>
36
37
- id: nodejs
38
url: https://node.testcontainers.org/modules/valkey/
39
maintainer: core
0 commit comments