Skip to content

Commit cd29df9

Browse files
authored
Introduce new property to configure pull.timeout (#9417)
Currently, the pull timeout is set to 2 minutes. This commit introduces a new property `pull.timeout` to be configured in seconds. Fixes #9191
1 parent cdf4466 commit cd29df9

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

core/src/main/java/org/testcontainers/images/RemoteDockerImage.java

+4-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
import org.testcontainers.utility.DockerLoggerFactory;
2323
import org.testcontainers.utility.ImageNameSubstitutor;
2424
import org.testcontainers.utility.LazyFuture;
25+
import org.testcontainers.utility.TestcontainersConfiguration;
2526

2627
import java.time.Duration;
2728
import java.time.Instant;
@@ -35,7 +36,9 @@
3536
@AllArgsConstructor(access = AccessLevel.PACKAGE)
3637
public class RemoteDockerImage extends LazyFuture<String> {
3738

38-
private static final Duration PULL_RETRY_TIME_LIMIT = Duration.ofMinutes(2);
39+
private static final Duration PULL_RETRY_TIME_LIMIT = Duration.ofSeconds(
40+
TestcontainersConfiguration.getInstance().getImagePullTimeout()
41+
);
3942

4043
@ToString.Exclude
4144
private Future<DockerImageName> imageNameFuture;

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

+4
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,10 @@ public Integer getImagePullPauseTimeout() {
208208
return Integer.parseInt(getEnvVarOrProperty("pull.pause.timeout", "30"));
209209
}
210210

211+
public Integer getImagePullTimeout() {
212+
return Integer.parseInt(getEnvVarOrProperty("pull.timeout", "120"));
213+
}
214+
211215
public String getImageSubstitutorClassName() {
212216
return getEnvVarOrProperty("image.substitutor", null);
213217
}

docs/features/configuration.md

+3
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,9 @@ but does not allow starting privileged containers, you can turn off the Ryuk con
9090

9191
## Customizing image pull behaviour
9292

93+
> **pull.timeout = 120**
94+
> By default Testcontainers will timeout if pull takes more than this duration (in seconds)
95+
9396
> **pull.pause.timeout = 30**
9497
> By default Testcontainers will abort the pull of an image if the pull appears stalled (no data transferred) for longer than this duration (in seconds).
9598

0 commit comments

Comments
 (0)