Update hello-minikube.md (#7855)

Added extra hint on the trailing dot on docker -build, since this is easily overlooked if not copied.
This commit is contained in:
David Rekowski 2018-03-27 23:58:03 +02:00 committed by k8s-ci-robot
parent bee8df59d8
commit 753cefd7ee
1 changed files with 2 additions and 2 deletions

View File

@ -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 .