podman instead of docker

master
Andrew Coleman 2020-08-03 11:54:34 -04:00
parent 04a8c80a6c
commit b31b081391
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
#!/bin/bash
for i in $(docker images -q -f dangling=true) ; do
docker rmi $i
for i in $(podman images -q -f dangling=true) ; do
podman rmi $i
done