Skip to content
Snippets Groups Projects
Commit e1611468 authored by Konstantin Pavlov's avatar Konstantin Pavlov Committed by Konstantin Pavlov
Browse files

Specify architecture to pull in the sync script.

parent 1f227619
Branches
Tags
No related merge requests found
......@@ -108,8 +108,16 @@ echo "export DOCKER_CLI_EXPERIMENTAL=enabled"
echo
echo "# pulling stuff"
for arch in ${architectures[@]}; do
case $arch in
arm64v8)
parch="aarch64"
;;
*)
parch=$arch
;;
esac
for tag in ${pulllist[@]}; do
echo "docker pull $arch/$tag";
echo "docker pull --platform linux/$parch $arch/$tag";
done
done
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment