mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-04 10:55:36 +02:00
docker-machine: add page (#2582)
This commit is contained in:
parent
5863333106
commit
298ece112d
1 changed files with 27 additions and 0 deletions
27
pages/common/docker-machine.md
Normal file
27
pages/common/docker-machine.md
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
# docker-machine
|
||||||
|
|
||||||
|
> Create and manage machines running Docker.
|
||||||
|
|
||||||
|
- 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}}`
|
Loading…
Add table
Reference in a new issue