From 0d773d9f3d1f593ad2a4de05bbd280e1d2c0e858 Mon Sep 17 00:00:00 2001 From: Sarah Vaupel Date: Mon, 21 Oct 2024 17:25:27 +0200 Subject: [PATCH] build(Makefile): status target for container status --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index 1303530fd..aeee8dbbe 100644 --- a/Makefile +++ b/Makefile @@ -361,6 +361,11 @@ stop-container-by-id: # CONTAINER_ID=`grep 'CONTAINER_ID=' $(CONTAINER_FILE) | sed 's/CONTAINER_ID=//'` ; \ # $(MAKE) stop-container-by-id CONTAINER_ID=$${CONTAINER_ID} +.PHONY: status +# HELP: print develop status: running containers, used ports +status: + @./utils/develop-status.pl + .PHONY: log-% # HELP(log-{database,memcached,minio,backend,frontend,hoogle}): inspect output of a given (currently running) service. When a service supports multiple running instances in one develop (i.e. backend), you need to specify the exact instance by its associated file (e.g. backend-1, backend-2, etc.), please check the contents of the develop/ directory for a list of running instances. log-%: --develop