Skip to content

Commit

Permalink
Terra2: Use "docker compose", not docker-compose (#4056)
Browse files Browse the repository at this point in the history
  • Loading branch information
bruce-riley authored Aug 2, 2024
1 parent 71fd496 commit 83c5e49
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cosmwasm/deployment/terra2/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ test/node_modules: test/package-lock.json
## Run unit and integration tests
test: artifacts test/node_modules
@if pgrep terrad; then echo "Error: terrad already running. Stop it before running tests"; exit 1; fi
cd devnet && DOCKER_BUILDKIT=1 docker-compose up --detach
cd devnet && DOCKER_BUILDKIT=1 docker compose up --detach
sleep 10
cd test && npm run test || (cd ../devnet && docker-compose down && exit 1)
cd devnet && docker-compose down
cd test && npm run test || (cd ../devnet && docker compose down && exit 1)
cd devnet && docker compose down

.PHONY: clean
clean:
Expand Down

0 comments on commit 83c5e49

Please sign in to comment.