forked from TrueCloudLab/frostfs-testcases
5 lines
100 B
Bash
Executable file
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
|