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
b5e83108
Commit
b5e83108
authored
1 year ago
by
Konstantin Pavlov
Committed by
Konstantin Pavlov
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
Updated nginx versions to 1.26.1 and 1.27.0
parent
9abe4ae4
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
generate-stackbrew-library.sh
+1
-1
1 addition, 1 deletion
generate-stackbrew-library.sh
sync-awsecr.sh
+1
-1
1 addition, 1 deletion
sync-awsecr.sh
update.sh
+9
-9
9 additions, 9 deletions
update.sh
with
11 additions
and
11 deletions
generate-stackbrew-library.sh
+
1
−
1
View file @
b5e83108
...
@@ -3,7 +3,7 @@ set -eu
...
@@ -3,7 +3,7 @@ set -eu
declare
-A
aliases
declare
-A
aliases
aliases
=(
aliases
=(
[
mainline]
=
'1 1.2
5
latest'
[
mainline]
=
'1 1.2
7
latest'
[
stable]
=
'1.26'
[
stable]
=
'1.26'
)
)
...
...
This diff is collapsed.
Click to expand it.
sync-awsecr.sh
+
1
−
1
View file @
b5e83108
...
@@ -6,7 +6,7 @@ registry="public.ecr.aws/z9d2n7e1"
...
@@ -6,7 +6,7 @@ registry="public.ecr.aws/z9d2n7e1"
declare
-A
aliases
declare
-A
aliases
aliases
=(
aliases
=(
[
mainline]
=
'1 1.2
5
latest'
[
mainline]
=
'1 1.2
7
latest'
[
stable]
=
'1.26'
[
stable]
=
'1.26'
)
)
...
...
This diff is collapsed.
Click to expand it.
update.sh
+
9
−
9
View file @
b5e83108
...
@@ -12,8 +12,8 @@ declare branches=(
...
@@ -12,8 +12,8 @@ declare branches=(
# Current nginx versions
# Current nginx versions
# Remember to update pkgosschecksum when changing this.
# Remember to update pkgosschecksum when changing this.
declare
-A
nginx
=(
declare
-A
nginx
=(
[
mainline]
=
'1.2
5.5
'
[
mainline]
=
'1.2
7.0
'
[
stable]
=
'1.26.
0
'
[
stable]
=
'1.26.
1
'
)
)
# Current njs versions
# Current njs versions
...
@@ -25,7 +25,7 @@ declare -A njs=(
...
@@ -25,7 +25,7 @@ declare -A njs=(
# Current njs patchlevel version
# Current njs patchlevel version
# Remember to update pkgosschecksum when changing this.
# Remember to update pkgosschecksum when changing this.
declare
-A
njspkg
=(
declare
-A
njspkg
=(
[
mainline]
=
'
3
'
[
mainline]
=
'
2
'
[
stable]
=
'2'
[
stable]
=
'2'
)
)
...
@@ -38,8 +38,8 @@ declare -A otel=(
...
@@ -38,8 +38,8 @@ declare -A otel=(
# Current package patchlevel version
# Current package patchlevel version
# Remember to update pkgosschecksum when changing this.
# Remember to update pkgosschecksum when changing this.
declare
-A
pkg
=(
declare
-A
pkg
=(
[
mainline]
=
1
[
mainline]
=
2
[
stable]
=
1
[
stable]
=
2
)
)
declare
-A
debian
=(
declare
-A
debian
=(
...
@@ -57,16 +57,16 @@ declare -A alpine=(
...
@@ -57,16 +57,16 @@ declare -A alpine=(
# when building alpine packages on architectures not supported by nginx.org
# when building alpine packages on architectures not supported by nginx.org
# Remember to update pkgosschecksum when changing this.
# Remember to update pkgosschecksum when changing this.
declare
-A
rev
=(
declare
-A
rev
=(
[
mainline]
=
'
27357d6c5453
'
[
mainline]
=
'
${NGINX_VERSION}-${PKG_RELEASE}
'
[
stable]
=
'
73d6839714a2
'
[
stable]
=
'
${NGINX_VERSION}-${PKG_RELEASE}
'
)
)
# Holds SHA512 checksum for the pkg-oss tarball produced by source code
# Holds SHA512 checksum for the pkg-oss tarball produced by source code
# revision/tag in the previous block
# revision/tag in the previous block
# Used in alpine builds for architectures not packaged by nginx.org
# Used in alpine builds for architectures not packaged by nginx.org
declare
-A
pkgosschecksum
=(
declare
-A
pkgosschecksum
=(
[
mainline]
=
'
a80fc5706ad8e98597478b9e041f658375d53d22f7c8004dd16354067a3d48eb4ef234830b697ddf5c45ec57b837237cc11317bcaaa5133ccbe71bce15d969b
0'
[
mainline]
=
'
cd3333f4dfa4a873f6df73dfe24e047adc092d779aefb46577b6307ff0d0125543508694a80158b2bfc891167ad763b0d08287829df9924d4c22f50d063e76c
0'
[
stable]
=
'
95d513d058493d60cba5a6bb328dc3c3e75ea115cf248a64bd921159e11c6fc87d33c7f058562c584fe440a219b931d53fd66bd4c596244b54287b62979834db
'
[
stable]
=
'
0db2bf5f86e7c31f23d0e3e7699a5d8a4d9d9b0dc2f98d3e3a31e004df20206270debf6502e4481892e8b64d55fba73fcc8d74c3e0ddfcd2d3f85a17fa02a25e
'
)
)
get_packages
()
{
get_packages
()
{
...
...
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