Skip to content

Commit

Permalink
services/horizon: migrate to docker compose v2
Browse files Browse the repository at this point in the history
  • Loading branch information
urvisavla committed Aug 2, 2024
1 parent f692f12 commit 73745d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/horizon/internal/test/integration/integration.go
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ func (i *Test) runComposeCommand(args ...string) {
cmdline = append([]string{"-f", integrationSorobanRPCYaml}, cmdline...)
}
cmdline = append([]string{"-f", integrationYaml}, cmdline...)
cmd := exec.Command("docker-compose", cmdline...)
cmd := exec.Command("docker compose", cmdline...)

Check failure on line 227 in services/horizon/internal/test/integration/integration.go

View workflow job for this annotation

GitHub Actions / check (ubuntu-22.04, 1.22.1)

first argument to exec.Command looks like a shell command, but a program name or path are expected (SA1005)
coreImageOverride := ""
if i.config.CoreDockerImage != "" {
coreImageOverride = i.config.CoreDockerImage
Expand Down

0 comments on commit 73745d0

Please sign in to comment.