diff --git a/integration-tests/utils.go b/integration-tests/utils.go index 7c80e9cd3d6e..06aba877203c 100644 --- a/integration-tests/utils.go +++ b/integration-tests/utils.go @@ -109,7 +109,7 @@ func runAllTests() { func cleanUpEnvironment() { fmt.Println("Cleaning up Docker environment...") - err := exec.Command(dockerComposeCmd, "down").Run() + err := exec.Command(dockerComposeCmd, "down", "--volumes", "--rmi", "all").Run() if err != nil { panic(err) }