Skip to content

Commit

Permalink
use docker compose instead of docker-compose (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
fionnachan authored Apr 3, 2024
1 parent 1336937 commit 4a6c834
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion run-nitro-test-node/waitForTokenBridge.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# poll the token bridge deployment file until we get a 0 return code
while true
do
docker-compose -f ./nitro-testnode/docker-compose.yaml run --entrypoint sh tokenbridge -c "cat $1"
docker compose -f ./nitro-testnode/docker-compose.yaml run --entrypoint sh tokenbridge -c "cat $1"
if [ "$?" -eq "0" ]; then
exit 0
else
Expand Down

0 comments on commit 4a6c834

Please sign in to comment.