Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
docker-nginx
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
GitHub Mirror
nginxinc
docker-nginx
Commits
e1611468
Commit
e1611468
authored
1 year ago
by
Konstantin Pavlov
Committed by
Konstantin Pavlov
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
Specify architecture to pull in the sync script.
parent
1f227619
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
sync-awsecr.sh
+9
-1
9 additions, 1 deletion
sync-awsecr.sh
with
9 additions
and
1 deletion
sync-awsecr.sh
+
9
−
1
View file @
e1611468
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment