1
0
mirror of synced 2026-02-03 00:00:12 -05:00
Files
core/tools/dotnet-bootstrap/base/lab/dockercleanup.py
2016-11-20 23:40:53 +00:00

9 lines
187 B
Python
Executable File

#!/usr/bin/env python
from shellcall import ShellCall
# Delete all containers
ShellCall("docker rm $(docker ps -a -q)")
# Delete all images
ShellCall("docker rmi $(docker images -q)")