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
3d618e31
Commit
3d618e31
authored
4 years ago
by
Konstantin Pavlov
Browse files
Options
Downloads
Patches
Plain Diff
Added a script to simplify images mirroring to AWS ECR
parent
c411fdef
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
sync-awsecr.sh
+154
-0
154 additions, 0 deletions
sync-awsecr.sh
with
154 additions
and
0 deletions
sync-awsecr.sh
0 → 100755
+
154
−
0
View file @
3d618e31
#!/bin/bash
set
-eu
image
=
"nginx"
registry
=
"public.ecr.aws/z9d2n7e1"
declare
-A
aliases
aliases
=(
[
mainline]
=
'1 1.19 latest'
[
stable]
=
'1.18'
)
architectures
=(
amd64 arm64v8
)
self
=
"
$(
basename
"
$BASH_SOURCE
"
)
"
cd
"
$(
dirname
"
$(
readlink
-f
"
$BASH_SOURCE
"
)
"
)
"
base
=
debian
versions
=(
mainline stable
)
pulllist
=()
declare
-A
taglist
taglist
=()
# get the most recent commit which modified any of "$@"
fileCommit
()
{
git log
-1
--format
=
'format:%H'
HEAD
--
"
$@
"
}
# get the most recent commit which modified "$1/Dockerfile" or any file COPY'd from "$1/Dockerfile"
dirCommit
()
{
local dir
=
"
$1
"
;
shift
(
cd
"
$dir
"
fileCommit
\
Dockerfile
\
$(
git show HEAD:./Dockerfile |
awk
'
toupper($1) == "COPY" {
for (i = 2; i < NF; i++) {
print $i
}
}
'
)
)
}
# prints "$2$1$3$1...$N"
join
()
{
local
sep
=
"
$1
"
;
shift
local
out
;
printf
-v
out
"
${
sep
//%/%%
}
%s"
"
$@
"
echo
"
${
out
#
$sep
}
"
}
for
version
in
"
${
versions
[@]
}
"
;
do
commit
=
"
$(
dirCommit
"
$version
/
$base
"
)
"
fullVersion
=
"
$(
git show
"
$commit
"
:
"
$version
/
$base
/Dockerfile"
|
awk
'$1 == "ENV" && $2 == "NGINX_VERSION" { print $3; exit }'
)
"
pulllist+
=(
"
$image
:
$fullVersion
"
)
for
variant
in
perl alpine alpine-perl
;
do
pulllist+
=(
"
$image
:
$fullVersion
-
$variant
"
)
done
done
for
version
in
"
${
versions
[@]
}
"
;
do
commit
=
"
$(
dirCommit
"
$version
/
$base
"
)
"
fullVersion
=
"
$(
git show
"
$commit
"
:
"
$version
/
$base
/Dockerfile"
|
awk
'$1 == "ENV" && $2 == "NGINX_VERSION" { print $3; exit }'
)
"
versionAliases
=(
$fullVersion
)
if
[
"
$version
"
!=
"
$fullVersion
"
]
;
then
versionAliases+
=(
$version
)
fi
versionAliases+
=(
${
aliases
[
$version
]
:-}
)
for
tag
in
${
versionAliases
[@]
:1
}
;
do
taglist[
"
$image
:
$tag
"
]=
"
$image
:
$fullVersion
"
done
for
variant
in
debian-perl
;
do
variantAliases
=(
"
${
versionAliases
[@]/%/-perl
}
"
)
variantAliases
=(
"
${
variantAliases
[@]//latest-/
}
"
)
for
tag
in
${
variantAliases
[@]
}
;
do
if
[
"
$tag
"
!=
"
${
fullVersion
}
-perl"
]
;
then
taglist[
"
$image
:
$tag
"
]=
"
$image
:
$fullVersion
-perl"
fi
done
done
for
variant
in
alpine alpine-perl
;
do
commit
=
"
$(
dirCommit
"
$version
/
$variant
"
)
"
variantAliases
=(
"
${
versionAliases
[@]/%/-
$variant
}
"
)
variantAliases
=(
"
${
variantAliases
[@]//latest-/
}
"
)
for
tag
in
${
variantAliases
[@]
}
;
do
if
[
"
$tag
"
!=
"
${
fullVersion
}
-
$variant
"
]
;
then
taglist[
"
$image
:
$tag
"
]=
"
$image
:
${
fullVersion
}
-
$variant
"
fi
done
done
done
echo
"#!/bin/sh"
echo
"set -ex"
echo
echo
"export DOCKER_CLI_EXPERIMENTAL=enabled"
echo
echo
"# pulling stuff"
for
arch
in
${
architectures
[@]
}
;
do
for
tag
in
${
pulllist
[@]
}
;
do
echo
"docker pull
$arch
/
$tag
"
;
done
done
echo
echo
"# tagging stuff"
for
arch
in
${
architectures
[@]
}
;
do
for
tag
in
${
pulllist
[@]
}
;
do
echo
"docker tag
$arch
/
$tag
$registry
/
$tag
-
$arch
"
done
for
tag
in
${
!taglist[@]
}
;
do
echo
"docker tag
$arch
/
${
taglist
[
$tag
]
}
$registry
/
$tag
-
$arch
"
done
done
echo
"# pushing stuff"
for
arch
in
${
architectures
[@]
}
;
do
for
tag
in
${
pulllist
[@]
}
;
do
echo
"docker push
$registry
/
$tag
-
$arch
"
done
for
tag
in
${
!taglist[@]
}
;
do
echo
"docker push
$registry
/
$tag
-
$arch
"
done
done
echo
echo
"# manifesting stuff"
for
tag
in
${
pulllist
[@]
}
${
!taglist[@]
}
;
do
string
=
"docker manifest create --amend
$registry
/
$tag
"
for
arch
in
${
architectures
[@]
}
;
do
string+
=
"
$registry
/
$tag
-
$arch
"
done
echo
$string
done
echo
echo
"# pushing manifests"
for
tag
in
${
pulllist
[@]
}
${
!taglist[@]
}
;
do
echo
"docker manifest push --purge
$registry
/
$tag
"
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