File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
core/src/main/java/org/testcontainers/dockerclient Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 5959 with :
6060 java-version : ${{ matrix.java }}
6161 - name : Build and test with Gradle
62+ # run: |
63+ # ./gradlew :testcontainers:check --no-daemon --continue --scan
6264 run : |
63- ./gradlew :testcontainers:check --no-daemon --continue --scan
65+ ./gradlew :testcontainers:test --tests "*DockerMcpGatewayContainerTest" --no-daemon --scan
6466 - uses : ./.github/actions/setup-junit-report
6567
6668 turbo-mode :
Original file line number Diff line number Diff line change @@ -410,7 +410,7 @@ public static DockerClient getClientForConfig(TransportConfig transportConfig) {
410410 String dockerVersion = getDockerEngineVersionFromCli ();
411411 System .out .println ("Detected Docker Engine Version: " + dockerVersion );
412412
413- if (isDockerVersionAtLeast (dockerVersion , 25 )) {
413+ if ("0.0.0" . equals ( dockerVersion ) || isDockerVersionAtLeast (dockerVersion , 25 )) {
414414 configBuilder .withApiVersion (RemoteApiVersion .VERSION_1_44 );
415415 } else {
416416 configBuilder .withApiVersion (RemoteApiVersion .VERSION_1_32 );
You can’t perform that action at this time.
0 commit comments