From c5a897c94e41a002eef5909706a6dba9b5939037 Mon Sep 17 00:00:00 2001 From: Joanne Yeung Date: Tue, 13 Feb 2018 16:27:49 -0800 Subject: [PATCH] Add instructions to remove docker images; fixes #6874 (#7264) * Add instructions to remove docker images; fixes #6874 On cleanup of Minikube, adds instructions to optionally remove Docker images created in tutorial setup * update wording of instructions to include flag Updates the wording to explicitly match the shell command and flags used. --- docs/tutorials/stateless-application/hello-minikube.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/tutorials/stateless-application/hello-minikube.md b/docs/tutorials/stateless-application/hello-minikube.md index ed0a1a16a5..f8353290f8 100644 --- a/docs/tutorials/stateless-application/hello-minikube.md +++ b/docs/tutorials/stateless-application/hello-minikube.md @@ -393,6 +393,12 @@ kubectl delete service hello-node kubectl delete deployment hello-node ``` +Optionally, force removal of the Docker images created: + +```shell +docker rmi hello-node:v1 hello-node:v2 -f +``` + Optionally, stop the Minikube VM: ```shell