From 5fd52768bcc3eb045c6f88b19cd73084a7c1705e Mon Sep 17 00:00:00 2001 From: Sarah Vaupel Date: Thu, 27 Mar 2025 11:35:01 +0100 Subject: [PATCH] build(Makefile): add list-projects target --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 456f8b7be..db8df3c86 100644 --- a/Makefile +++ b/Makefile @@ -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.