This commit is contained in:
2026-07-09 16:31:30 +08:00
commit 0bb2eb4c36
132 changed files with 61222 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
#!/bin/bash
while true; do
nc -l 127.0.0.1 9999 <<EOF
HTTP/1.1 200 OK
Content-Type: application/json
$(docker ps -a --format '{{.Names}}|{{.ID}}|{{.Image}}|{{.Status}}|{{.Ports}}')
EOF
done