Can't use minikube docker daemon

2/3/2018

eval $(minikube docker-env) doesn't seams to work for me locally. It runs with no error, but after running the command the docker command is not avaliable to be used. I'm using git bash on windows 10 with:

$ kubectl version
Client Version: version.Info{Major:"1", Minor:"8", GitVersion:"v1.8.6", GitCommit:"6260bb08c46c31eea6cb538b34a9ceb3e406689c", GitTreeState:"clean", BuildDate:"2017-12-21T06:34:11Z", GoVersion:"go1.8.3", Compiler:"gc", Platform:"windows/amd64"}
Server Version: version.Info{Major:"", Minor:"", GitVersion:"v1.9.0", GitCommit:"925c127ec6b946659ad0fd596fa959be43f0cc05", GitTreeState:"clean", BuildDate:"2018-01-26T19:04:38Z", GoVersion:"go1.9.1", Compiler:"gc", Platform:"linux/amd64"}
-- Rafael Teles
docker
kubernetes
minikube

1 Answer

2/4/2018

You need to install Docker so the docker commands are available. You can follow this guide on how to install kubernetes and docker on Windows 10.

-- Jose Armesto
Source: StackOverflow