Changed container removing command

Changed `docker kill` to `docker rm` as completely cleaning solution for this case.
pull/333/head
Ihor Dvoretskyi 2016-04-06 17:27:35 -07:00
parent d956b20b4d
commit 0d595bf95a
1 changed files with 1 additions and 1 deletions

View File

@ -150,7 +150,7 @@ See [here](/docs/getting-started-guides/docker-multinode/deployDNS/) for instruc
Many of these containers run under the management of the `kubelet` binary, which attempts to keep containers running, even if they fail.
So, in order to turn down the cluster, you need to first kill the kubelet container, and then any other containers.
You may use `docker kill $(docker ps -aq)`, note this removes _all_ containers running under Docker, so use with caution.
You may use `docker rm $(docker ps -aq)`, note this removes _all_ containers running under Docker, so use with caution.
2. Cleanup the filesystem: