Skip to content

Commit

Permalink
localenv: don't crash if there are no containers to cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
paulperegud committed Jul 23, 2024
1 parent 7f947ed commit 269fffc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"apitest:up": "docker compose -p apitest -f ./localenv/docker-compose.yaml -f ./localenv/apitest.yaml up anvil ipfs graph-postgres graph-node multideployer",
"apitest:down": "docker compose -p apitest -f ./localenv/docker-compose.yaml -f ./localenv/apitest.yaml down",
"apitest:run": "docker compose -p apitest -f ./localenv/docker-compose.yaml -f ./localenv/apitest.yaml run backend-apitest",
"preapitest:up": "docker rm -v -f $(docker ps -qa --filter 'name=apitest')",
"preapitest:up": "docker rm -v -f $(docker ps -qa --filter 'name=apitest') || true",
"preapitest:run": "yarn localenv:build-backend"
},
"repository": {
Expand Down

0 comments on commit 269fffc

Please sign in to comment.