This repository has been archived on 2021-04-14. You can view files and clone it, but cannot push or open issues/pull-requests.
bare-dotfiles/bin/clean-stale-images

5 lines
84 B
Plaintext
Raw Normal View History

2018-07-17 09:48:02 -04:00
#!/bin/bash
2020-08-03 11:54:34 -04:00
for i in $(podman images -q -f dangling=true) ; do
podman rmi $i
2020-01-03 14:32:19 -05:00
done