diff --git a/cli/command/container/attach.go b/cli/command/container/attach.go index b834197552f2..2c576159bf65 100644 --- a/cli/command/container/attach.go +++ b/cli/command/container/attach.go @@ -106,7 +106,7 @@ func runAttach(dockerCli command.Cli, opts *attachOptions) error { if opts.proxy && !c.Config.Tty { sigc := notifyAllSignals() - go ForwardAllSignals(ctx, dockerCli, opts.container, sigc) + go ForwardAllSignals(ctx, apiClient, opts.container, sigc) defer signal.StopCatch(sigc) } diff --git a/cli/command/container/run.go b/cli/command/container/run.go index 338467959610..bbcb9efa9e10 100644 --- a/cli/command/container/run.go +++ b/cli/command/container/run.go @@ -121,7 +121,7 @@ func runRun(dockerCli command.Cli, flags *pflag.FlagSet, ropts *runOptions, copt func runContainer(dockerCli command.Cli, opts *runOptions, copts *containerOptions, containerCfg *containerConfig) error { config := containerCfg.Config stdout, stderr := dockerCli.Out(), dockerCli.Err() - client := dockerCli.Client() + apiClient := dockerCli.Client() config.ArgsEscaped = false @@ -150,7 +150,7 @@ func runContainer(dockerCli command.Cli, opts *runOptions, copts *containerOptio } if opts.sigProxy { sigc := notifyAllSignals() - go ForwardAllSignals(ctx, dockerCli, containerID, sigc) + go ForwardAllSignals(ctx, apiClient, containerID, sigc) defer signal.StopCatch(sigc) } @@ -186,10 +186,10 @@ func runContainer(dockerCli command.Cli, opts *runOptions, copts *containerOptio defer closeFn() } - statusChan := waitExitOrRemoved(ctx, dockerCli.Client(), containerID, copts.autoRemove) + statusChan := waitExitOrRemoved(ctx, apiClient, containerID, copts.autoRemove) // start the container - if err := client.ContainerStart(ctx, containerID, container.StartOptions{}); err != nil { + if err := apiClient.ContainerStart(ctx, containerID, container.StartOptions{}); err != nil { // If we have hijackedIOStreamer, we should notify // hijackedIOStreamer we are going to exit and wait // to avoid the terminal are not restored. diff --git a/cli/command/container/signals.go b/cli/command/container/signals.go index b8b746df5e56..49e0abac04de 100644 --- a/cli/command/container/signals.go +++ b/cli/command/container/signals.go @@ -5,7 +5,7 @@ import ( "os" gosignal "os/signal" - "github.com/docker/cli/cli/command" + "github.com/docker/docker/client" "github.com/moby/sys/signal" "github.com/sirupsen/logrus" ) @@ -13,7 +13,7 @@ import ( // ForwardAllSignals forwards signals to the container // // The channel you pass in must already be setup to receive any signals you want to forward. -func ForwardAllSignals(ctx context.Context, cli command.Cli, cid string, sigc <-chan os.Signal) { +func ForwardAllSignals(ctx context.Context, apiClient client.ContainerAPIClient, cid string, sigc <-chan os.Signal) { var ( s os.Signal ok bool @@ -48,7 +48,7 @@ func ForwardAllSignals(ctx context.Context, cli command.Cli, cid string, sigc <- continue } - if err := cli.Client().ContainerKill(ctx, cid, sig); err != nil { + if err := apiClient.ContainerKill(ctx, cid, sig); err != nil { logrus.Debugf("Error sending signal: %s", err) } } diff --git a/cli/command/container/signals_test.go b/cli/command/container/signals_test.go index 325fb5d9851e..f6bb114122ed 100644 --- a/cli/command/container/signals_test.go +++ b/cli/command/container/signals_test.go @@ -6,7 +6,6 @@ import ( "testing" "time" - "github.com/docker/cli/internal/test" "github.com/moby/sys/signal" ) @@ -15,16 +14,15 @@ func TestForwardSignals(t *testing.T) { defer cancel() called := make(chan struct{}) - client := &fakeClient{containerKillFunc: func(ctx context.Context, container, signal string) error { + apiClient := &fakeClient{containerKillFunc: func(ctx context.Context, container, signal string) error { close(called) return nil }} - cli := test.NewFakeCli(client) sigc := make(chan os.Signal) defer close(sigc) - go ForwardAllSignals(ctx, cli, t.Name(), sigc) + go ForwardAllSignals(ctx, apiClient, t.Name(), sigc) timer := time.NewTimer(30 * time.Second) defer timer.Stop() diff --git a/cli/command/container/signals_unix_test.go b/cli/command/container/signals_unix_test.go index c7ebab544979..f0d18689524c 100644 --- a/cli/command/container/signals_unix_test.go +++ b/cli/command/container/signals_unix_test.go @@ -9,7 +9,6 @@ import ( "testing" "time" - "github.com/docker/cli/internal/test" "golang.org/x/sys/unix" "gotest.tools/v3/assert" ) @@ -23,18 +22,17 @@ func TestIgnoredSignals(t *testing.T) { defer cancel() var called bool - client := &fakeClient{containerKillFunc: func(ctx context.Context, container, signal string) error { + apiClient := &fakeClient{containerKillFunc: func(ctx context.Context, container, signal string) error { called = true return nil }} - cli := test.NewFakeCli(client) sigc := make(chan os.Signal) defer close(sigc) done := make(chan struct{}) go func() { - ForwardAllSignals(ctx, cli, t.Name(), sigc) + ForwardAllSignals(ctx, apiClient, t.Name(), sigc) close(done) }() diff --git a/cli/command/container/start.go b/cli/command/container/start.go index c7c1a9ec4e7d..f4a6421f5c48 100644 --- a/cli/command/container/start.go +++ b/cli/command/container/start.go @@ -93,7 +93,7 @@ func RunStart(dockerCli command.Cli, opts *StartOptions) error { // We always use c.ID instead of container to maintain consistency during `docker start` if !c.Config.Tty { sigc := notifyAllSignals() - go ForwardAllSignals(ctx, dockerCli, c.ID, sigc) + go ForwardAllSignals(ctx, dockerCli.Client(), c.ID, sigc) defer signal.StopCatch(sigc) }