first commit

This commit is contained in:
Yuri-Lima
2025-07-29 09:46:59 +02:00
commit b54fa7ec76
17 changed files with 177550 additions and 0 deletions

5
oom Executable file
View File

@@ -0,0 +1,5 @@
docker ps -aq | while read cid; do
if docker inspect "$cid" | grep -q '"OOMKilled": true'; then
echo "OOMKilled: $cid - $(docker inspect -f '{{.Name}}' $cid)"
fi
done