You would like to share an image with another developer, but without using a registry. How would you do it?
Answer
# On the local host
podman save -o some_image.tar IMAGE
rsync some_image.tar SOME_HOST
# On the remote host
podman load -i some_image.tar