#!/bin/sh
# podman image ls
### Stop all containers with:
#podman stop $(podman ps -q)
### Remove unused images with:
# podman image prune --all
### Remove all dangling data, i.e. containers stopped, volumes excluding
### containers and images with no containers:
# podman system prune --all