Skip to content

Commit

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

0 comments on commit 81dbb68

Please sign in to comment.