build(Makefile): stop running containers before clean

This commit is contained in:
Sarah Vaupel 2024-10-23 01:13:43 +02:00
parent 8028a1f36b
commit 80a7bc4b08

View File

@ -57,9 +57,11 @@ help:
.PHONY: clean
# HELP: remove all compilation results in the directory but leave containers and images unharmed
clean:
$(MAKE) stop
-rm -rf node_modules .npm .cache assets/icons assets/favicons static well-known
-rm -rf .stack-work .stack-work-build .stack-work-run .stack-work-test .stack-work-doc
-rm -rf bin .Dockerfile develop
-$(CONTAINER_COMMAND) container prune --force
.PHONY: clean-all
# HELP: like clean but with container and image prune
clean-all: clean