Skip to content

Commit f268adc

Browse files
authored
Add Valkey Java module (#167)
1 parent 888d4f5 commit f268adc

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

modules/valkey/index.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,25 @@ docs:
1515
```bash
1616
go get github.com/testcontainers/testcontainers-go/modules/valkey
1717
```
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+
```
1837
- id: nodejs
1938
url: https://node.testcontainers.org/modules/valkey/
2039
maintainer: core

0 commit comments

Comments
 (0)