Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sec: Upgrade Ubuntu to latest LTS version #6992

Merged
merged 15 commits into from
Aug 22, 2024
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-compose", []string{"up", "--abort-on-container-exit"}, "Setting up environment with Docker Compose")
success := executeCommand("docker", []string{"compose", "up", "--abort-on-container-exit"}, "Setting up environment with Docker Compose")
ptodev marked this conversation as resolved.
Show resolved Hide resolved
if !success {
executeCommand("docker", []string{"ps", "-las"}, "Docker ps")
}
Expand Down
Loading