From 1dac3ad175b19c04e8c5caa5f588be8076cd4073 Mon Sep 17 00:00:00 2001 From: Tom Hombergs Date: Tue, 9 Feb 2021 07:18:04 +1100 Subject: [PATCH] trying to fix "Docker image not found" error --- spring-boot/testcontainers/build.gradle | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spring-boot/testcontainers/build.gradle b/spring-boot/testcontainers/build.gradle index b98d0d2..493f929 100644 --- a/spring-boot/testcontainers/build.gradle +++ b/spring-boot/testcontainers/build.gradle @@ -29,9 +29,9 @@ dependencies { compile 'org.postgresql:postgresql' runtimeOnly 'com.h2database:h2' annotationProcessor 'org.projectlombok:lombok' - testCompile "org.testcontainers:testcontainers:1.12.5" - testCompile "org.testcontainers:junit-jupiter:1.12.5" - testCompile "org.testcontainers:postgresql:1.12.5" + testCompile "org.testcontainers:testcontainers:1.15.1" + testCompile "org.testcontainers:junit-jupiter:1.15.1" + testCompile "org.testcontainers:postgresql:1.15.1" }