Containers

You would like to share an image with another developer, but without using a registry. How would you do it?

Difficulty: unrated

Source: bregman-arie/devops-exercises by Arie Bregman

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