Skip to content

Commit

Permalink
additional commands to investigate disk usage
Browse files Browse the repository at this point in the history
  • Loading branch information
lukey-luke committed Feb 6, 2025
1 parent abd2a4e commit bbbdf53
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/docker_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,15 @@ jobs:
steps:
- name: check disk
run: lsblk && df -h
- name: check docker disk usage (1 of 4)
run: docker system df
- name: check docker disk usage (2 of 4)
run: docker images -f "dangling=true"
- name: check docker disk usage (3 of 4)
run: docker ps -a --filter "status=exited"
- name: check docker disk usage (4 of 4)
run: docker volume ls -qf dangling=true


- name: Install python3
run: sudo dnf install python3
Expand Down Expand Up @@ -78,6 +87,14 @@ jobs:
steps:
- name: check disk
run: lsblk && df -h
- name: check docker disk usage (1 of 4)
run: docker system df
- name: check docker disk usage (2 of 4)
run: docker images -f "dangling=true"
- name: check docker disk usage (3 of 4)
run: docker ps -a --filter "status=exited"
- name: check docker disk usage (4 of 4)
run: docker volume ls -qf dangling=true

- name: Download artifact
uses: actions/download-artifact@v4
Expand Down

0 comments on commit bbbdf53

Please sign in to comment.