initital upload
This commit is contained in:
9
clean_docker
Executable file
9
clean_docker
Executable file
@@ -0,0 +1,9 @@
|
||||
for cont in $(docker ps --all -q)
|
||||
do
|
||||
docker rm $cont
|
||||
done
|
||||
|
||||
for image in $(docker images -q)
|
||||
do
|
||||
docker rmi $image
|
||||
done
|
||||
Reference in New Issue
Block a user