Skip to content

Commit

Permalink
fix: Change docker-compose to docker compose for cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
amontalban committed Aug 18, 2024
1 parent e81cff1 commit e522d3b
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 @@ -134,7 +134,7 @@ func runAllTests() {

func cleanUpEnvironment() {
fmt.Println("Cleaning up Docker environment...")
err := exec.Command("docker-compose", "down", "--volumes", "--rmi", "all").Run()
err := exec.Command("docker", "compose", "down", "--volumes", "--rmi", "all").Run()
if err != nil {
panic(err)
}
Expand Down

0 comments on commit e522d3b

Please sign in to comment.