We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
StackOverflowError
DockerClientFactory#client
1 parent cec4934 commit 66e4be2Copy full SHA for 66e4be2
core/src/main/java/org/testcontainers/DockerClientFactory.java
@@ -187,7 +187,6 @@ public DockerClient client() {
187
188
final DockerClientProviderStrategy strategy = getOrInitializeStrategy();
189
190
- log.info("Docker host IP address is {}", strategy.getDockerHostIpAddress());
191
client = new DockerClientDelegate() {
192
193
@Getter
@@ -198,6 +197,7 @@ public void close() {
198
197
throw new IllegalStateException("You should never close the global DockerClient!");
199
}
200
};
+ log.info("Docker host IP address is {}", strategy.getDockerHostIpAddress());
201
202
Info dockerInfo = client.infoCmd().exec();
203
Version version = client.versionCmd().exec();
0 commit comments