- Updating the Dockerfile to lastest - Adding support for building all the public doc projects from machine Signed-off-by: Mary Anthony <mary@docker.com> Michael's comments Signed-off-by: Mary Anthony <mary@docker.com> Adding in comments from nathan Signed-off-by: Mary Anthony <mary@docker.com>
26 lines
693 B
Markdown
26 lines
693 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
|
|
$ docker-machine ls
|
|
NAME ACTIVE DRIVER STATE URL
|
|
foo0 virtualbox Running tcp://192.168.99.105:2376
|
|
``` |