- USE_CONTAINER allow to seamlessly run targets inside or outside containers - all build calls have been harmonized, honoring the same env variables - contributing doc has been streamlined according to that - kill the distinction between remote and local docker builds - got rid of some of the byzantine calls in various asorted scripts - support for static build, debug builds, verbose Signed-off-by: Olivier Gambier <olivier@docker.com>
52 lines
1.3 KiB
Markdown
52 lines
1.3 KiB
Markdown
<!--[metadata]>
|
|
+++
|
|
title = "ls"
|
|
description = "List machines"
|
|
keywords = ["machine, ls, subcommand"]
|
|
[menu.main]
|
|
parent="smn_machine_subcmds"
|
|
+++
|
|
<![end-metadata]-->
|
|
|
|
# ls
|
|
|
|
```
|
|
Usage: docker-machine ls [OPTIONS] [arg...]
|
|
|
|
List machines
|
|
|
|
Options:
|
|
|
|
--quiet, -q Enable quiet mode
|
|
--filter [--filter option --filter option] Filter output based on conditions provided
|
|
```
|
|
|
|
## Filtering
|
|
|
|
The filtering flag (`-f` or `--filter)` format is a `key=value` pair. If there is more
|
|
than one filter, then pass multiple flags (e.g. `--filter "foo=bar" --filter "bif=baz"`)
|
|
|
|
The currently supported filters are:
|
|
|
|
* driver (driver name)
|
|
* swarm (swarm master's name)
|
|
* state (`Running|Paused|Saved|Stopped|Stopping|Starting|Error`)
|
|
* name (Machine name returned by driver, supports [golang style](https://github.com/google/re2/wiki/Syntax) regular expressions)
|
|
|
|
## Examples
|
|
|
|
```
|
|
$ docker-machine ls
|
|
NAME ACTIVE DRIVER STATE URL
|
|
dev virtualbox Stopped
|
|
foo0 virtualbox Running tcp://192.168.99.105:2376
|
|
foo1 virtualbox Running tcp://192.168.99.106:2376
|
|
foo2 * virtualbox Running tcp://192.168.99.107:2376
|
|
```
|
|
|
|
```
|
|
$ docker-machine ls --filter driver=virtualbox --filter state=Stopped
|
|
NAME ACTIVE DRIVER STATE URL SWARM
|
|
dev virtualbox Stopped
|
|
```
|