Skip to content

Commit

Permalink
[NR-286408] chore: update docker compose command (#304)
Browse files Browse the repository at this point in the history
`docker-compose` v1 is EOL, and we need to move to `docker compose` (wit
a space).
  • Loading branch information
sigilioso authored Jul 3, 2024
1 parent cbf796a commit 9a6eb73
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ integration-test:
fi
@cp tests/integration/jmxremote/jmxremote.password.unencoded tests/integration/jmxremote/jmxremote.password
@chmod 0600 tests/integration/jmxremote/jmxremote.password
@docker-compose -f tests/integration/docker-compose.yml up -d --build
@go test -v -tags=integration ./tests/integration/. -count=1 ; (ret=$$?; docker-compose -f tests/integration/docker-compose.yml down && exit $$ret)
@docker compose -f tests/integration/docker-compose.yml up -d --build
@go test -v -tags=integration ./tests/integration/. -count=1 ; (ret=$$?; docker compose -f tests/integration/docker-compose.yml down && exit $$ret)

POD_NAME := agent
NAMESPACE := test-kafka
Expand Down

0 comments on commit 9a6eb73

Please sign in to comment.