build(Makefile): add help text for clean-images

This commit is contained in:
Sarah Vaupel 2025-02-20 17:34:50 +01:00
parent 0ecb342e8f
commit 61fb8b7ea9

View File

@ -70,7 +70,10 @@ clean:
-rm -rf bin .Dockerfile develop
-$(CONTAINER_COMMAND) container prune --force
.PHONY: clean-images
clean-images: clean
# HELP: stop all running containers and clean all images from local repositories
clean-images:
rm -rf develop
sleep 5
-$(CONTAINER_COMMAND) system prune --all --force --volumes
-$(CONTAINER_COMMAND) image prune --all --force
-$(CONTAINER_COMMAND) volume prune --force