From f19f2ed2ba527adc688565ad0b19ad96faddf4f4 Mon Sep 17 00:00:00 2001 From: Lucas Riutzel Date: Mon, 14 Nov 2022 12:02:26 -0600 Subject: [PATCH] Clean should remove composer-cache --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index bb3965b9..9a699690 100644 --- a/Makefile +++ b/Makefile @@ -124,9 +124,11 @@ composer-purge: clean: destroy # Removes all artifacts built via make or docker @echo "Removing production tarball" rm $(CURDIR)/${PROJECT}-prod.tar || true - @echo "Removing docker images" + @echo "Removing this projects docker images" docker rmi ${LABLE_BASE}{,-prod}-{db,php,web}:latest \ || true + @echo "Remove drupalstand's shared composer cache" + docker volume rm composer-cache || true rebuild: destroy init # Destroy and rebuild the environment