Skip to content

Commit

Permalink
Use '-d' cmd arg in docker compose command
Browse files Browse the repository at this point in the history
  • Loading branch information
ptodev committed Aug 17, 2024
1 parent fd498f3 commit e81cff1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/cmd/integration-tests/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ func buildAgent() {
}

func setupEnvironment() {
success := executeCommand("docker", []string{"compose", "up", "--abort-on-container-exit"}, "Setting up environment with Docker Compose")
success := executeCommand("docker", []string{"compose", "up", "-d"}, "Setting up environment with Docker Compose")
if !success {
executeCommand("docker", []string{"ps", "-las"}, "Docker ps")
}
Expand Down

0 comments on commit e81cff1

Please sign in to comment.