Files
docker-docs/machine/reference/active.md
Sebastiaan van Stijn 20bbd99d44 machine: use "console" for shell examples
This allows for easier copying of the commands, without selecting the
prompt.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2021-08-06 17:19:22 +02:00

23 lines
534 B
Markdown

---
description: Identify active machines
keywords: machine, active, subcommand
title: docker-machine active
---
See which machine is "active" (a machine is considered active if the
`DOCKER_HOST` environment variable points to it).
```console
$ docker-machine ls
NAME ACTIVE DRIVER STATE URL
dev - virtualbox Running tcp://192.168.99.103:2376
staging * digitalocean Running tcp://203.0.113.81:2376
$ echo $DOCKER_HOST
tcp://203.0.113.81:2376
$ docker-machine active
staging
```