build(Makefile): add list-projects target

This commit is contained in:
Sarah Vaupel 2025-03-27 11:35:01 +01:00
parent 123e9eb057
commit 5fd52768bc

View File

@ -109,6 +109,10 @@ status:
# HELP: print an overview of the ressource usage of the currently running services
top:
docker compose stats
.PHONY: list-projects
# HELP: list all currently running projects on this machine
list-projects:
docker compose ls
.PHONY: log-%
# HELP(log-$SERVICE): follow the output of a given service. Service must be running.