skip to Main Content

Testcontainers do not start after replacing Docker Desktop with minikube

I want to make my testcontainers in Java integration tests work with minikube replacing Docker Desktop. I followed below article to get started: https://www.atomicjar.com/2021/10/docker-on-windows-and-macos/#minikube This is what I've got in testcontainers.properties docker.client.strategy=org.testcontainers.dockerclient.EnvironmentAndSystemPropertyClientProviderStrategy docker.host=tcp://192.168.64.2:2376 docker.cert.path=/Users/username/.minikube/certs docker.tls.verify=true Although my docker is up…

VIEW QUESTION
Back To Top
Search