This is an automated email from the ASF dual-hosted git repository.
matrei pushed a commit to branch 7.0.x
in repository https://gitbox.apache.org/repos/asf/grails-core.git
The following commit(s) were added to refs/heads/7.0.x by this push:
new c6cc7084f1 fix: compatibility with Docker 29 (#15249)
c6cc7084f1 is described below
commit c6cc7084f132b1607158e29a047c23aff0225aa8
Author: Mattias Reichel <[email protected]>
AuthorDate: Fri Nov 21 17:14:30 2025 +0100
fix: compatibility with Docker 29 (#15249)
Testcontainers 1.x is not by default compatible with
Docker 29.0.0+ API.
---
grails-geb/src/testFixtures/resources/docker-java.properties | 2 ++
1 file changed, 2 insertions(+)
diff --git a/grails-geb/src/testFixtures/resources/docker-java.properties
b/grails-geb/src/testFixtures/resources/docker-java.properties
new file mode 100644
index 0000000000..6407a5ea41
--- /dev/null
+++ b/grails-geb/src/testFixtures/resources/docker-java.properties
@@ -0,0 +1,2 @@
+# Workaround for running Testcontainers 1.x with Docker 29.0.0+
+api.version=1.44