From 85ac71a3fe9b0f9ed5d66bdb99a97e8c0cc8306d Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Thu, 9 Oct 2025 17:17:46 +0200 Subject: [PATCH] e2e/stack: don't run stack deploy "detached" Run stack deploy in "attached" mode, so that progress and errors can be printed on failure. Signed-off-by: Sebastiaan van Stijn --- e2e/stack/remove_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/stack/remove_test.go b/e2e/stack/remove_test.go index e3636ee87..ddf8c81b7 100644 --- a/e2e/stack/remove_test.go +++ b/e2e/stack/remove_test.go @@ -24,7 +24,7 @@ func TestRemove(t *testing.T) { func deployFullStack(t *testing.T, stackname string) { t.Helper() // TODO: this stack should have full options not minimal options - result := icmd.RunCommand("docker", "stack", "deploy", + result := icmd.RunCommand("docker", "stack", "deploy", "--detach=false", "--compose-file=./testdata/full-stack.yml", stackname) result.Assert(t, icmd.Success)