An Ansible Playbook to build bootc multi-architecture images on RHEL, Fedora or CentOS Stream
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
218 B

#!/bin/bash
set -euxo pipefail
while IFS="," read -r image sha
do
skopeo copy --preserve-digests dir:/usr/lib/containers-image-cache/$sha containers-storage:$image
done < /usr/lib/containers-image-cache/mapping.txt