mirror of
https://github.com/docker/compose.git
synced 2025-07-25 14:44:29 +02:00
fix signal passing to mobycli
Signed-off-by: aiordache <anca.iordache@docker.com>
This commit is contained in:
parent
e0f8289f1c
commit
d1b8bcb2c7
@ -70,7 +70,8 @@ $ docker context create my-context --description "some description" --docker "ho
|
|||||||
Use: "create CONTEXT",
|
Use: "create CONTEXT",
|
||||||
Short: "Create new context",
|
Short: "Create new context",
|
||||||
RunE: func(cmd *cobra.Command, args []string) error {
|
RunE: func(cmd *cobra.Command, args []string) error {
|
||||||
return mobycli.ExecCmd(cmd)
|
mobycli.Exec()
|
||||||
|
return nil
|
||||||
},
|
},
|
||||||
Long: longHelp,
|
Long: longHelp,
|
||||||
}
|
}
|
||||||
|
@ -27,7 +27,8 @@ func inspectCommand() *cobra.Command {
|
|||||||
Use: "inspect",
|
Use: "inspect",
|
||||||
Short: "Display detailed information on one or more contexts",
|
Short: "Display detailed information on one or more contexts",
|
||||||
RunE: func(cmd *cobra.Command, args []string) error {
|
RunE: func(cmd *cobra.Command, args []string) error {
|
||||||
return mobycli.ExecCmd(cmd)
|
mobycli.Exec()
|
||||||
|
return nil
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
// flags matching delegated command in moby cli
|
// flags matching delegated command in moby cli
|
||||||
|
@ -69,7 +69,8 @@ func runList(cmd *cobra.Command, opts lsOpts) error {
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
if opts.format != "" {
|
if opts.format != "" {
|
||||||
return mobycli.ExecCmd(cmd)
|
mobycli.Exec()
|
||||||
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
ctx := cmd.Context()
|
ctx := cmd.Context()
|
||||||
|
@ -56,7 +56,8 @@ func runLogin(cmd *cobra.Command, args []string) error {
|
|||||||
backend := args[0]
|
backend := args[0]
|
||||||
return errors.New("unknown backend type for cloud login: " + backend)
|
return errors.New("unknown backend type for cloud login: " + backend)
|
||||||
}
|
}
|
||||||
return mobycli.ExecCmd(cmd)
|
mobycli.Exec()
|
||||||
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func cloudLogin(cmd *cobra.Command, backendType string, params interface{}) error {
|
func cloudLogin(cmd *cobra.Command, backendType string, params interface{}) error {
|
||||||
|
@ -21,5 +21,6 @@ func Command() *cobra.Command {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func runLogout(cmd *cobra.Command, args []string) error {
|
func runLogout(cmd *cobra.Command, args []string) error {
|
||||||
return mobycli.ExecCmd(cmd)
|
mobycli.Exec()
|
||||||
|
return nil
|
||||||
}
|
}
|
||||||
|
@ -51,7 +51,8 @@ func runVersion(cmd *cobra.Command, version string) error {
|
|||||||
// we don't want to fail on error, there is an error if the engine is not available but it displays client version info
|
// we don't want to fail on error, there is an error if the engine is not available but it displays client version info
|
||||||
// Still, technically the [] byte versionResult could be nil, just let the original command display what it has to display
|
// Still, technically the [] byte versionResult could be nil, just let the original command display what it has to display
|
||||||
if versionResult == nil {
|
if versionResult == nil {
|
||||||
return mobycli.ExecCmd(cmd)
|
mobycli.Exec()
|
||||||
|
return nil
|
||||||
}
|
}
|
||||||
var s string = string(versionResult)
|
var s string = string(versionResult)
|
||||||
fmt.Print(strings.Replace(s, "\n Version:", "\n Azure integration "+displayedVersion+"\n Version:", 1))
|
fmt.Print(strings.Replace(s, "\n Version:", "\n Azure integration "+displayedVersion+"\n Version:", 1))
|
||||||
|
@ -151,7 +151,7 @@ func main() {
|
|||||||
|
|
||||||
// --host and --version should immediately be forwarded to the original cli
|
// --host and --version should immediately be forwarded to the original cli
|
||||||
if opts.Host != "" || opts.Version {
|
if opts.Host != "" || opts.Version {
|
||||||
mobycli.Exec(ctx)
|
mobycli.Exec()
|
||||||
}
|
}
|
||||||
|
|
||||||
if opts.Config == "" {
|
if opts.Config == "" {
|
||||||
|
@ -23,8 +23,6 @@ import (
|
|||||||
"os/exec"
|
"os/exec"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/spf13/cobra"
|
|
||||||
|
|
||||||
apicontext "github.com/docker/api/context"
|
apicontext "github.com/docker/api/context"
|
||||||
"github.com/docker/api/context/store"
|
"github.com/docker/api/context/store"
|
||||||
)
|
)
|
||||||
@ -43,7 +41,7 @@ func ExecIfDefaultCtxType(ctx context.Context) {
|
|||||||
currentCtx, err := s.Get(currentContext)
|
currentCtx, err := s.Get(currentContext)
|
||||||
// Only run original docker command if the current context is not ours.
|
// Only run original docker command if the current context is not ours.
|
||||||
if err != nil || mustDelegateToMoby(currentCtx.Type()) {
|
if err != nil || mustDelegateToMoby(currentCtx.Type()) {
|
||||||
Exec(ctx)
|
Exec()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -57,11 +55,12 @@ func mustDelegateToMoby(ctxType string) bool {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Exec delegates to com.docker.cli if on moby context
|
// Exec delegates to com.docker.cli if on moby context
|
||||||
func Exec(ctx context.Context) {
|
func Exec() {
|
||||||
cmd := exec.CommandContext(ctx, ComDockerCli, os.Args[1:]...)
|
cmd := exec.Command(ComDockerCli, os.Args[1:]...)
|
||||||
cmd.Stdin = os.Stdin
|
cmd.Stdin = os.Stdin
|
||||||
cmd.Stdout = os.Stdout
|
cmd.Stdout = os.Stdout
|
||||||
cmd.Stderr = os.Stderr
|
cmd.Stderr = os.Stderr
|
||||||
|
|
||||||
if err := cmd.Run(); err != nil {
|
if err := cmd.Run(); err != nil {
|
||||||
if exiterr, ok := err.(*exec.ExitError); ok {
|
if exiterr, ok := err.(*exec.ExitError); ok {
|
||||||
os.Exit(exiterr.ExitCode())
|
os.Exit(exiterr.ExitCode())
|
||||||
@ -72,14 +71,6 @@ func Exec(ctx context.Context) {
|
|||||||
os.Exit(0)
|
os.Exit(0)
|
||||||
}
|
}
|
||||||
|
|
||||||
// ExecCmd delegates the cli command to com.docker.cli. The error is never
|
|
||||||
// returned (process will exit with docker classic exit code), the return type
|
|
||||||
// is to make it easier to use with cobra commands
|
|
||||||
func ExecCmd(command *cobra.Command) error {
|
|
||||||
Exec(command.Context())
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// IsDefaultContextCommand checks if the command exists in the classic cli (issues a shellout --help)
|
// IsDefaultContextCommand checks if the command exists in the classic cli (issues a shellout --help)
|
||||||
func IsDefaultContextCommand(dockerCommand string) bool {
|
func IsDefaultContextCommand(dockerCommand string) bool {
|
||||||
cmd := exec.Command(ComDockerCli, dockerCommand, "--help")
|
cmd := exec.Command(ComDockerCli, dockerCommand, "--help")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user