* adds new flag `-y` prompting for user confirmation before removal * Modified existing integration tests to work with the fix #2349. * Added tests for checking user confirmation, updated the test cases use sub-shell with `|` * Updated the reference docs for rm sub-command incorporated changes by @dgageot, @jeanlaurent and @nathanleclaire Signed-off-by: Anil Belur <askb23@gmail.com>
29 lines
800 B
Markdown
29 lines
800 B
Markdown
<!--[metadata]>
|
|
+++
|
|
title = "rm"
|
|
description = "Remove a machine."
|
|
keywords = ["machine, rm, subcommand"]
|
|
[menu.main]
|
|
identifier="machine.rm"
|
|
parent="smn_machine_subcmds"
|
|
+++
|
|
<![end-metadata]-->
|
|
|
|
# rm
|
|
|
|
Remove a machine. This will remove the local reference as well as delete it
|
|
on the cloud provider or virtualization management platform.
|
|
|
|
$ docker-machine ls
|
|
NAME ACTIVE DRIVER STATE URL
|
|
foo0 - virtualbox Running tcp://192.168.99.105:2376
|
|
foo1 - virtualbox Running tcp://192.168.99.106:2376
|
|
|
|
$ docker-machine rm foo1
|
|
Do you really want to remove "foo1"? (y/n): y
|
|
Successfully removed foo1
|
|
|
|
$ docker-machine ls
|
|
NAME ACTIVE DRIVER STATE URL
|
|
foo0 - virtualbox Running tcp://192.168.99.105:2376
|