Is there a docker image for minikube

9/24/2019

I couldn't find an official one which suggests that maybe it's a bad idea? My idea was to be able to spin up the whole of minikube and deploy an app to it so that developers are not required to install minikube manually.

If this is indeed possible, is there an already created official minikube docker image?

-- Andy Cribbens
docker
kubernetes
minikube

1 Answer

9/24/2019

Minikube is not available as Docker image. It's a VM based tool not container based.

Quoting a statement from this link.

Hypervisor based minikube doesn't really work from a docker container and the None driver won't really work either as it relies on systemd to run the kubelet on your machine.

For more info, check this.

-- mchawre
Source: StackOverflow