We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac2bc7e commit 7188536Copy full SHA for 7188536
builder.sh
@@ -747,7 +747,9 @@ function init_crosscompile() {
747
fi
748
749
bashio::log.info "Setup crosscompiling feature"
750
- docker run --rm --privileged multiarch/qemu-user-static --reset -p yes \
+ docker run --privileged --rm tonistiigi/binfmt --uninstall qemu-* \
751
+ > /dev/null 2>&1 || bashio::log.warning "Can't remove old qemu binfmt"
752
+ docker run --rm --privileged tonistiigi/binfmt --install all \
753
> /dev/null 2>&1 || bashio::log.warning "Can't enable crosscompiling feature"
754
}
755
0 commit comments