Skip to content

Commit 12b4127

Browse files
authored
Upgrade ryuk image to 0.3.2 (#4359)
1 parent 80f65cc commit 12b4127

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
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.1"))
98+
.apply(DockerImageName.parse("testcontainers/ryuk:0.3.2"))
9999
.asCanonicalNameString();
100100
DockerClientFactory.instance().checkAndPullImage(client, ryukImage);
101101

core/src/test/java/org/testcontainers/utility/TestcontainersConfigurationTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,8 +210,8 @@ public void shouldReadReuseFromEnvironment() {
210210

211211
@Test
212212
public void shouldTrimImageNames() {
213-
userProperties.setProperty("ryuk.container.image", " testcontainers/ryuk:0.3.1 ");
214-
assertEquals("trailing whitespace was not removed from image name property", "testcontainers/ryuk:0.3.1",newConfig().getRyukImage());
213+
userProperties.setProperty("ryuk.container.image", " testcontainers/ryuk:0.3.2 ");
214+
assertEquals("trailing whitespace was not removed from image name property", "testcontainers/ryuk:0.3.2",newConfig().getRyukImage());
215215
}
216216

217217
private TestcontainersConfiguration newConfig() {

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.1**
50+
> **ryuk.container.image = testcontainers/ryuk:0.3.2**
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.1**
77+
> **ryuk.container.image = testcontainers/ryuk:0.3.2**
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)