2021-10-21 00:51:32 +00:00
|
|
|
package docker
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/urfave/cli/v2"
|
|
|
|
"ledo/app/modules/compose"
|
|
|
|
"ledo/app/modules/context"
|
|
|
|
)
|
|
|
|
|
|
|
|
var CmdComposeStop = cli.Command{
|
|
|
|
Name: "stop",
|
|
|
|
Usage: "stop containers",
|
|
|
|
Description: `Stop all containers defined in docker-compose stack mode`,
|
2021-10-21 16:01:31 +00:00
|
|
|
Action: RunComposeStop,
|
2021-10-21 00:51:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func RunComposeStop(cmd *cli.Context) error {
|
|
|
|
ctx := context.InitCommand(cmd)
|
|
|
|
compose.ExecComposerStop(ctx)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
|