diff --git a/Makefile b/Makefile
index 32741fd..952a147 100644
--- a/Makefile
+++ b/Makefile
@@ -21,13 +21,13 @@ build-docker:
 		$(shell git rev-parse --show-toplevel)
 
 # A local bcd image with users and funds for testing / development / integration purposes
-build-local:
+build-local-bcd:
 	$(DOCKER) build --tag babylonlabs-io/local-bcd -f contrib/images/local-bcd/Dockerfile .
 
-run-local: build-local stop-local
+run-bcd: build-local-bcd stop-bcd
 	$(DOCKER) run --name local-bcd babylonlabs-io/local-bcd
 
-stop-local:
+stop-bcd:
 	$(DOCKER) stop local-bcd || true
 	$(DOCKER) container rm -f local-bcd || true