forked from TrueCloudLab/frostfs-testcases
6 lines
100 B
Bash
6 lines
100 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
for i in `docker images | grep robot | awk '{ print $3 }'`; do
|
||
|
docker rmi -f $i
|
||
|
done
|