From 4858b7c646095d434b7dd0008beb014508a50d2f Mon Sep 17 00:00:00 2001 From: pedro Date: Thu, 7 Mar 2024 17:31:38 +0100 Subject: [PATCH] status: add docker ps --- status.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/status.sh b/status.sh index 93c9a65..9a59f61 100755 --- a/status.sh +++ b/status.sh @@ -28,7 +28,7 @@ main() { )" _git_info ./ssikit_trustchain printf -- "%-36s | branch: %-8s | commit: %s\n" "${d_name}" "${branch_info}" "${commit_info}" - printf -- " note: outdated ssikit_trustchain version could be present on any instance. Hence, this only relevant for new or fresh builds\n\n" + printf -- " note: outdated ssikit_trustchain version could be present on any instance. Hence, this is only relevant for new or fresh builds\n\n" for i in ${instances}; do dirs="$(find . -maxdepth 1 -type d \ | grep -E 'pilot|instance' \ @@ -40,6 +40,8 @@ main() { printf -- " - %-30s | branch: %-8s | commit: %s\n" "${d_name}" "${branch_info}" "${commit_info}" done done + printf '\n\n$ docker ps\n\n' + docker ps } main "${@}"