minikube load local image code example
Example: use local image with minikube
#reuse the Docker daemon from Minikube
eval $(minikube docker-env)
#Build the image with the Docker daemon of Minikube
docker build -t my-image .
#my-image ready to use on Minikube cluster