Merged PR 18678: build(Makefile): start: exec instead of run

build(Makefile): start: exec instead of run
This commit is contained in:
Steffen Jost 2025-03-25 16:41:23 +00:00
commit 487069b29e

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