From bb099ac767df6c8097135f6533d6d52197a59bc5 Mon Sep 17 00:00:00 2001 From: Michael Tews Date: Wed, 1 Apr 2026 16:09:38 +0200 Subject: chore(build): docker compose plain progress output --- magefile.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/magefile.go b/magefile.go index 506252b..8ef5d22 100644 --- a/magefile.go +++ b/magefile.go @@ -104,7 +104,7 @@ func TestAgainstContainer() error { defer func() { fmt.Println(">> stopping Stud.IP demo stack") - if downErr := runCommandWithEnv(nil, "docker", "compose", "down", "--volumes", "--remove-orphans"); downErr != nil { + if downErr := runCommandWithEnv(nil, "docker", "compose", "--progress", "plain", "down", "--volumes", "--remove-orphans"); downErr != nil { fmt.Fprintf(os.Stderr, "failed to stop Stud.IP demo stack: %v\n", downErr) } }() @@ -352,11 +352,11 @@ func prepareStudIPTestEnvironment() (studIPTestConfig, studIPCourse, error) { func recreateStudIPDemoStack() error { fmt.Println(">> recreating fresh Stud.IP demo stack") - if err := runCommandWithEnv(nil, "docker", "compose", "down", "--volumes", "--remove-orphans"); err != nil { + if err := runCommandWithEnv(nil, "docker", "compose", "--progress", "plain", "down", "--volumes", "--remove-orphans"); err != nil { return err } - return runCommandWithEnv(nil, "docker", "compose", "up", "-d", "--build") + return runCommandWithEnv(nil, "docker", "compose", "--progress", "plain", "up", "-d", "--build") } func waitForStudIPDemoCourse(baseURL, username, password string, timeout time.Duration) (studIPCourse, error) { -- cgit v1.0