docs/commands/restart.go

16 lines
321 B
Go

package commands
import (
"github.com/docker/machine/libmachine/log"
)
func cmdRestart(c CommandLine) error {
if err := runActionWithContext("restart", c); 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
}