Skip to content

Commit

Permalink
use improved docker rm command
Browse files Browse the repository at this point in the history
  • Loading branch information
kcinay055679 committed Dec 7, 2023
1 parent 405d99f commit 8cc4243
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/frontend-test-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,4 +64,4 @@ jobs:
headed: true

- name: remove docker containers
run: docker rm -f $(docker ps -qa)
run: docker ps -aq | xargs -r docker rm -f
2 changes: 1 addition & 1 deletion .github/workflows/staging-deploy-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -259,4 +259,4 @@ jobs:

steps:
- name: remove dockers
run: docker rm -f $(docker ps -aq)
run: docker ps -aq | xargs -r docker rm -f

0 comments on commit 8cc4243

Please sign in to comment.