diff --git a/linux-runner/templates/post-run.sh b/linux-runner/templates/post-run.sh index fc06109..d4b7452 100644 --- a/linux-runner/templates/post-run.sh +++ b/linux-runner/templates/post-run.sh @@ -57,3 +57,6 @@ else echo "All delete operations completed successfully." exit 0 fi + +echo "Stopping any running docker containers" +docker stop $(docker ps -a -q) && docker rm $(docker ps -a -q)