build(Makefile): add shell-$SERVICE target

This commit is contained in:
Sarah Vaupel 2025-03-25 17:15:31 +01:00
parent cd8a7a8322
commit 020486819f

View File

@ -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: