We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3897fcf commit 9400091Copy full SHA for 9400091
.github/workflows/main.yml
@@ -127,8 +127,11 @@ jobs:
127
128
- name: stop and remove all docker containers
129
run: |
130
+ echo "Stopping all running containers..."
131
docker stop $(docker ps -a -q)
132
+ echo "Removing all running containers..."
133
docker rm $(docker ps -a -q)
134
+ echo "Done!"
135
136
# - name: start MongoDB docker
137
# run: |
0 commit comments