System Grab Bag

View all TLDR pages from common (or from all pages)

docker-machine

Create and manage machines running Docker. More information: https://docs.docker.com/machine/reference/.
  • List currently running docker machines:
    docker-machine ls
  • Create a new docker machine with specific name:
    docker-machine create {{name}}
  • Get the status of a machine:
    docker-machine status {{name}}
  • Start a machine:
    docker-machine start {{name}}
  • Stop a machine:
    docker-machine stop {{name}}
  • Inspect information about a machine:
    docker-machine inspect {{name}}

License and Disclaimer

The content on this page is copyright © 2014—present the tldr-pages team and contributors.
This page is used with permission under Creative Commons Attribution 4.0 International License.

While we do attempt to make sure content is accurate, there isn't a warranty of any kind.