Spring Boot 3.5.8 added a docker-java.properties file into their jar causing the testcontainers to look for the Docker API
version of 1.44 or higher. If your Docker environment does not support API 1.44, try upgrading it.
If for any reason you cannot upgrade your Docker environment, affected users can add this file to their local development environment as a temporary workaround, without committing it to the repository, until they are able to upgrade their Docker environment.
One way to do this is to maintain a single version of the file and create symlinks in the affected repos
- create the file locally
echo "api.version=1.41" > ~/docker-java.properties
- in every affected repo