diff --git a/core/src/main/java/org/testcontainers/dockerclient/DockerClientProviderStrategy.java b/core/src/main/java/org/testcontainers/dockerclient/DockerClientProviderStrategy.java index 557e8ba6cdf..8542cf281ac 100644 --- a/core/src/main/java/org/testcontainers/dockerclient/DockerClientProviderStrategy.java +++ b/core/src/main/java/org/testcontainers/dockerclient/DockerClientProviderStrategy.java @@ -230,7 +230,8 @@ protected boolean test() { public static DockerClientProviderStrategy getFirstValidStrategy(List strategies) { if (FAIL_FAST_ALWAYS.get()) { throw new IllegalStateException( - "Previous attempts to find a Docker environment failed. Will not retry. Please see logs and check configuration" + "Previous attempts to find a Docker environment failed. Will not retry. Please see logs and check configuration.\n" + + "To allow retries again, you may have to stop any long-running build daemons (eg, `gradle --stop`, `mvnd --stop`)." ); }