frostfs-testcases/images_cleanup.sh
2020-05-20 15:26:13 +03:00

5 lines
100 B
Bash
Executable file

#!/bin/sh
for i in `docker images | grep robot | awk '{ print $3 }'`; do
docker rmi -f $i
done