frostfs-testcases/images_cleanup.sh

6 lines
100 B
Bash
Raw Normal View History

2020-05-20 12:26:13 +00:00
#!/bin/sh
for i in `docker images | grep robot | awk '{ print $3 }'`; do
docker rmi -f $i
done