From 020486819fc8a675602b1f9307f3a1d2b9291813 Mon Sep 17 00:00:00 2001 From: Sarah Vaupel Date: Tue, 25 Mar 2025 17:15:31 +0100 Subject: [PATCH] build(Makefile): add shell-$SERVICE target --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 77815988d..bd281da99 100644 --- a/Makefile +++ b/Makefile @@ -75,6 +75,10 @@ start: start-postgres start-maildev start-memcached start-minio start-backend start-%: docker compose up -d --build $* +.PHONY: shell-% +shell-%: + docker compose run $* + .PHONY: stop # HELP: stop all services stop: