code reformat, init fixes

This commit is contained in:
2021-11-28 01:04:20 +01:00
parent da41b5820b
commit 1071695e87
37 changed files with 559 additions and 162 deletions

View File

@ -19,5 +19,3 @@ func RunComposeBuild(cmd *cli.Context) error {
compose.ExecComposerBuild(ctx)
return nil
}

View File

@ -18,4 +18,3 @@ func RunComposeDebug(cmd *cli.Context) error {
compose.ExecComposerDebug(ctx)
return nil
}

View File

@ -18,4 +18,3 @@ func RunComposeDown(cmd *cli.Context) error {
compose.ExecComposerDown(ctx)
return nil
}

View File

@ -8,7 +8,7 @@ import (
var CmdComposeLogs = cli.Command{
Name: "logs",
Aliases: []string{"l"},
Aliases: []string{"l"},
Usage: "logs from containers",
Description: `Get fqn docker image defined as main service in config file`,
Action: RunComposeLogs,
@ -19,4 +19,3 @@ func RunComposeLogs(cmd *cli.Context) error {
compose.ExecComposerLogs(ctx, cmd.Args())
return nil
}

View File

@ -18,4 +18,3 @@ func RunComposePull(cmd *cli.Context) error {
compose.ExecComposerPull(ctx)
return nil
}

View File

@ -18,4 +18,3 @@ func RunComposeRestart(cmd *cli.Context) error {
compose.ExecComposerRestart(ctx)
return nil
}

View File

@ -23,4 +23,3 @@ func RunComposeRun(cmd *cli.Context) error {
}
return nil
}

View File

@ -19,4 +19,3 @@ func RunComposeShell(cmd *cli.Context) error {
compose.ExecComposerShell(ctx)
return nil
}

View File

@ -18,5 +18,3 @@ func RunComposeStop(cmd *cli.Context) error {
compose.ExecComposerStop(ctx)
return nil
}

View File

@ -20,4 +20,3 @@ func RunComposeUp(cmd *cli.Context) error {
compose.ExecComposerLogs(ctx, cmd.Args())
return nil
}

View File

@ -18,4 +18,3 @@ func RunComposeUpOnce(cmd *cli.Context) error {
compose.ExecComposerUpOnce(ctx)
return nil
}