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