mirror of https://github.com/docker/docs.git
15 lines
320 B
Go
15 lines
320 B
Go
package commands
|
|
|
|
import (
|
|
"github.com/docker/machine/log"
|
|
|
|
"github.com/codegangsta/cli"
|
|
)
|
|
|
|
func cmdStart(c *cli.Context) {
|
|
if err := runActionWithContext("start", c); err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
log.Info("Started machines may have new IP addresses. You may need to re-run the `docker-machine env` command.")
|
|
}
|