From 905703bfcd4f27660d33494b84fd906e031f58bc Mon Sep 17 00:00:00 2001 From: jatins Date: Fri, 15 Jul 2016 17:49:46 +0530 Subject: [PATCH] documentation as suggested #338 --- docs/getting-started-guides/minikube.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/getting-started-guides/minikube.md b/docs/getting-started-guides/minikube.md index 735d397a7d..3562de56df 100644 --- a/docs/getting-started-guides/minikube.md +++ b/docs/getting-started-guides/minikube.md @@ -123,15 +123,15 @@ kubectl get nodes ``` Minikube contains a built-in Docker daemon that for running containers. -If you use another Docker daemon for building your containers, you will have to publish them to a registry before minikube can pull them. +If you use another Docker daemon for building your containers, you will have to publish them to a registry before minikube can pull them. You can use minikube's built in Docker daemon to avoid this extra step of pushing your images. Use the built-in Docker daemon with: ```shell eval $(minikube docker-env) ``` - -This command sets up the Docker environment variables so a Docker client can communicate with the minikube Docker daemon: +This command sets up the Docker environment variables so a Docker client can communicate with the minikube Docker daemon. +Minikube currently supports only docker version 1.11.1 on the server, which is what is supported by Kubernetes 1.3. With a newer docker version you'll get this [issue](https://github.com/kubernetes/minikube/issues/338). ```shell docker ps