mirror of https://github.com/docker/docs.git
17 lines
375 B
Go
17 lines
375 B
Go
package commands
|
|
|
|
import (
|
|
"github.com/docker/machine/libmachine"
|
|
"github.com/docker/machine/libmachine/log"
|
|
)
|
|
|
|
func cmdRestart(c CommandLine, api libmachine.API) error {
|
|
if err := runAction("restart", c, api); err != nil {
|
|
return err
|
|
}
|
|
|
|
log.Info("Restarted machines may have new IP addresses. You may need to re-run the `docker-machine env` command.")
|
|
|
|
return nil
|
|
}
|