From 3337249f8146b7d63dec3c0cb4792d4e0a777c37 Mon Sep 17 00:00:00 2001 From: Srinadh Bhattiprolu Date: Fri, 26 Dec 2025 17:51:26 -0500 Subject: [PATCH 1/3] feat(module): Add Java implementation to Valkey listing --- modules/valkey/index.md | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/modules/valkey/index.md b/modules/valkey/index.md index a6065e6..28bf394 100644 --- a/modules/valkey/index.md +++ b/modules/valkey/index.md @@ -15,6 +15,25 @@ docs: ```bash go get github.com/testcontainers/testcontainers-go/modules/valkey ``` + - id: java + url: https://github.com/ss-bhatt/testcontainers-java-valkey + maintainer: community + example: | + ```java + try (ValkeyContainer valkey = new ValkeyContainer(DockerImageName.parse("valkey/valkey:8"))) { + valkey.start(); + // use valkey.getConnectionString() + } + ``` + installation: | + ```xml + + io.github.ss-bhatt + testcontainers-valkey + 1.0.0-SNAPSHOT + test + + ``` - id: nodejs url: https://node.testcontainers.org/modules/valkey/ maintainer: core @@ -40,4 +59,4 @@ docs: ``` description: | Valkey is an open source (BSD) high-performance key/value datastore that supports a variety of workloads such as caching, message queues, and can act as a primary database. Valkey can run as either a standalone daemon or in a cluster, with options for replication and high availability. ---- +--- \ No newline at end of file From 8d619661cc86f53a8ba5bd6cc685653bccc20819 Mon Sep 17 00:00:00 2001 From: Srinadh Bhattiprolu Date: Sun, 28 Dec 2025 23:31:52 -0500 Subject: [PATCH 2/3] fix: update java version to 1.0.0 --- modules/valkey/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/valkey/index.md b/modules/valkey/index.md index 28bf394..c0eac55 100644 --- a/modules/valkey/index.md +++ b/modules/valkey/index.md @@ -30,7 +30,7 @@ docs: io.github.ss-bhatt testcontainers-valkey - 1.0.0-SNAPSHOT + 1.0.0 test ``` From 9659ad92d003d0909267658ca9e05c1f1370a61a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edd=C3=BA=20Mel=C3=A9ndez=20Gonzales?= Date: Sat, 17 Jan 2026 22:39:34 -0600 Subject: [PATCH 3/3] Update modules/valkey/index.md --- modules/valkey/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/valkey/index.md b/modules/valkey/index.md index c0eac55..06f33b5 100644 --- a/modules/valkey/index.md +++ b/modules/valkey/index.md @@ -59,4 +59,4 @@ docs: ``` description: | Valkey is an open source (BSD) high-performance key/value datastore that supports a variety of workloads such as caching, message queues, and can act as a primary database. Valkey can run as either a standalone daemon or in a cluster, with options for replication and high availability. ---- \ No newline at end of file +---