status: add docker ps

This commit is contained in:
pedro 2024-03-07 17:31:38 +01:00
parent eb89c21b66
commit 4858b7c646
1 changed files with 3 additions and 1 deletions

View File

@ -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 "${@}"