diff --git a/clr_test/run_test_docker_containers.py b/clr_test/run_test_docker_containers.py index c4e9e82ae..3676b38ba 100644 --- a/clr_test/run_test_docker_containers.py +++ b/clr_test/run_test_docker_containers.py @@ -25,6 +25,9 @@ def run_docker(folder_name: str) -> int: logging.info("Removing all clr_test-clearing_system containers") subprocess.call('docker rm -f $(docker ps --all -q --filter ancestor=clr_test-clearing_system)', shell=True) + logging.info("Removing all sftp containers") + subprocess.call('docker rm -f $(docker ps --all -q --filter ancestor=mirror.gcr.io/atmoz/sftp)', shell=True) + logging.info("Removing all clr_test-db images") subprocess.call('docker rmi -f clr_test-db', shell=True)