Skip to content

Commit 737865f

Browse files
authored
Upgrade ryuk image to 0.3.3 (#4581)
1 parent 69cf13c commit 737865f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

core/src/main/java/org/testcontainers/utility/ResourceReaper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ public static String start(String hostIpAddress, DockerClient client) {
9595
@SneakyThrows(InterruptedException.class)
9696
public static String start(DockerClient client) {
9797
String ryukImage = ImageNameSubstitutor.instance()
98-
.apply(DockerImageName.parse("testcontainers/ryuk:0.3.2"))
98+
.apply(DockerImageName.parse("testcontainers/ryuk:0.3.3"))
9999
.asCanonicalNameString();
100100
DockerClientFactory.instance().checkAndPullImage(client, ryukImage);
101101

docs/features/configuration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ It takes a couple of seconds, but if you want to speed up your tests, you can di
4747
Testcontainers uses public Docker images to perform different actions like startup checks, VNC recording and others.
4848
Some companies disallow the usage of Docker Hub, but you can override `*.image` properties with your own images from your private registry to workaround that.
4949

50-
> **ryuk.container.image = testcontainers/ryuk:0.3.2**
50+
> **ryuk.container.image = testcontainers/ryuk:0.3.3**
5151
> Performs fail-safe cleanup of containers, and always required (unless [Ryuk is disabled](#disabling-ryuk))
5252
5353
> **tinyimage.container.image = alpine:3.14**
@@ -74,7 +74,7 @@ Some companies disallow the usage of Docker Hub, but you can override `*.image`
7474
7575
## Customizing Ryuk resource reaper
7676

77-
> **ryuk.container.image = testcontainers/ryuk:0.3.2**
77+
> **ryuk.container.image = testcontainers/ryuk:0.3.3**
7878
> The resource reaper is responsible for container removal and automatic cleanup of dead containers at JVM shutdown
7979
8080
> **ryuk.container.privileged = false**

0 commit comments

Comments
 (0)