From fe592a34edf541460fc36bb5f85e4219993dfb08 Mon Sep 17 00:00:00 2001 From: David Rekowski Date: Tue, 27 Mar 2018 23:58:03 +0200 Subject: [PATCH] Update hello-minikube.md (#7855) Added extra hint on the trailing dot on docker -build, since this is easily overlooked if not copied. --- docs/tutorials/stateless-application/hello-minikube.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/tutorials/stateless-application/hello-minikube.md b/docs/tutorials/stateless-application/hello-minikube.md index 24ca4951ee..55100e364c 100644 --- a/docs/tutorials/stateless-application/hello-minikube.md +++ b/docs/tutorials/stateless-application/hello-minikube.md @@ -171,7 +171,7 @@ eval $(minikube docker-env) **Note:** Later, when you no longer wish to use the Minikube host, you can undo this change by running `eval $(minikube docker-env -u)`. -Build your Docker image, using the Minikube Docker daemon: +Build your Docker image, using the Minikube Docker daemon (mind the trailing dot): ```shell docker build -t hello-node:v1 . @@ -297,7 +297,7 @@ response.end('Hello World Again!'); ``` -Build a new version of your image: +Build a new version of your image (mind the trailing dot): ```shell docker build -t hello-node:v2 .