mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-21 05:43:09 +00:00
9 lines
129 B
Bash
9 lines
129 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
for c in `docker ps -a -q`; do
|
||
|
docker rm $c
|
||
|
done
|
||
|
for i in `docker images -q`; do
|
||
|
docker rmi --force $i
|
||
|
done
|