17 lines
259 B
Makefile
17 lines
259 B
Makefile
|
all:
|
||
|
echo OK
|
||
|
|
||
|
cleanup-containers:
|
||
|
printf "y\n" | docker container prune
|
||
|
|
||
|
cleanup-images:
|
||
|
printf "y\n" | docker image prune
|
||
|
|
||
|
prune-system:
|
||
|
docker system prune --all
|
||
|
|
||
|
cleanup-all-images:
|
||
|
sh cleanup-all-images.sh
|
||
|
|
||
|
cleanup: cleanup-containers cleanup-images
|