abhishekagarwal87 commented on code in PR #14031:
URL: https://github.com/apache/druid/pull/14031#discussion_r1158692273
##########
.github/workflows/reusable-revised-its.yml:
##########
@@ -117,8 +117,11 @@ jobs:
echo $DRUID_IT_IMAGE_NAME
docker save "$DRUID_IT_IMAGE_NAME" | gzip > druid-container-jdk${{
inputs.build_jdk }}.tar.gz
- - name: Load docker image
+ - name: Clean docker environment and Load docker image
run: |
+ echo "Stopping and pruning any remnant docker containers from
previous run"
+ docker ps -aq | xargs -r docker rm -f
+ docker system prune -af --volumes
Review Comment:
could this be done in the script itself? So that anyone running an IT test
locally would not run into this problem as well.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]