From 3cf3858fca480df6e9679d615d8371cb85d1fdd5 Mon Sep 17 00:00:00 2001 From: Felipe Cardoso Date: Fri, 21 Nov 2025 07:25:22 +0100 Subject: [PATCH] Update Makefile to refine `clean-slate` target with explicit dev compose file and orphan removal --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f690971..b64162b 100755 --- a/Makefile +++ b/Makefile @@ -31,7 +31,7 @@ clean: # WARNING! THIS REMOVES CONTAINERS AND VOLUMES AS WELL - DO NOT USE THIS UNLESS YOU WANT TO START OVER WITH DATA AND ALL clean-slate: - docker compose down -v + docker compose -f docker-compose.dev.yml down -v --remove-orphans push-images: docker build -t $(REGISTRY)/backend:$(VERSION) ./backend