Files
docker-docs/machine/reference/restart.md
Gaetan 75fe044313 fix type of keywords entry in frontmatter (in /machine/) (#556)
keywords should be a string, not an array containing one string

Signed-off-by: Gaetan de Villele <gdevillele@gmail.com>
2016-11-11 14:51:12 -08:00

23 lines
490 B
Markdown

---
description: Restart a machine
keywords: machine, restart, subcommand
title: docker-machine restart
---
```none
Usage: docker-machine restart [arg...]
Restart a machine
Description:
Argument(s) are one or more machine names.
```
Restart a machine. Oftentimes this is equivalent to
`docker-machine stop; docker-machine start`. But some cloud driver try to implement a clever restart which keeps the same
ip address.
```
$ docker-machine restart dev
Waiting for VM to start...
```