You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
error: cannot build manifest: image found is for unexpected architecture "aarch64" (expected "x86_64"), if that is intentional, please make sure --target-arch matches
or
error: cannot build manifest: image found is for unexpected architecture "x86_64" (expected "aarch64"), if that is intentional, please make sure --target-arch matches
And the corresponding architecture fails to build.
If I remove -v /var/lib/containers/storage:/var/lib/containers/storage \, then the script works fine.
The text was updated successfully, but these errors were encountered:
It appears that bootc gets confused if you try to build the same image for two architectures concurrently using the
--target-arch
option.I have the following script to produce a multi-arch manifest of disk image artifacts from bootc image builder:
This is the run-bib.sh script:
Running this script will either produce
or
And the corresponding architecture fails to build.
If I remove
-v /var/lib/containers/storage:/var/lib/containers/storage \
, then the script works fine.The text was updated successfully, but these errors were encountered: