This commit is contained in:
Cryptoval Trading Technologies
2026-06-08 02:28:14 +00:00
commit 6b8e9be45f
8 changed files with 331 additions and 0 deletions
Executable
+6
View File
@@ -0,0 +1,6 @@
#!/usr/bin/env bash
cd $(realpath $(dirname $0))
for prj in $(docker compose ls | grep 'running' | grep $(pwd) | awk '{print $1}'); do
docker compose -p $prj ps --format 'table {{.Names}}\t{{.Image}}\t{{.Status}}\t{{.Service}}' | grep -v IMAGE
done