From b89620b4ed74d6162e533ebd04ee32e1e3ed7e94 Mon Sep 17 00:00:00 2001 From: "Dr. B. M. Riazul Islam" Date: Sat, 7 Mar 2026 01:40:48 +0600 Subject: [PATCH] Added cleanup workflow --- .gitea/workflows/cleanup.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .gitea/workflows/cleanup.yml diff --git a/.gitea/workflows/cleanup.yml b/.gitea/workflows/cleanup.yml new file mode 100644 index 0000000..2c8eeae --- /dev/null +++ b/.gitea/workflows/cleanup.yml @@ -0,0 +1,12 @@ +name: Emergency Host Cleanup +on: workflow_dispatch # Manual trigger + +jobs: + cleanup: + runs-on: ubuntu-latest # or whatever label your full runner uses + steps: + - name: Prune Docker Host + # This is the most effective command to clear the 'overlay' 100% full error + run: | + docker system prune -af --volumes + df -h \ No newline at end of file