From ecbeacf10f42344b4e2a19ce8ab88b9e71917bba Mon Sep 17 00:00:00 2001 From: decentral1se Date: Tue, 22 Feb 2022 11:47:20 +0100 Subject: [PATCH] fix: prompt for container choice correctly on run [ci skip] --- cli/app/run.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/app/run.go b/cli/app/run.go index 283cdb0b..32a2361e 100644 --- a/cli/app/run.go +++ b/cli/app/run.go @@ -63,7 +63,7 @@ var appRunCommand = cli.Command{ filters := filters.NewArgs() filters.Add("name", stackAndServiceName) - targetContainer, err := containerPkg.GetContainer(context.Background(), cl, filters, true) + targetContainer, err := containerPkg.GetContainer(context.Background(), cl, filters, false) if err != nil { logrus.Fatal(err) }