This is an automated email from the ASF dual-hosted git repository. matrei pushed a commit to branch docker-compat in repository https://gitbox.apache.org/repos/asf/grails-core.git
commit e663f8da7a57f0d0a0af3eebf3f0b35db29c9bca Author: Mattias Reichel <[email protected]> AuthorDate: Wed Dec 17 15:14:14 2025 +0100 fix: compatibility with Docker 29 Testcontainers 1.x is not by default compatible with Docker 29.0.0+ API. --- .../boot-plugin/src/test/resources/docker-java.properties | 2 ++ 1 file changed, 2 insertions(+) diff --git a/grails-data-mongodb/boot-plugin/src/test/resources/docker-java.properties b/grails-data-mongodb/boot-plugin/src/test/resources/docker-java.properties new file mode 100644 index 0000000000..a2f95af3a2 --- /dev/null +++ b/grails-data-mongodb/boot-plugin/src/test/resources/docker-java.properties @@ -0,0 +1,2 @@ +# Workaround for running Testcontainers 1.x with Docker 29.0.0+ +api.version=1.44 \ No newline at end of file
