build(Makefile): start: exec instead of run

This commit is contained in:
Sarah Vaupel 2025-03-25 17:41:07 +01:00
parent 9c1b074adf
commit f5d701a871

View File

@ -69,7 +69,7 @@ compile-%:
.PHONY: start
# HELP: start complete development environment with a fresh test database
start: start-postgres start-maildev start-memcached start-minio start-backend
docker compose run backend make start
docker compose exec backend make start
.PHONY: start-%
# HELP(start-$SERVICE): start a given service
start-%: