diff --git a/.bashbrew-buildkit-syntax b/.bashbrew-buildkit-syntax
new file mode 100644
index 0000000000..9c2bb335ac
--- /dev/null
+++ b/.bashbrew-buildkit-syntax
@@ -0,0 +1 @@
+docker/dockerfile:1@sha256:39b85bbfa7536a5feceb7372a0817649ecb2724562a38360f4d6a7782a409b14
diff --git a/.bin/bashbrew-buildkit-env-setup.sh b/.bin/bashbrew-buildkit-env-setup.sh
new file mode 100755
index 0000000000..e07eaf5104
--- /dev/null
+++ b/.bin/bashbrew-buildkit-env-setup.sh
@@ -0,0 +1,78 @@
+#!/usr/bin/env bash
+
+# this file is intended to be sourced before invocations of "bashbrew build" which might invoke "docker buildx" / BuildKit ("Builder: buildkit")
+
+_resolve_external_pins() {
+ local -
+ set -Eeuo pipefail
+
+ local binDir oiDir
+ binDir="$(dirname "$BASH_SOURCE")"
+ oiDir="$(dirname "$binDir")"
+
+ local image
+ for image; do
+ [ -n "$image" ]
+ local wc
+ wc="$(wc -l <<<"$image")"
+ [ "$wc" -eq 1 ]
+
+ local file digest
+ file="$("$oiDir/.external-pins/file.sh" "$image")"
+ digest="$(< "$file")"
+ [ -n "$digest" ]
+ image+="@$digest"
+
+ echo "$image"
+ done
+}
+
+_jq_setenv() {
+ local env="$1"; shift
+ local val="$1"; shift
+ jq -c --arg env "$env" --arg val "$val" '.[$env] = $val'
+}
+
+_bashbrew_buildkit_env_setup() {
+ local -
+ set -Eeuo pipefail
+
+ local binDir oiDir
+ binDir="$(dirname "$BASH_SOURCE")"
+ oiDir="$(dirname "$binDir")"
+
+ local externalPins
+ externalPins="$("$oiDir/.external-pins/list.sh")"
+
+ local vars='{}'
+
+ local dockerfileTag
+ dockerfileTag="$(grep <<<"$externalPins" -m1 '^docker/dockerfile:')"
+ dockerfileTag="$(_resolve_external_pins "$dockerfileTag")"
+ vars="$(_jq_setenv <<<"$vars" BASHBREW_BUILDKIT_SYNTAX "$dockerfileTag")"
+
+ case "${BASHBREW_ARCH:-}" in
+ nope) # amd64 | arm64v8) # TODO re-enable this once we figure out how to handle "docker build --tag X" + "FROM X" correctly all-local
+ BASHBREW_BUILDKIT_IMAGE="$(grep <<<"$externalPins" -m1 '^moby/buildkit:')"
+ BASHBREW_BUILDKIT_IMAGE="$(_resolve_external_pins "$BASHBREW_BUILDKIT_IMAGE")"
+ export BASHBREW_BUILDKIT_IMAGE
+
+ local buildxBuilder
+ buildxBuilder="$("$binDir/docker-buildx-ensure.sh")" # reminder: this script *requires* BASHBREW_ARCH (to avoid "accidental amd64" mistakes)
+ vars="$(_jq_setenv <<<"$vars" BUILDX_BUILDER "$buildxBuilder")"
+
+ local sbomTag
+ # https://hub.docker.com/r/docker/scout-sbom-indexer/tags
+ sbomTag="$(grep <<<"$externalPins" -m1 '^docker/scout-sbom-indexer:')"
+ sbomTag="$(_resolve_external_pins "$sbomTag")"
+ vars="$(_jq_setenv <<<"$vars" BASHBREW_BUILDKIT_SBOM_GENERATOR "$sbomTag")"
+ ;;
+ esac
+
+ if [ -t 1 ]; then
+ jq <<<"$vars"
+ else
+ cat <<<"$vars"
+ fi
+}
+_bashbrew_buildkit_env_setup
diff --git a/.bin/docker-buildx-ensure.sh b/.bin/docker-buildx-ensure.sh
new file mode 100755
index 0000000000..5f7079f2a8
--- /dev/null
+++ b/.bin/docker-buildx-ensure.sh
@@ -0,0 +1,64 @@
+#!/usr/bin/env bash
+set -Eeuo pipefail
+
+: "${BASHBREW_ARCH:?missing explicit BASHBREW_ARCH}"
+: "${BASHBREW_BUILDKIT_IMAGE:?missing explicit BASHBREW_BUILDKIT_IMAGE (moby/buildkit:buildx-stable-1 ?)}"
+
+builderName="bashbrew-$BASHBREW_ARCH"
+container="buildx_buildkit_$builderName"
+
+# make sure the buildx builder name is the only thing that we print to stdout (so this script's output can be captured and used to set BUILDX_BUILDER)
+echo "$builderName"
+exec >&2
+
+if docker buildx inspect "$builderName" &> /dev/null; then
+ if containerImage="$(docker container inspect --format '{{ .Config.Image }}' "$container" 2>/dev/null)" && [ "$containerImage" = "$BASHBREW_BUILDKIT_IMAGE" ]; then
+ echo >&2
+ echo >&2 "note: '$container' container already exists and is running the correct image ('$BASHBREW_BUILDKIT_IMAGE'); bailing instead of recreating the '$builderName' builder (to avoid unnecessary churn)"
+ echo >&2
+ exit 0
+ fi
+
+ docker buildx rm --keep-state "$builderName"
+fi
+
+platform="$(bashbrew cat --format '{{ ociPlatform arch }}' <(echo 'Maintainers: empty hack (@example)'))"
+
+hubMirrors="$(docker info --format '{{ json .RegistryConfig.Mirrors }}' | jq -c '
+ [ env.DOCKERHUB_PUBLIC_PROXY // empty, .[]? ]
+ | map(select(startswith("https://")) | ltrimstr("https://") | rtrimstr("/") | select(contains("/") | not))
+ | reduce .[] as $item ( # "unique" but order-preserving (we want DOCKERHUB_PUBLIC_PROXY first followed by everything else set in the dockerd mirrors config without duplication)
+ [];
+ if index($item) then . else . + [ $item ] end
+ )
+')"
+
+read -r -d '' buildkitdConfig <<-EOF || :
+ # https://github.com/moby/buildkit/blob/v0.11.4/docs/buildkitd.toml.md
+
+ [worker.oci]
+ platforms = [ "$platform" ]
+ gc = false # we want to do GC manually
+
+ # this should be unused (for now?), but included for completeness/safety
+ [worker.containerd]
+ platforms = [ "$platform" ]
+ namespace = "buildkit-$builderName"
+ gc = false
+
+ [registry."docker.io"]
+ mirrors = $hubMirrors
+EOF
+
+# https://docs.docker.com/engine/reference/commandline/buildx_create/
+docker buildx create \
+ --name "$builderName" \
+ --node "$builderName" \
+ --config <(printf '%s' "$buildkitdConfig") \
+ --platform "$platform" \
+ --driver docker-container \
+ --driver-opt image="$BASHBREW_BUILDKIT_IMAGE" \
+ --bootstrap
+
+# 👀
+docker update --restart=always "$container"
diff --git a/.buildkit-build-contexts.sh b/.buildkit-build-contexts.sh
new file mode 100755
index 0000000000..2f0170b786
--- /dev/null
+++ b/.buildkit-build-contexts.sh
@@ -0,0 +1,55 @@
+#!/usr/bin/env bash
+set -Eeuo pipefail
+
+# given a list of image references, returns an appropriate list of "ref=docker-image://foo@sha256:xxx" for the current architecture
+
+dir="$(dirname "$BASH_SOURCE")"
+
+[ -n "$BASHBREW_ARCH" ]
+archNamespace=
+
+die() {
+ echo >&2 "error: $*"
+ exit 1
+}
+
+for img; do
+ lookup=
+ case "$img" in
+ *@sha256:*)
+ lookup="$img"
+ ;;
+
+ */*)
+ file="$("$dir/.external-pins/file.sh" "$img")" || die "'$img': failed to look up external pin file"
+ digest="$(< "$file")" || die "'$img': failed to read external pin file ('$file')"
+ [ -n "$digest" ] || die "'$img': empty external pin file ('$file')"
+ lookup="${img%@*}@$digest" # img should never have an @ in it here, but just in case
+ ;;
+
+ *)
+ [ -n "$BASHBREW_ARCH_NAMESPACES" ] || die 'missing BASHBREW_ARCH_NAMESPACES'
+ archNamespace="${archNamespace:-$(bashbrew cat --format '{{ archNamespace arch }}' "$dir/library/hello-world")}"
+ [ -n "$archNamespace" ] || die "failed to get arch namespace for '$BASHBREW_ARCH'"
+ lookup="$archNamespace/$img"
+ ;;
+ esac
+ [ -n "$lookup" ] || die "'$img': failed to determine what image to query"
+
+ json="$(bashbrew remote arches --json "$lookup" || die "'$img': failed lookup ('$lookup')")"
+ digests="$(jq <<<"$json" -r '.arches[env.BASHBREW_ARCH] // [] | map(.digest | @sh) | join(" ")')"
+ eval "digests=( $digests )"
+
+ if [ "${#digests[@]}" -gt 1 ]; then
+ echo >&2 "warning: '$lookup' has ${#digests[@]} images for '$BASHBREW_ARCH'; returning only the first"
+ fi
+
+ for digest in "${digests[@]}"; do
+ echo "$img=docker-image://${lookup%@*}@$digest"
+ continue 2
+ done
+
+ digest="$(jq <<<"$json" -r '.desc.digest')"
+ arches="$(jq <<<"$json" -r '.arches | keys | join(" ")')"
+ die "'$img': no appropriate digest for '$BASHBREW_ARCH' found in '$lookup' ('$digest'; arches '$arches')"
+done
diff --git a/.external-pins/docker/dockerfile___1 b/.external-pins/docker/dockerfile___1
new file mode 100644
index 0000000000..90c04692f5
--- /dev/null
+++ b/.external-pins/docker/dockerfile___1
@@ -0,0 +1 @@
+sha256:ac85f380a63b13dfcefa89046420e1781752bab202122f8f50032edf31be0021
diff --git a/.external-pins/docker/scout-sbom-indexer___1 b/.external-pins/docker/scout-sbom-indexer___1
new file mode 100644
index 0000000000..12cc3c6025
--- /dev/null
+++ b/.external-pins/docker/scout-sbom-indexer___1
@@ -0,0 +1 @@
+sha256:40032a50e6841b886507a17805318566fdfc9085a2e8590524aeaa7caf11d2d0
diff --git a/.external-pins/file.sh b/.external-pins/file.sh
new file mode 100755
index 0000000000..c3495a8c46
--- /dev/null
+++ b/.external-pins/file.sh
@@ -0,0 +1,16 @@
+#!/usr/bin/env bash
+set -Eeuo pipefail
+
+# given an image (name:tag), return the appropriate filename
+
+dir="$(dirname "$BASH_SOURCE")"
+
+for img; do
+ if [[ "$img" != *:* ]]; then
+ echo >&2 "error: '$img' does not contain ':' -- this violates our assumptions! (did you mean '$img:latest' ?)"
+ exit 1
+ fi
+
+ imgFile="$dir/${img/:/___}" # see ".external-pins/list.sh"
+ echo "$imgFile"
+done
diff --git a/.external-pins/list.sh b/.external-pins/list.sh
new file mode 100755
index 0000000000..adee8d3226
--- /dev/null
+++ b/.external-pins/list.sh
@@ -0,0 +1,19 @@
+#!/usr/bin/env bash
+set -Eeuo pipefail
+
+dir="$(dirname "$BASH_SOURCE")"
+
+find "$dir" -mindepth 2 -type f -printf '%P\n' | sed -e 's/___/:/' | sort
+
+# assumptions which make the "___" -> ":" conversion ~safe (examples referencing "example.com/foo/bar:baz"):
+#
+# 1. we *always* specify a tag ("baz")
+# 2. the domain ("example.com") cannot contain underscores
+# 3. we do not pin to any registry with a non-443 port ("example.com:8443")
+# 4. the repository ("foo/bar") can only contain singular or double underscores (never triple underscore), and only between alphanumerics (thus never right up next to ":")
+# 5. we do *not* use the "g" regex modifier in our sed, which means only the first instance of triple underscore is replaced (in pure Bash, that's "${img/:/___}" or "${img/___/:}" depending on the conversion direction)
+#
+# see https://github.com/distribution/distribution/blob/411d6bcfd2580d7ebe6e346359fa16aceec109d5/reference/regexp.go
+# (see also https://github.com/docker-library/perl-bashbrew/blob/6685582f7889ef4806f0544b93f10640c7608b1a/lib/Bashbrew/RemoteImageRef.pm#L9-L26 for a condensed version)
+#
+# see https://github.com/docker-library/official-images/issues/13608 for why we can't just use ":" as-is (even though Linux, macOS, and even Windows via MSYS / WSL2 don't have any issues with it)
diff --git a/.external-pins/mcr.microsoft.com/windows/nanoserver___1809 b/.external-pins/mcr.microsoft.com/windows/nanoserver___1809
new file mode 100644
index 0000000000..4b3c55a08b
--- /dev/null
+++ b/.external-pins/mcr.microsoft.com/windows/nanoserver___1809
@@ -0,0 +1 @@
+sha256:4bb2610b0e4f848e81d091cba672b0308a8eebf6c4a4f006e9c4c12b85d1823e
diff --git a/.external-pins/mcr.microsoft.com/windows/nanoserver___ltsc2022 b/.external-pins/mcr.microsoft.com/windows/nanoserver___ltsc2022
new file mode 100644
index 0000000000..711521f821
--- /dev/null
+++ b/.external-pins/mcr.microsoft.com/windows/nanoserver___ltsc2022
@@ -0,0 +1 @@
+sha256:6562c9a2580260e4f2e3a081cc2cf1d960899cbce7c4568fb851e4848ca50e07
diff --git a/.external-pins/mcr.microsoft.com/windows/servercore___1809 b/.external-pins/mcr.microsoft.com/windows/servercore___1809
new file mode 100644
index 0000000000..2e4605e5f6
--- /dev/null
+++ b/.external-pins/mcr.microsoft.com/windows/servercore___1809
@@ -0,0 +1 @@
+sha256:3cba12bffca83466997158c8a0d38f20a18fb14f5ec62cd6454dfdd328278d87
diff --git a/.external-pins/mcr.microsoft.com/windows/servercore___ltsc2022 b/.external-pins/mcr.microsoft.com/windows/servercore___ltsc2022
new file mode 100644
index 0000000000..194363a1ee
--- /dev/null
+++ b/.external-pins/mcr.microsoft.com/windows/servercore___ltsc2022
@@ -0,0 +1 @@
+sha256:d227d7ab11f4aa0da7779adc31616924cf0b15846a10313d83a644541208f80b
diff --git a/.external-pins/moby/buildkit___buildx-stable-1 b/.external-pins/moby/buildkit___buildx-stable-1
new file mode 100644
index 0000000000..c45a5c0b83
--- /dev/null
+++ b/.external-pins/moby/buildkit___buildx-stable-1
@@ -0,0 +1 @@
+sha256:890dcae054e3039f6c6b76bf0da80a130fa6e6bb1f3624063ef0210ac2c57b06
diff --git a/.external-pins/redhat/ubi8-minimal___latest b/.external-pins/redhat/ubi8-minimal___latest
new file mode 100644
index 0000000000..aa45e014ca
--- /dev/null
+++ b/.external-pins/redhat/ubi8-minimal___latest
@@ -0,0 +1 @@
+sha256:621f5245fb3e8597a626163cdf1229e1f8311e07ab71bb1e9332014b51c59f9c
diff --git a/.external-pins/redhat/ubi8___latest b/.external-pins/redhat/ubi8___latest
new file mode 100644
index 0000000000..eff3034cc8
--- /dev/null
+++ b/.external-pins/redhat/ubi8___latest
@@ -0,0 +1 @@
+sha256:a7143118671dfc61aca46e8ab9e488500495a3c4c73a69577ca9386564614c13
diff --git a/.external-pins/redhat/ubi9-minimal___latest b/.external-pins/redhat/ubi9-minimal___latest
new file mode 100644
index 0000000000..63605b9cb7
--- /dev/null
+++ b/.external-pins/redhat/ubi9-minimal___latest
@@ -0,0 +1 @@
+sha256:0dfa71a7ec2caf445e7ac6b7422ae67f3518960bd6dbf62a7b77fa7a6cfc02b1
diff --git a/.external-pins/redhat/ubi9___latest b/.external-pins/redhat/ubi9___latest
new file mode 100644
index 0000000000..5fb94484b6
--- /dev/null
+++ b/.external-pins/redhat/ubi9___latest
@@ -0,0 +1 @@
+sha256:351ed8b24d440c348486efd99587046e88bb966890a9207a5851d3a34a4dd346
diff --git a/.external-pins/tag.sh b/.external-pins/tag.sh
new file mode 100755
index 0000000000..ae631d7a56
--- /dev/null
+++ b/.external-pins/tag.sh
@@ -0,0 +1,26 @@
+#!/usr/bin/env bash
+set -Eeuo pipefail
+
+# given a filename, return the appropriate image (name:tag)
+
+origDir="$(dirname "$BASH_SOURCE")"
+dir="$(readlink -ve "$origDir")"
+
+for file; do
+ abs="$(readlink -vm "$file")"
+ rel="${abs#$dir/}"
+ rel="${rel##*.external-pins/}" # in case we weren't inside "$dir" but the path is legit
+ if [ "$rel" = "$abs" ]; then
+ echo >&2 "error: '$file' is not within '$origDir'"
+ echo >&2 "('$abs' vs '$dir')"
+ exit 1
+ fi
+
+ img="${rel/___/:}" # see ".external-pins/list.sh"
+ if [ "$img" = "$rel" ]; then
+ echo >&2 "error: '$file' does not contain ':' ('___') -- this violates our assumptions!"
+ exit 1
+ fi
+
+ echo "$img"
+done
diff --git a/.external-pins/update.sh b/.external-pins/update.sh
new file mode 100755
index 0000000000..bd48d75ff9
--- /dev/null
+++ b/.external-pins/update.sh
@@ -0,0 +1,25 @@
+#!/usr/bin/env bash
+set -Eeuo pipefail
+
+dir="$(dirname "$BASH_SOURCE")"
+
+if [ "$#" -eq 0 ]; then
+ images="$("$dir/list.sh")"
+ set -- $images
+fi
+
+for img; do
+ echo -n "$img -> "
+
+ if [[ "$img" != *:* ]]; then
+ echo >&2 "error: '$img' does not contain ':' -- this violates our assumptions! (did you mean '$img:latest' ?)"
+ exit 1
+ fi
+
+ digest="$(bashbrew remote arches --json "$img" | jq -r '.desc.digest')"
+
+ imgFile="$("$dir/file.sh" "$img")"
+ imgDir="$(dirname "$imgFile")"
+ mkdir -p "$imgDir"
+ echo "$digest" | tee "$imgFile"
+done
diff --git a/.github/workflows/.bashbrew/action.yml b/.github/workflows/.bashbrew/action.yml
new file mode 100644
index 0000000000..aba6e2c86e
--- /dev/null
+++ b/.github/workflows/.bashbrew/action.yml
@@ -0,0 +1,19 @@
+# https://github.com/docker-library/official-images/pull/13556#issuecomment-1319181339 🙈
+name: 'Shared Bashbrew Action'
+description: 'Install the same version of Bashbrew consistently in all other GitHub Actions'
+inputs:
+ build:
+ default: 'host' # or 'docker' or 'none'
+runs:
+ using: 'composite'
+ steps:
+
+ # these two version numbers are intentionally as close together as I could possibly get them because no matter what I tried, GitHub will not allow me to DRY them (can't have any useful variables in `uses:` and can't even have YAML references to steal it in `env:` or something)
+ - shell: 'bash -Eeuo pipefail -x {0}'
+ run: echo BASHBREW_VERSION=v0.1.8 >> "$GITHUB_ENV"
+ - uses: docker-library/bashbrew@v0.1.8
+ if: inputs.build == 'host'
+
+ - run: docker build --pull --tag oisupport/bashbrew:base "https://github.com/docker-library/bashbrew.git#$BASHBREW_VERSION"
+ shell: 'bash -Eeuo pipefail -x {0}'
+ if: inputs.build == 'docker'
diff --git a/.github/workflows/generate.sh b/.github/workflows/generate.sh
index a318c1378f..2c9a203088 100755
--- a/.github/workflows/generate.sh
+++ b/.github/workflows/generate.sh
@@ -1,29 +1,33 @@
#!/usr/bin/env bash
set -Eeuo pipefail
-
-bashbrewDir="$1"; shift
+
+#
+# NOTE: this is *not* a good example for integrating these tests into your own repository!
+# If you want that, check out https://github.com/docker-library/golang/blob/3f2c52653043f067156ce4f41182c2a758c4c857/.github/workflows/ci.yml instead.
+#
+
+[ -d "$BASHBREW_SCRIPTS/github-actions" ]
if [ "$#" -eq 0 ]; then
git fetch --quiet https://github.com/docker-library/official-images.git master
- changes="$(git diff --numstat FETCH_HEAD...HEAD -- library/ | cut -d$'\t' -f3-)"
+ changes="$(git diff --no-renames --name-only --diff-filter='d' FETCH_HEAD...HEAD -- library/)"
repos="$(xargs -rn1 basename <<<"$changes")"
set -- $repos
fi
strategy='{}'
for repo; do
- newStrategy="$(GITHUB_REPOSITORY="$repo" GENERATE_STACKBREW_LIBRARY='cat "library/$GITHUB_REPOSITORY"' "$bashbrewDir/scripts/github-actions/generate.sh")"
+ newStrategy="$(GITHUB_REPOSITORY="$repo" GENERATE_STACKBREW_LIBRARY='cat "library/$GITHUB_REPOSITORY"' "$BASHBREW_SCRIPTS/github-actions/generate.sh")"
newStrategy="$(jq -c --arg repo "$repo" '.matrix.include = [
.matrix.include[]
| ([ .meta.entries[].tags[0] ]) as $tags
| .name = ($tags | join(", "))
# replace "build" steps with something that uses "bashbrew" instead of "docker build"
- # https://github.com/docker-library/bashbrew/blob/a40a54d4d81b9fd2e39b4d7ba3fe203e8b022a67/scripts/github-actions/generate.sh#L74-L93
- | .runs.prepare += "\ngit clone --depth 1 https://github.com/docker-library/bashbrew.git ~/bashbrew\n~/bashbrew/bashbrew.sh --version"
+ # https://github.com/docker-library/bashbrew/blob/20b5a50a4eafee1e92fadca5f9cbbce6b16d80b1/scripts/github-actions/generate.sh#L79-L105
| .runs.build = (
(if .os | startswith("windows-") then "export BASHBREW_ARCH=windows-amd64 BASHBREW_CONSTRAINTS=" + ([ .meta.entries[].constraints[] ] | join(", ") | @sh) + "\n" else "" end)
+ "export BASHBREW_LIBRARY=\"$PWD/library\"\n"
- + ([ $tags[] | "~/bashbrew/bashbrew.sh build " + @sh ] | join("\n"))
+ + ([ $tags[] | "bashbrew build " + @sh ] | join("\n"))
)
# use our local clone of official-images for running tests (so test changes can be tested too, if they live in the PR with the image change)
# https://github.com/docker-library/bashbrew/blob/a40a54d4d81b9fd2e39b4d7ba3fe203e8b022a67/scripts/github-actions/generate.sh#L95
diff --git a/.github/workflows/munge-pr.yml b/.github/workflows/munge-pr.yml
index 3a8619ab4e..5d31ccfa76 100644
--- a/.github/workflows/munge-pr.yml
+++ b/.github/workflows/munge-pr.yml
@@ -3,6 +3,10 @@ name: Munge PR
on:
pull_request_target:
+permissions:
+ contents: read
+ pull-requests: write
+
defaults:
run:
shell: 'bash -Eeuo pipefail -x {0}'
@@ -13,99 +17,198 @@ env:
jobs:
- apply-labels:
- name: Apply Labels
+ gather:
+ name: Gather Metadata
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
with:
# ideally this would be "github.event.pull_request.merge_commit_sha" but according to https://docs.github.com/en/free-pro-team@latest/rest/reference/pulls#get-a-pull-request if "mergeable" is null (meaning there's a background job in-progress to check mergeability), that value is undefined...
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
- - id: labels
- name: Gather List
+ - id: gather
+ name: Affected Images
run: |
+ (set +x; echo "::stop-commands::$(echo -n ${{ github.token }} | sha256sum | head -c 64)")
git fetch --quiet https://github.com/docker-library/official-images.git master
- labels="$(git diff --numstat FETCH_HEAD...HEAD -- library/ | cut -d$'\t' -f3-)"
- if [ -n "$labels" ] && newImages="$(git diff --name-only --diff-filter=A FETCH_HEAD...HEAD -- $labels)" && [ -n "$newImages" ]; then
- labels+=$'\nnew-image'
+ externalPins="$(git diff --no-renames --name-only FETCH_HEAD...HEAD -- '.external-pins/*/**')"
+ externalPinTags="$(
+ if [ -n "$externalPins" ]; then
+ # doing backflips to run "tag.sh" from master instead of from the PR
+ git show FETCH_HEAD:.external-pins/tag.sh > ~/master-external-pins-tag.sh
+ chmod +x ~/master-external-pins-tag.sh
+ ~/master-external-pins-tag.sh $externalPins
+ fi
+ )"
+ images="$(git diff --no-renames --name-only FETCH_HEAD...HEAD -- library/)"
+ if [ -n "$images" ]; then
+ new="$(git diff --no-renames --name-only --diff-filter=A FETCH_HEAD...HEAD -- $images)"
+ deleted="$(git diff --no-renames --name-only --diff-filter=D FETCH_HEAD...HEAD -- $images)"
+ else
+ new=
+ deleted=
fi
- labels="$(jq -Rsc 'rtrimstr("\n") | split("\n") | { labels: ., count: length }' <<<"$labels")"
- jq . <<<"$labels"
- echo "::set-output name=labels::$labels"
+ export images new deleted externalPins externalPinTags
+ images="$(jq -cn '
+ (env.images | rtrimstr("\n") | split("\n")) as $images
+ | (env.new | rtrimstr("\n") | split("\n")) as $new
+ | (env.deleted | rtrimstr("\n") | split("\n")) as $deleted
+ | (env.externalPins | rtrimstr("\n") | split("\n")) as $externalPins
+ | (env.externalPinTags | rtrimstr("\n") | split("\n")) as $externalPinTags
+ | {
+ images: $images,
+ count: ($images | length),
+ new: $new,
+ deleted: $deleted,
+ externalPins: $externalPins,
+ externalPinTags: $externalPinTags,
+ externalPinsCount: ($externalPins | length),
+ }
+ | .imagesAndExternalPinsCount = (.count + .externalPinsCount) # man, I *really* do not love GitHub Actions expressions...
+ ')"
+ jq . <<<"$images"
+ set +x
+ echo "::$(echo -n ${{ github.token }} | sha256sum | head -c 64)::"
+ echo "images=$images" >> "$GITHUB_OUTPUT"
+ outputs:
+ images: '${{ steps.gather.outputs.images }}'
+
+ apply-labels:
+ name: Apply Labels
+ runs-on: ubuntu-latest
+ needs: gather
+ if: fromJSON(needs.gather.outputs.images).imagesAndExternalPinsCount > 0
+ steps:
- name: Apply Labels
- uses: actions/github-script@v3
+ uses: actions/github-script@v6
+ env:
+ IMAGES: ${{ needs.gather.outputs.images }}
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
- const data = ${{ steps.labels.outputs.labels }};
- github.issues.addLabels({
+ const data = JSON.parse(process.env.IMAGES);
+ var labels = [
+ ...data.images, // "library/debian", ...
+ ...new Set(data.externalPinTags.map(x => 'external/' + x.replace(/:.+$/, ''))), // "external/mcr.microsoft.com/windows/servercore", ...
+ ];
+ if (data.new.length > 0) {
+ labels.push('new-image');
+ }
+ console.log(labels);
+ await github.rest.issues.addLabels({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.payload.pull_request.number,
- labels: data.labels,
+ labels: labels,
});
- if: fromJSON(steps.labels.outputs.labels).count > 0
diff:
name: Diff Comment
runs-on: ubuntu-latest
+ needs: gather
+ if: fromJSON(needs.gather.outputs.images).imagesAndExternalPinsCount > 0
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
with:
# again, this would ideally be "github.event.pull_request.merge_commit_sha" but we might not have that yet when this runs, so we compromise by checkout out the latest code from the target branch (so we get the latest "diff-pr.sh" script to run)
ref: ${{ github.event.pull_request.base.ref }}
fetch-depth: 0
+ - uses: ./.github/workflows/.bashbrew
+ with:
+ build: 'docker'
- name: Prepare Environment
run: |
- # this mimics "test-pr.sh", but without running repo-local scripts (to avoid CVE-2020-15228 via the scripts being updated to write nasty things to $GITHUB_ENV)
- bashbrewVersion="$(< bashbrew-version)"
- docker build --pull --tag oisupport/bashbrew:base "https://github.com/docker-library/bashbrew.git#v$bashbrewVersion"
+ # this avoids running repo-local scripts (to avoid CVE-2020-15228 via the scripts being updated to write nasty things to $GITHUB_ENV)
docker build --tag oisupport/bashbrew:diff-pr .
- - id: diff
- name: Generate Diff
+ - name: Gather Maintainers
+ env:
+ IMAGES: ${{ needs.gather.outputs.images }}
+ run: |
+ files="$(jq <<<"$IMAGES" -r '.images | map(@sh) | join(" ")')"
+ eval "set -- $files"
+ for f; do
+ if [ -s "$f" ]; then
+ docker run --rm --read-only --tmpfs /tmp oisupport/bashbrew:diff-pr \
+ bashbrew cat --format ' - `{{ $.RepoName }}`:{{ range .Manifest.Global.Maintainers }} @{{ .Handle }}{{ end }}' "$f"
+ fi
+ done | tee "$GITHUB_WORKSPACE/oi-pr.maint"
+ - name: Generate Diff
env:
GITHUB_PR_NUMBER: ${{ github.event.pull_request.number }}
run: |
docker run --rm --read-only --tmpfs /tmp oisupport/bashbrew:diff-pr ./diff-pr.sh "$GITHUB_PR_NUMBER" | tee "$GITHUB_WORKSPACE/oi-pr.diff"
- set +x
- length="$(jq -Rcs 'length' "$GITHUB_WORKSPACE/oi-pr.diff")"
- echo "::set-output name=length::$length"
- name: Comment
- uses: actions/github-script@v3
+ uses: actions/github-script@v6
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
- const { data: comments } = await github.issues.listComments({
- owner: context.repo.owner,
- repo: context.repo.repo,
- issue_number: context.payload.pull_request.number,
- });
const commentText = 'Diff for ' + context.payload.pull_request.head.sha + ':';
+
+ const fs = require('fs');
+ const diff = fs.readFileSync(process.env.GITHUB_WORKSPACE + '/oi-pr.diff').toString().trimEnd();
+ var body = "\n" + commentText + "
\n\n```diff\n" + diff + "\n```\n\n ";
+ const maint = fs.readFileSync(process.env.GITHUB_WORKSPACE + '/oi-pr.maint').toString().trimEnd();
+ if (maint.length > 0) {
+ body += "\n\nRelevant Maintainers:\n\n" + maint;
+ }
+ fs.writeFileSync(process.env.GITHUB_STEP_SUMMARY, body);
+
+ // https://docs.github.com/en/graphql/reference/mutations#minimizecomment
+ const minimizeql = `
+ mutation($comment: ID!) {
+ minimizeComment(input: { classifier: OUTDATED, clientMutationId: "doi-munge-pr", subjectId: $comment }) {
+ clientMutationId
+ minimizedComment {
+ isMinimized
+ minimizedReason
+ }
+ }
+ }
+ `;
+ // https://docs.github.com/en/graphql/reference/mutations#unminimizecomment
+ const unminimizeql = `
+ mutation($comment: ID!) {
+ unminimizeComment(input: { clientMutationId: "doi-munge-pr", subjectId: $comment }) {
+ clientMutationId
+ unminimizedComment {
+ isMinimized
+ minimizedReason
+ }
+ }
+ }
+ `;
+
needNewComment = true;
- for (let j = 0; j < comments.length; ++j) {
- const comment = comments[j];
- if (comment.user.login === 'github-actions[bot]') {
- if (comment.body.includes(commentText)) {
- needNewComment = false;
- } else {
- await github.issues.deleteComment({
- owner: context.repo.owner,
- repo: context.repo.repo,
- comment_id: comment.id,
- });
+ console.log('Reviewing existing comments...');
+ for await (const { data: comments } of github.paginate.iterator(
+ github.rest.issues.listComments,
+ {
+ owner: context.repo.owner,
+ repo: context.repo.repo,
+ issue_number: context.payload.pull_request.number,
+ }
+ )) {
+ for (const comment of comments) {
+ if (comment.user.login === 'github-actions[bot]') {
+ if (needNewComment && comment.body.includes(commentText)) {
+ needNewComment = false;
+ console.log('Unhiding comment: ' + comment.id + ' (' + comment.node_id + ')');
+ const result = await github.graphql(unminimizeql, { comment: comment.node_id });
+ console.log('- result: ' + JSON.stringify(result));
+ } else {
+ console.log('Hiding comment: ' + comment.id + ' (' + comment.node_id + ')');
+ const result = await github.graphql(minimizeql, { comment: comment.node_id });
+ console.log('- result: ' + JSON.stringify(result));
+ }
}
}
}
if (needNewComment) {
- const fs = require('fs');
- const diff = fs.readFileSync(process.env.GITHUB_WORKSPACE + '/oi-pr.diff');
- const body = "\n" + commentText + "
\n\n```diff\n" + diff + "\n```\n\n ";
- await github.issues.createComment({
+ console.log('Creating new comment...');
+ await github.rest.issues.createComment({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.payload.pull_request.number,
body: body,
});
}
- if: fromJSON(steps.diff.outputs.length) > 0
diff --git a/.github/workflows/naughty.sh b/.github/workflows/naughty.sh
index f2e6b96a9e..c3e7290bab 100755
--- a/.github/workflows/naughty.sh
+++ b/.github/workflows/naughty.sh
@@ -3,7 +3,7 @@ set -Eeuo pipefail
if [ "$#" -eq 0 ]; then
git fetch --quiet https://github.com/docker-library/official-images.git master
- changes="$(git diff --numstat FETCH_HEAD...HEAD -- library/ | cut -d$'\t' -f3-)"
+ changes="$(git diff --no-renames --name-only --diff-filter='d' FETCH_HEAD...HEAD -- library/)"
repos="$(xargs -rn1 basename <<<"$changes")"
set -- $repos
fi
@@ -17,6 +17,8 @@ export BASHBREW_LIBRARY="$PWD/library"
bashbrew from --uniq "$@" > /dev/null
+numNaughty=0
+
if badTags="$(bashbrew list "$@" | grep -E ':.+latest.*|:.*latest.+')" && [ -n "$badTags" ]; then
echo >&2
echo >&2 "Incorrectly formatted 'latest' tags detected:"
@@ -24,7 +26,7 @@ if badTags="$(bashbrew list "$@" | grep -E ':.+latest.*|:.*latest.+')" && [ -n "
echo >&2
echo >&2 'Read https://github.com/docker-library/official-images#tags-and-aliases for more details.'
echo >&2
- exit 1
+ (( ++numNaughty ))
fi
naughtyFrom="$(./naughty-from.sh "$@")"
@@ -36,7 +38,7 @@ if [ -n "$naughtyFrom" ]; then
echo >&2
echo >&2 'Read https://github.com/docker-library/official-images#multiple-architectures for more details.'
echo >&2
- exit 1
+ (( ++numNaughty ))
fi
naughtyConstraints="$(./naughty-constraints.sh "$@")"
@@ -46,7 +48,7 @@ if [ -n "$naughtyConstraints" ]; then
echo >&2
echo >&2 "$naughtyConstraints"
echo >&2
- exit 1
+ (( ++numNaughty ))
fi
naughtyCommits="$(./naughty-commits.sh "$@")"
@@ -56,5 +58,7 @@ if [ -n "$naughtyCommits" ]; then
echo >&2
echo >&2 "$naughtyCommits"
echo >&2
- exit 1
+ (( ++numNaughty ))
fi
+
+exit "$numNaughty"
diff --git a/.github/workflows/test-pr.yml b/.github/workflows/test-pr.yml
index ac330f0fac..dbba8b9dd5 100644
--- a/.github/workflows/test-pr.yml
+++ b/.github/workflows/test-pr.yml
@@ -10,6 +10,14 @@ defaults:
env:
# https://github.com/docker-library/bashbrew/issues/10
GIT_LFS_SKIP_SMUDGE: 1
+
+# cancel existing runs if user makes another push
+concurrency:
+ group: ${{ github.ref }}
+ cancel-in-progress: ${{ github.event_name == 'pull_request' }}
+
+permissions:
+ contents: read
jobs:
@@ -17,37 +25,37 @@ jobs:
name: Naughty
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
with:
fetch-depth: 0
+ - uses: ./.github/workflows/.bashbrew
- name: Check for Common Issues
- run: |
- git clone --depth 1 https://github.com/docker-library/bashbrew.git -b master ~/bashbrew
- ~/bashbrew/bashbrew.sh --version > /dev/null
- export PATH="$HOME/bashbrew/bin:$PATH"
- bashbrew --version
- .github/workflows/naughty.sh
+ run: .github/workflows/naughty.sh
generate-jobs:
name: Generate Jobs
runs-on: ubuntu-latest
outputs:
strategy: ${{ steps.generate-jobs.outputs.strategy }}
+ length: ${{ steps.generate-jobs.outputs.length }}
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
with:
fetch-depth: 0
+ - uses: ./.github/workflows/.bashbrew
- id: generate-jobs
name: Generate Jobs
run: |
- git clone --depth 1 https://github.com/docker-library/bashbrew.git -b master ~/bashbrew
- strategy="$(.github/workflows/generate.sh ~/bashbrew)"
+ strategy="$(.github/workflows/generate.sh)"
+ echo "strategy=$strategy" >> "$GITHUB_OUTPUT"
jq . <<<"$strategy" # sanity check / debugging aid
- echo "::set-output name=strategy::$strategy"
+ length="$(jq <<<"$strategy" -r '.matrix.include | length')"
+ echo "length=$length" >> "$GITHUB_OUTPUT"
test:
needs: generate-jobs
- strategy: ${{ fromJson(needs.generate-jobs.outputs.strategy) }}
+ strategy: ${{ fromJSON(needs.generate-jobs.outputs.strategy) }}
+ if: needs.generate-jobs.outputs.length > 0
name: ${{ matrix.name }}
runs-on: ${{ matrix.os }}
steps:
@@ -59,7 +67,8 @@ jobs:
echo 'MSYS=winsymlinks:nativestrict' >> "$GITHUB_ENV"
# https://github.com/docker-library/bashbrew/blob/a40a54d4d81b9fd2e39b4d7ba3fe203e8b022a67/scripts/github-actions/generate.sh#L146-L149
if: runner.os == 'Windows'
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
+ - uses: ./.github/workflows/.bashbrew
- name: Prepare Environment
run: ${{ matrix.runs.prepare }}
- name: Pull Dependencies
diff --git a/Dockerfile b/Dockerfile
index dfc2afd5e6..d6d21662e0 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,4 +1,4 @@
-# FYI, this base image is built via test-pr.sh (from https://github.com/docker-library/bashbrew/tree/master/Dockerfile)
+# FYI, this base image is built via ".github/workflows/.bashbrew/action.yml" (from https://github.com/docker-library/bashbrew/tree/master/Dockerfile)
FROM oisupport/bashbrew:base
RUN set -eux; \
@@ -13,11 +13,18 @@ RUN set -eux; \
gawk \
# tar -tf in diff-pr.sh
bzip2 \
+# jq for diff-pr.sh
+ jq \
; \
rm -rf /var/lib/apt/lists/*
ENV DIR /usr/src/official-images
ENV BASHBREW_LIBRARY $DIR/library
+# crane for diff-pr.sh
+# https://gcr.io/go-containerregistry/crane:latest
+# https://explore.ggcr.dev/?image=gcr.io/go-containerregistry/crane:latest
+COPY --from=gcr.io/go-containerregistry/crane@sha256:d0e5cc313e7388a573bb4cfb980a935bb740c5787df7d90f7066b8e8146455ed /ko-app/crane /usr/local/bin/
+
WORKDIR $DIR
COPY . $DIR
diff --git a/MAINTAINERS b/MAINTAINERS
index 4ad488e5f2..ca5f5116be 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -3,7 +3,7 @@
Tianon Gravi (@tianon)
Joseph Ferguson (@yosifkit)
-# Emeritus: Talon Bowler (@moghedrin)
+# Emeritus: Talon Bowler (@daghack)
# Emeritus: Peter Salvatore (@psftw)
# To find the maintainers for a given image, see "library/IMAGENAME" in this repository, or see the "Maintained by:" section of the "Quick Reference" of the image description on Docker Hub (or in the "docs" repo at https://github.com/docker-library/docs).
diff --git a/NEW-IMAGE-CHECKLIST.md b/NEW-IMAGE-CHECKLIST.md
index 7901351510..d35bb56e34 100644
--- a/NEW-IMAGE-CHECKLIST.md
+++ b/NEW-IMAGE-CHECKLIST.md
@@ -3,6 +3,7 @@
**NOTE:** This checklist is intended for the use of the Official Images maintainers both to track the status of your PR and to help inform you and others of where we're at. As such, please leave the "checking" of items to the repository maintainers. If there is a point below for which you would like to provide additional information or note completion, please do so by commenting on the PR. Thanks! (and thanks for staying patient with us :heart:)
- [ ] associated with or contacted upstream?
+- [ ] available under [an OSI-approved license](https://opensource.org/licenses)?
- [ ] does it fit into one of the common categories? ("service", "language stack", "base distribution")
- [ ] is it reasonably popular, or does it solve a particular use case well?
- [ ] does a [documentation](https://github.com/docker-library/docs/blob/master/README.md) PR exist? (should be reviewed and merged at roughly the same time so that we don't have an empty image page on the Hub for very long)
diff --git a/README.md b/README.md
index 5a464d30ad..44181cdbf5 100644
--- a/README.md
+++ b/README.md
@@ -71,6 +71,7 @@ Some images have been ported for other architectures, and many of these are offi
- IBM POWER8 (`ppc64le`): https://hub.docker.com/u/ppc64le/
- IBM z Systems (`s390x`): https://hub.docker.com/u/s390x/
- MIPS64 LE (`mips64le`): https://hub.docker.com/u/mips64le/
+ - RISC-V 64-bit (`riscv64`): https://hub.docker.com/u/riscv64/
- x86/i686 (`i386`): https://hub.docker.com/u/i386/
As of 2017-09-12, these other architectures are included under the non-prefixed images via ["manifest lists"](https://docs.docker.com/registry/spec/manifest-v2-2/#manifest-list) (also known as ["indexes" in the OCI image specification](https://github.com/opencontainers/image-spec/blob/v1.0.0/image-index.md)), such that, for example, `docker run hello-world` should run as-is on all supported platforms.
@@ -118,11 +119,7 @@ When taking over an existing repository, please ensure that the entire Git histo
Rebuilding the same `Dockerfile` should result in the same version of the image being packaged, even if the second build happens several versions later, or the build should fail outright, such that an inadvertent rebuild of a `Dockerfile` tagged as `0.1.0` doesn't end up containing `0.2.3`. For example, if using `apt` to install the main program for the image, be sure to pin it to a specific version (ex: `... apt-get install -y my-package=0.1.0 ...`). For dependent packages installed by `apt` there is not usually a need to pin them to a version.
-No official images can be derived from, or depend on, non-official images with the following notable exceptions:
-
-- [`FROM scratch`](https://hub.docker.com/_/scratch/)
-- [`FROM mcr.microsoft.com/windows/servercore`](https://hub.docker.com/r/microsoft/windowsservercore/)
-- [`FROM mcr.microsoft.com/windows/nanoserver`](https://hub.docker.com/r/microsoft/nanoserver/)
+No official images can be derived from, or depend on, non-official images (allowing the non-image [`scratch`](https://hub.docker.com/_/scratch/) and the intentionally limited exceptions pinned in [`.external-pins`](.external-pins) -- see also [`.external-pins/list.sh`](.external-pins/list.sh)).
#### Consistency
@@ -200,7 +197,7 @@ RUN set -eux; \
wget -O /usr/local/bin/tini "https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini"; \
wget -O /usr/local/bin/tini.asc "https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini.asc"; \
export GNUPGHOME="$(mktemp -d)"; \
- gpg --batch --keyserver ha.pool.sks-keyservers.net --recv-keys "$TINI_SIGN_KEY"; \
+ gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$TINI_SIGN_KEY"; \
gpg --batch --verify /usr/local/bin/tini.asc /usr/local/bin/tini; \
command -v gpgconf && gpgconf --kill all || :; \
rm -r "$GNUPGHOME" /usr/local/bin/tini.asc; \
@@ -228,7 +225,7 @@ The `Dockerfile` should be written to help mitigate interception attacks during
The purpose in recommending the use of https for downloading needed artifacts is that it ensures that the download is from a trusted source which also happens to make interception much more difficult.
-The purpose in recommending PGP signature verification is to ensure that only an authorized user published the given artifact. When importing PGP keys, please use the [high-availability server pool](https://sks-keyservers.net/overview-of-pools.php#pool_ha) from sks-keyservers (`ha.pool.sks-keyservers.net`). While there are often transient failures with servers in this pool, the build servers have a proxy that greatly improves reliability (see the FAQ section on [keys and verification](https://github.com/docker-library/faq/#openpgp--gnupg-keys-and-verification)).
+The purpose in recommending PGP signature verification is to ensure that only an authorized user published the given artifact. When importing PGP keys, please use the [the `keys.openpgp.org` service](https://keys.openpgp.org/about) when possible (preferring `keyserver.ubuntu.com` otherwise). See also the FAQ section on [keys and verification](https://github.com/docker-library/faq/#openpgp--gnupg-keys-and-verification).
The purpose in recommending checksum verification is to verify that the artifact is as expected. This ensures that when remote content changes, the Dockerfile also will change and provide a natural `docker build` cache bust. As a bonus, this also prevents accidentally downloading newer-than-expected artifacts on poorly versioned files.
@@ -243,7 +240,7 @@ Below are some examples:
curl -fL "https://www.python.org/ftp/python/$PYTHON_VERSION/Python-$PYTHON_VERSION.tar.xz.asc" -o python.tar.xz.asc; \
export GNUPGHOME="$(mktemp -d)"; \
# gpg: key F73C700D: public key "Larry Hastings " imported
- gpg --batch --keyserver ha.pool.sks-keyservers.net --recv-keys 97FC712E4C024BBEA48A61ED3A5CA953F73C700D; \
+ gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 97FC712E4C024BBEA48A61ED3A5CA953F73C700D; \
gpg --batch --verify python.tar.xz.asc python.tar.xz; \
rm -r "$GNUPGHOME" python.tar.xz.asc; \
echo "$PYTHON_DOWNLOAD_SHA512 *python.tar.xz" | sha512sum --strict --check; \
@@ -256,7 +253,7 @@ Below are some examples:
RUN set -eux; \
key='A4A9406876FCBD3C456770C88C718D3B5072E1F5'; \
export GNUPGHOME="$(mktemp -d)"; \
- gpg --batch --keyserver ha.pool.sks-keyservers.net --recv-keys "$key"; \
+ gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key"; \
gpg --batch --armor --export "$key" > /etc/apt/trusted.gpg.d/mysql.gpg.asc; \
gpgconf --kill all; \
rm -rf "$GNUPGHOME"; \
@@ -278,7 +275,7 @@ Below are some examples:
ENV RUBY_DOWNLOAD_SHA256 (sha256-value-here)
RUN set -eux; \
curl -fL -o ruby.tar.gz "https://cache.ruby-lang.org/pub/ruby/$RUBY_MAJOR/ruby-$RUBY_VERSION.tar.gz"; \
- echo "$RUBY_DOWNLOAD_SHA256 *ruby.tar.gz" | sha256sum -c --strict --check; \
+ echo "$RUBY_DOWNLOAD_SHA256 *ruby.tar.gz" | sha256sum --strict --check; \
# install
```
@@ -304,14 +301,14 @@ Official Repositories that require additional privileges should specify the mini
For image updates which constitute a security fix, there are a few things we recommend to help ensure your update is merged, built, and released as quickly as possible:
-1. [Contact us](MAINTAINERS) a few days in advance to give us a heads up and a timing estimate (so we can schedule time for the incoming update appropriately).
+1. [Send an email to `doi@docker.com`](mailto:doi@docker.com) a few (business) days in advance to give us a heads up and a timing estimate (so we can schedule time for the incoming update appropriately).
2. Include `[security]` in the title of your pull request (for example, `[security] Update FooBar to 1.2.5, 1.3.7, 2.0.1`).
3. Keep the pull request free of changes that are unrelated to the security fix -- we'll still be doing review of the update, but it will be expedited so this will help us help you.
4. Be active and responsive to comments on the pull request after it's opened (as usual, but even more so if the timing of the release is of importance).
#### Multiple Architectures
-Each repo can specify multiple architectures for any and all tags. If no architecture is specified, images are built in Linux on `amd64` (aka x86-64). To specify more or different architectures, use the `Architectures` field (comma-delimited list, whitespace is trimmed). Valid architectures are found in [Bashbrew's `oci-platform.go` file](https://github.com/docker-library/bashbrew/blob/v0.1.0/vendor/github.com/docker-library/go-dockerlibrary/architecture/oci-platform.go#L14-L26):
+Each repo can specify multiple architectures for any and all tags. If no architecture is specified, images are built in Linux on `amd64` (aka x86-64). To specify more or different architectures, use the `Architectures` field (comma-delimited list, whitespace is trimmed). Valid architectures are found in [Bashbrew's `oci-platform.go` file](https://github.com/docker-library/bashbrew/blob/v0.1.2/architecture/oci-platform.go#L14-L27):
- `amd64`
- `arm32v6`
@@ -320,14 +317,17 @@ Each repo can specify multiple architectures for any and all tags. If no archite
- `i386`
- `mips64le`
- `ppc64le`
+- `riscv64`
- `s390x`
- `windows-amd64`
The `Architectures` of any given tag must be a strict subset of the `Architectures` of the tag it is `FROM`.
-We strongly recommend that most images create a single `Dockerfile` per entry in the library file that can be used for multiple architectures. This means that each supported architecture will have the same `FROM` line (e.g. `FROM debian:jessie`). See [`golang`](https://github.com/docker-library/official-images/blob/master/library/golang), [`docker`](https://github.com/docker-library/official-images/blob/master/library/docker), [`haproxy`](https://github.com/docker-library/official-images/blob/master/library/haproxy), and [`php`](https://github.com/docker-library/official-images/blob/master/library/php) for examples of library files using one `Dockerfile` per entry and see their respective git repos for example `Dockerfile`s.
+Images must have a single `Dockerfile` per entry in the library file that can be used for multiple architectures. This means that each supported architecture will have the same `FROM` line (e.g. `FROM debian:buster`). See [`golang`](https://github.com/docker-library/official-images/blob/master/library/golang), [`docker`](https://github.com/docker-library/official-images/blob/master/library/docker), [`haproxy`](https://github.com/docker-library/official-images/blob/master/library/haproxy), and [`php`](https://github.com/docker-library/official-images/blob/master/library/php) for examples of library files using one `Dockerfile` per entry and see their respective git repos for example `Dockerfile`s.
-For images that are `FROM scratch` like `debian` it will be necessary to have a different `Dockerfile` and build context in order to `ADD` architecture specific binaries. Since these images use the same `Tags`, they need to be in the same entry. Use the architecture specific fields for `GitRepo`, `GitFetch`, `GitCommit`, and `Directory`, which are the architecture concatenated with hyphen (`-`) and the field (e.g. `arm32v7-GitCommit`). Any architecture that does not have an architecture-specific field will use the default field (e.g. no `arm32v7-Directory` means `Directory` will be used for `arm32v7`). See the [`debian`](https://github.com/docker-library/official-images/blob/master/library/debian) or [`ubuntu`](https://github.com/docker-library/official-images/blob/master/library/ubuntu) files in the library for examples. The following is an example for [`hello-world`](https://github.com/docker-library/official-images/blob/master/library/hello-world):
+If different parts of the Dockerfile only happen in one architecture or another, use control flow (e.g.`if`/`case`) along with `dpkg --print-architecture` or `apk -print-arch` to detect the userspace architecture. Only use `uname` for architecture detection when more accurate tools cannot be installed. See [golang](https://github.com/docker-library/golang/blob/b879b60a7d94128c8fb5aea763cf31772495511d/1.16/buster/Dockerfile#L24-L68) for an example where some architectures require building binaries from the upstream source packages and some merely download the binary release.
+
+For base images like `debian` it will be necessary to have a different `Dockerfile` and build context in order to `ADD` architecture specific binaries and this is a valid exception to the above. Since these images use the same `Tags`, they need to be in the same entry. Use the architecture specific fields for `GitRepo`, `GitFetch`, `GitCommit`, and `Directory`, which are the architecture concatenated with hyphen (`-`) and the field (e.g. `arm32v7-GitCommit`). Any architecture that does not have an architecture-specific field will use the default field (e.g. no `arm32v7-Directory` means `Directory` will be used for `arm32v7`). See the [`debian`](https://github.com/docker-library/official-images/blob/master/library/debian) or [`ubuntu`](https://github.com/docker-library/official-images/blob/master/library/ubuntu) files in the library for examples. The following is an example for [`hello-world`](https://github.com/docker-library/official-images/blob/master/library/hello-world):
```
Maintainers: Tianon Gravi (@tianon),
@@ -368,7 +368,7 @@ Proposing a new official image should not be undertaken lightly. We expect and r
## Library definition files
-The library definition files are plain text files found in the [`library/` directory of the `official-images` repository](https://github.com/docker-library/official-images/tree/master/library). Each library file controls the current "supported" set of image tags that appear on the Docker Hub description. Tags that are removed from a library file do not get removed from the Docker Hub, so that old versions can continue to be available for use, but are not maintained by upstream or the maintainer of the official image. Tags in the library file are only built through an update to that library file or as a result of its base image being updated (ie, an image `FROM debian:jessie` would be rebuilt when `debian:jessie` is built). Only what is in the library file will be rebuilt when a base has updates.
+The library definition files are plain text files found in the [`library/` directory of the `official-images` repository](https://github.com/docker-library/official-images/tree/master/library). Each library file controls the current "supported" set of image tags that appear on the Docker Hub description. Tags that are removed from a library file do not get removed from the Docker Hub, so that old versions can continue to be available for use, but are not maintained by upstream or the maintainer of the official image. Tags in the library file are only built through an update to that library file or as a result of its base image being updated (ie, an image `FROM debian:buster` would be rebuilt when `debian:buster` is built). Only what is in the library file will be rebuilt when a base has updates.
Given this policy, it is worth clarifying a few cases: backfilled versions, release candidates, and continuous integration builds. When a new repository is proposed, it is common to include some older unsupported versions in the initial pull request with the agreement to remove them right after acceptance. Don't confuse this with a comprehensive historical archive which is not the intention. Another common case where the term "supported" is stretched a bit is with release candidates. A release candidate is really just a naming convention for what are expected to be shorter-lived releases, so they are totally acceptable and encouraged. Unlike a release candidate, continuous integration builds which have a fully automated release cycle based on code commits or a regular schedule are not appropriate.
@@ -410,12 +410,13 @@ The first entry is the "global" metadata for the image. The only required field
GitFetch: refs/heads/2.0-pre-release
GitCommit: beefdeadbeefdeadbeefdeadbeefdeadbeefdead
Directory: 2
+ File: Dockerfile-to-use
Bashbrew will fetch code out of the Git repository (`GitRepo`) at the commit specified (`GitCommit`). If the commit referenced is not available by fetching `master` of the associated `GitRepo`, it becomes necessary to supply a value for `GitFetch` in order to tell Bashbrew what ref to fetch in order to get the commit necessary.
The built image will be tagged as `:` (ie, `library/golang` with a `Tags` value of `1.6, 1, latest` will create tags of `golang:1.6`, `golang:1`, and `golang:latest`).
-Optionally, if `Directory` is present, Bashbrew will look for the `Dockerfile` inside the specified subdirectory instead of at the root (and `Directory` will be used as the ["context" for the build](https://docs.docker.com/reference/builder/) instead of the top-level of the repository).
+Optionally, if `Directory` is present, Bashbrew will look for the `Dockerfile` inside the specified subdirectory instead of at the root (and `Directory` will be used as the ["context" for the build](https://docs.docker.com/reference/builder/) instead of the top-level of the repository). If `File` is present, the specified filename instead of `Dockerfile` will be used.
See the [multi-arch section](#multiple-architectures) for details on how to specify a different `GitRepo`, `GitFetch`, `GitCommit`, or `Directory` for a specific architecture.
diff --git a/SECURITY.md b/SECURITY.md
new file mode 100644
index 0000000000..64a60472aa
--- /dev/null
+++ b/SECURITY.md
@@ -0,0 +1,11 @@
+# Security Policy
+
+If you have run a CVE/security scanner on an image and that is why you are here, you should read [our "Why does my security scanner show that an image has CVEs?" FAQ entry](https://github.com/docker-library/faq#why-does-my-security-scanner-show-that-an-image-has-cves).
+
+If you believe you have found a net new security vulnerability, please make every effort to report it to the appropriate maintainers responsibly so that it can be fixed discreetly (also known as "embargo").
+
+When the issue relates to a specific image, please make an effort to (privately) contact the maintainers of that specific image. Some maintainers publish/maintain a `SECRUITY.md` in their GitHub repository, for example, which can be a great place to find information about how to report an issue appropriately.
+
+For issues related to anything maintained under [@docker-library on GitHub](https://github.com/docker-library) or associated infrastructure, please [send an email to `doi@docker.com`](mailto:doi@docker.com) or [use GitHub's security advisory feature](https://github.com/docker-library/official-images/security/advisories/new).
+
+Image maintainers should also be aware of the ["Security Releases" section of the maintainer documentation](https://github.com/docker-library/official-images#security-releases) for pre-notifying the project maintainers of upcoming security-related releases.
diff --git a/_bashbrew-cat-sorted.sh b/_bashbrew-cat-sorted.sh
index 2730b5ef24..5361a1df89 100755
--- a/_bashbrew-cat-sorted.sh
+++ b/_bashbrew-cat-sorted.sh
@@ -5,8 +5,7 @@ set -Eeuo pipefail
images="$(
bashbrew list --repos --uniq "$@" \
- | sort -uV \
- | xargs -r bashbrew list --repos --uniq --build-order
+ | sort -uV
)"
set -- $images
@@ -34,7 +33,6 @@ for img; do
bashbrew list --uniq "$img" \
| sort -V \
- | xargs -r bashbrew list --uniq --build-order \
| xargs -r bashbrew cat --format '
{{- range $e := .TagEntries -}}
{{- printf "\n%s\n" ($e.ClearDefaults $.Manifest.Global) -}}
diff --git a/bashbrew-version b/bashbrew-version
deleted file mode 100644
index 17e51c385e..0000000000
--- a/bashbrew-version
+++ /dev/null
@@ -1 +0,0 @@
-0.1.1
diff --git a/diff-pr.sh b/diff-pr.sh
index fe9a285207..c03e5c5352 100755
--- a/diff-pr.sh
+++ b/diff-pr.sh
@@ -79,14 +79,18 @@ else
"$diffDir" HEAD:refs/heads/pull
fi
+externalPins=
if [ "$#" -eq 0 ]; then
- images="$(git -C oi/library diff --name-only HEAD...pull -- .)"
- [ -n "$images" ] || exit 0
- images="$(xargs -n1 basename <<<"$images")"
+ externalPins="$(git -C oi/.external-pins diff --no-renames --name-only HEAD...pull -- '*/**')"
+
+ images="$(git -C oi/library diff --no-renames --name-only HEAD...pull -- .)"
+ if [ -z "$images" ] && [ -z "$externalPins" ]; then
+ exit 0
+ fi
+ images="$(xargs -rn1 basename <<<"$images")"
set -- $images
fi
-export BASHBREW_CACHE="${BASHBREW_CACHE:-${XDG_CACHE_HOME:-$HOME/.cache}/bashbrew}"
export BASHBREW_LIBRARY="$PWD/oi/library"
: "${BASHBREW_ARCH:=amd64}" # TODO something smarter with arches
@@ -98,9 +102,8 @@ template='
{{- "\n" -}}
{{- range $.Entries -}}
{{- $arch := .HasArchitecture arch | ternary arch (.Architectures | first) -}}
- {{- $froms := $.ArchDockerFroms $arch . -}}
{{- $outDir := join "_" $.RepoName (.Tags | last) -}}
- git -C "$BASHBREW_CACHE/git" archive --format=tar
+ git -C "{{ gitCache }}" archive --format=tar
{{- " " -}}
{{- "--prefix=" -}}
{{- $outDir -}}
@@ -111,12 +114,28 @@ template='
{{- $dir := .ArchDirectory $arch -}}
{{- (eq $dir ".") | ternary "" $dir -}}
{{- "\n" -}}
- mkdir -p "$tempDir/{{- $outDir -}}" && echo "{{- .ArchFile $arch -}}" > "$tempDir/{{- $outDir -}}/.bashbrew-dockerfile-name"
+ mkdir -p "$tempDir/{{- $outDir -}}" && echo "{{- .ArchBuilder $arch -}}" > "$tempDir/{{- $outDir -}}/.bashbrew-builder" && echo "{{- .ArchFile $arch -}}" > "$tempDir/{{- $outDir -}}/.bashbrew-file"
{{- "\n" -}}
{{- end -}}
tar -cC "$tempDir" . && rm -rf "$tempDir"
'
+_tar-t() {
+ tar -t "$@" \
+ | grep -vE "$uninterestingTarballGrep" \
+ | sed -e 's!^[.]/!!' \
+ -r \
+ -e 's!([/.-]|^)((lib)?(c?python|py)-?)[0-9]+([.][0-9]+)?([/.-]|$)!\1\2XXX\6!g' \
+ | sort
+}
+
+_jq() {
+ if [ "$#" -eq 0 ]; then
+ set -- '.'
+ fi
+ jq --tab -S "$@"
+}
+
copy-tar() {
local src="$1"; shift
local dst="$1"; shift
@@ -127,19 +146,73 @@ copy-tar() {
return
fi
- local d dockerfiles=()
- for d in "$src"/*/.bashbrew-dockerfile-name; do
+ local d indexes=() dockerfiles=()
+ for d in "$src"/*/.bashbrew-file; do
[ -f "$d" ] || continue
local bf; bf="$(< "$d")"
local dDir; dDir="$(dirname "$d")"
- dockerfiles+=( "$dDir/$bf" )
- if [ "$bf" = 'Dockerfile' ]; then
- # if "Dockerfile.builder" exists, let's check that too (busybox, hello-world)
- if [ -f "$dDir/$bf.builder" ]; then
- dockerfiles+=( "$dDir/$bf.builder" )
+ local builder; builder="$(< "$dDir/.bashbrew-builder")"
+ if [ "$builder" = 'oci-import' ]; then
+ indexes+=( "$dDir/$bf" )
+ else
+ dockerfiles+=( "$dDir/$bf" )
+ if [ "$bf" = 'Dockerfile' ]; then
+ # if "Dockerfile.builder" exists, let's check that too (busybox, hello-world)
+ if [ -f "$dDir/$bf.builder" ]; then
+ dockerfiles+=( "$dDir/$bf.builder" )
+ fi
fi
fi
- rm "$d" # remove the ".bashbrew-dockerfile-name" file we created
+ rm "$d" "$dDir/.bashbrew-builder" # remove the ".bashbrew-*" files we created
+ done
+
+ # now that we're done with our globbing needs, let's disable globbing so it doesn't give us wrong answers
+ local -
+ set -o noglob
+
+ for i in "${indexes[@]}"; do
+ local iName; iName="$(basename "$i")"
+ local iDir; iDir="$(dirname "$i")"
+ local iDirName; iDirName="$(basename "$iDir")"
+ local iDst="$dst/$iDirName"
+
+ mkdir -p "$iDst"
+
+ _jq . "$i" > "$iDst/$iName"
+
+ local digest
+ digest="$(jq -r --arg name "$iName" '
+ if $name == "index.json" then
+ .manifests[0].digest
+ else
+ .digest
+ end
+ ' "$i")"
+
+ local blob="blobs/${digest//://}"
+ local blobDir; blobDir="$(dirname "$blob")"
+ local manifest="$iDir/$blob"
+ mkdir -p "$iDst/$blobDir"
+ _jq . "$manifest" > "$iDst/$blob"
+
+ local configDigest; configDigest="$(jq -r '.config.digest' "$manifest")"
+ local blob="blobs/${configDigest//://}"
+ local blobDir; blobDir="$(dirname "$blob")"
+ local config="$iDir/$blob"
+ mkdir -p "$iDst/$blobDir"
+ _jq . "$config" > "$iDst/$blob"
+
+ local layers
+ layers="$(jq -r '[ .layers[].digest | @sh ] | join(" ")' "$manifest")"
+ eval "layers=( $layers )"
+ local layerDigest
+ for layerDigest in "${layers[@]}"; do
+ local blob="blobs/${layerDigest//://}"
+ local blobDir; blobDir="$(dirname "$blob")"
+ local layer="$iDir/$blob"
+ mkdir -p "$iDst/$blobDir"
+ _tar-t -f "$layer" > "$iDst/$blob 'tar -t'"
+ done
done
for d in "${dockerfiles[@]}"; do
@@ -233,11 +306,7 @@ copy-tar() {
case "$g" in
*.tar.* | *.tgz)
if [ -s "$dstG" ]; then
- tar -tf "$dstG" \
- | grep -vE "$uninterestingTarballGrep" \
- | sed -e 's!^[.]/!!' \
- | sort \
- > "$dstG 'tar -t'"
+ _tar-t -f "$dstG" > "$dstG 'tar -t'"
fi
;;
esac
@@ -247,6 +316,72 @@ copy-tar() {
done
}
+# a "bashbrew cat" template that gives us the last / "least specific" tags for the arguments
+# (in other words, this is "bashbrew list --uniq" but last instead of first)
+templateLastTags='
+ {{- range .TagEntries -}}
+ {{- $.RepoName -}}
+ {{- ":" -}}
+ {{- .Tags | last -}}
+ {{- "\n" -}}
+ {{- end -}}
+'
+
+_metadata-files() {
+ if [ "$#" -gt 0 ]; then
+ bashbrew list "$@" 2>>temp/_bashbrew.err | sort -uV > temp/_bashbrew-list || :
+
+ bashbrew cat --format '{{ range .Entries }}{{ range .Architectures }}{{ . }}{{ "\n" }}{{ end }}{{ end }}' "$@" 2>>temp/_bashbrew.err | sort -u > temp/_bashbrew-arches || :
+
+ "$diffDir/_bashbrew-cat-sorted.sh" "$@" 2>>temp/_bashbrew.err > temp/_bashbrew-cat || :
+
+ bashbrew list --uniq "$@" \
+ | sort -V \
+ | xargs -r bashbrew list --uniq --build-order 2>>temp/_bashbrew.err \
+ | xargs -r bashbrew cat --format "$templateLastTags" 2>>temp/_bashbrew.err \
+ > temp/_bashbrew-list-build-order || :
+
+ bashbrew fetch --arch-filter "$@"
+ script="$(bashbrew cat --format "$template" "$@")"
+ mkdir tar
+ ( eval "$script" | tar -xiC tar )
+ copy-tar tar temp
+ rm -rf tar
+ fi
+
+ if [ -n "$externalPins" ] && command -v crane &> /dev/null; then
+ local file
+ for file in $externalPins; do
+ [ -e "oi/$file" ] || continue
+ local pin digest dir
+ pin="$("$diffDir/.external-pins/tag.sh" "$file")"
+ digest="$(< "oi/$file")"
+ dir="temp/$file"
+ mkdir -p "$dir"
+ bashbrew remote arches --json "$pin@$digest" | _jq > "$dir/bashbrew.json"
+ local manifests manifest
+ manifests="$(jq -r '
+ [ (
+ .arches
+ | if has(env.BASHBREW_ARCH) then
+ .[env.BASHBREW_ARCH]
+ else
+ .[keys_unsorted | first]
+ end
+ )[].digest | @sh ]
+ | join(" ")
+ ' "$dir/bashbrew.json")"
+ eval "manifests=( $manifests )"
+ for manifest in "${manifests[@]}"; do
+ crane manifest "$pin@$manifest" | _jq > "$dir/manifest-${manifest//:/_}.json"
+ local config
+ config="$(jq -r '.config.digest' "$dir/manifest-${manifest//:/_}.json")"
+ crane blob "$pin@$config" | _jq > "$dir/manifest-${manifest//:/_}-config.json"
+ done
+ done
+ fi
+}
+
mkdir temp
git -C temp init --quiet
git -C temp config user.name 'Bogus'
@@ -255,15 +390,7 @@ git -C temp config user.email 'bogus@bogus'
# handle "new-image" PRs gracefully
for img; do touch "$BASHBREW_LIBRARY/$img"; [ -s "$BASHBREW_LIBRARY/$img" ] || echo 'Maintainers: New Image! :D (@docker-library-bot)' > "$BASHBREW_LIBRARY/$img"; done
-bashbrew list "$@" 2>>temp/_bashbrew.err | sort -uV > temp/_bashbrew-list || :
-"$diffDir/_bashbrew-cat-sorted.sh" "$@" 2>>temp/_bashbrew.err > temp/_bashbrew-cat || :
-for image; do
- script="$(bashbrew cat --format "$template" "$image")"
- mkdir tar
- ( eval "$script" | tar -xiC tar )
- copy-tar tar temp
- rm -rf tar
-done
+_metadata-files "$@"
git -C temp add . || :
git -C temp commit --quiet --allow-empty -m 'initial' || :
@@ -274,13 +401,8 @@ git -C oi checkout --quiet pull
for img; do touch "$BASHBREW_LIBRARY/$img"; [ -s "$BASHBREW_LIBRARY/$img" ] || echo 'Maintainers: Deleted Image D: (@docker-library-bot)' > "$BASHBREW_LIBRARY/$img"; done
git -C temp rm --quiet -rf . || :
-bashbrew list "$@" 2>>temp/_bashbrew.err | sort -uV > temp/_bashbrew-list || :
-"$diffDir/_bashbrew-cat-sorted.sh" "$@" 2>>temp/_bashbrew.err > temp/_bashbrew-cat || :
-script="$(bashbrew cat --format "$template" "$@")"
-mkdir tar
-( eval "$script" | tar -xiC tar )
-copy-tar tar temp
-rm -rf tar
+
+_metadata-files "$@"
git -C temp add .
git -C temp diff \
diff --git a/library/adminer b/library/adminer
index 2a88097c2e..e0eeed5fc6 100644
--- a/library/adminer
+++ b/library/adminer
@@ -1,14 +1,16 @@
-# this file is generated via https://github.com/TimWolla/docker-adminer/blob/a46dbffde41a1f48f61e5881033a21011f472de1/generate-stackbrew-library.sh
+# this file is generated via https://github.com/TimWolla/docker-adminer/blob/ae365d9edac3d884e383b78cb6adc0012a5448a6/generate-stackbrew-library.sh
Maintainers: Tim Düsterhus (@TimWolla)
GitRepo: https://github.com/TimWolla/docker-adminer.git
-Tags: 4.8.0-standalone, 4-standalone, standalone, 4.8.0, 4, latest
-Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 40a2516bf4f95dc76a839b8b76e4a5eae2378e67
+Tags: 4.8.1-standalone, 4-standalone, standalone, 4.8.1, 4, latest
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: c9c54b18f79a66409a3153a94f629ea68f08647c
+GitFetch: refs/heads/debian-packages
Directory: 4
-Tags: 4.8.0-fastcgi, 4-fastcgi, fastcgi
-Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 40a2516bf4f95dc76a839b8b76e4a5eae2378e67
+Tags: 4.8.1-fastcgi, 4-fastcgi, fastcgi
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: c9c54b18f79a66409a3153a94f629ea68f08647c
+GitFetch: refs/heads/debian-packages
Directory: 4/fastcgi
diff --git a/library/adoptopenjdk b/library/adoptopenjdk
deleted file mode 100644
index 6498ce5637..0000000000
--- a/library/adoptopenjdk
+++ /dev/null
@@ -1,387 +0,0 @@
-# AdoptOpenJDK official images for OpenJDK with HotSpot and OpenJDK with Eclipse OpenJ9.
-
-Maintainers: George Adams (@gdams_)
-GitRepo: https://github.com/AdoptOpenJDK/openjdk-docker.git
-
-#-----------------------------hotspot v8 images---------------------------------
-Tags: 8u292-b10-jdk-hotspot-focal, 8-jdk-hotspot-focal, 8-hotspot-focal
-SharedTags: 8u292-b10-jdk-hotspot, 8-jdk-hotspot, 8-hotspot, 8-jdk, 8
-Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: c945a5b588b63553a7bb36c28b6751716e35070c
-Directory: 8/jdk/ubuntu
-File: Dockerfile.hotspot.releases.full
-
-Tags: 8u292-b10-jdk-hotspot-windowsservercore-1809, 8-jdk-hotspot-windowsservercore-1809, 8-hotspot-windowsservercore-1809
-SharedTags: 8u292-b10-jdk-hotspot-windowsservercore, 8-jdk-hotspot-windowsservercore, 8-hotspot-windowsservercore, 8u292-b10-jdk-hotspot, 8-jdk-hotspot, 8-hotspot, 8-jdk, 8
-Architectures: windows-amd64
-GitCommit: c945a5b588b63553a7bb36c28b6751716e35070c
-Directory: 8/jdk/windows/windowsservercore-1809
-File: Dockerfile.hotspot.releases.full
-Constraints: windowsservercore-1809
-
-Tags: 8u292-b10-jdk-hotspot-windowsservercore-ltsc2016, 8-jdk-hotspot-windowsservercore-ltsc2016, 8-hotspot-windowsservercore-ltsc2016
-SharedTags: 8u292-b10-jdk-hotspot-windowsservercore, 8-jdk-hotspot-windowsservercore, 8-hotspot-windowsservercore, 8u292-b10-jdk-hotspot, 8-jdk-hotspot, 8-hotspot, 8-jdk, 8
-Architectures: windows-amd64
-GitCommit: c945a5b588b63553a7bb36c28b6751716e35070c
-Directory: 8/jdk/windows/windowsservercore-ltsc2016
-File: Dockerfile.hotspot.releases.full
-Constraints: windowsservercore-ltsc2016
-
-Tags: 8u292-b10-jre-hotspot-focal, 8-jre-hotspot-focal
-SharedTags: 8u292-b10-jre-hotspot, 8-jre-hotspot, 8-jre
-Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: c945a5b588b63553a7bb36c28b6751716e35070c
-Directory: 8/jre/ubuntu
-File: Dockerfile.hotspot.releases.full
-
-Tags: 8u292-b10-jre-hotspot-windowsservercore-1809, 8-jre-hotspot-windowsservercore-1809
-SharedTags: 8u292-b10-jre-hotspot-windowsservercore, 8-jre-hotspot-windowsservercore, 8u292-b10-jre-hotspot, 8-jre-hotspot, 8-jre
-Architectures: windows-amd64
-GitCommit: c945a5b588b63553a7bb36c28b6751716e35070c
-Directory: 8/jre/windows/windowsservercore-1809
-File: Dockerfile.hotspot.releases.full
-Constraints: windowsservercore-1809
-
-Tags: 8u292-b10-jre-hotspot-windowsservercore-ltsc2016, 8-jre-hotspot-windowsservercore-ltsc2016
-SharedTags: 8u292-b10-jre-hotspot-windowsservercore, 8-jre-hotspot-windowsservercore, 8u292-b10-jre-hotspot, 8-jre-hotspot, 8-jre
-Architectures: windows-amd64
-GitCommit: c945a5b588b63553a7bb36c28b6751716e35070c
-Directory: 8/jre/windows/windowsservercore-ltsc2016
-File: Dockerfile.hotspot.releases.full
-Constraints: windowsservercore-ltsc2016
-
-
-#-----------------------------hotspot v11 images---------------------------------
-Tags: 11.0.11_9-jdk-hotspot-focal, 11-jdk-hotspot-focal, 11-hotspot-focal
-SharedTags: 11.0.11_9-jdk-hotspot, 11-jdk-hotspot, 11-hotspot, 11-jdk, 11
-Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: c945a5b588b63553a7bb36c28b6751716e35070c
-Directory: 11/jdk/ubuntu
-File: Dockerfile.hotspot.releases.full
-
-Tags: 11.0.11_9-jdk-hotspot-windowsservercore-1809, 11-jdk-hotspot-windowsservercore-1809, 11-hotspot-windowsservercore-1809
-SharedTags: 11.0.11_9-jdk-hotspot-windowsservercore, 11-jdk-hotspot-windowsservercore, 11-hotspot-windowsservercore, 11.0.11_9-jdk-hotspot, 11-jdk-hotspot, 11-hotspot, 11-jdk, 11
-Architectures: windows-amd64
-GitCommit: c945a5b588b63553a7bb36c28b6751716e35070c
-Directory: 11/jdk/windows/windowsservercore-1809
-File: Dockerfile.hotspot.releases.full
-Constraints: windowsservercore-1809
-
-Tags: 11.0.11_9-jdk-hotspot-windowsservercore-ltsc2016, 11-jdk-hotspot-windowsservercore-ltsc2016, 11-hotspot-windowsservercore-ltsc2016
-SharedTags: 11.0.11_9-jdk-hotspot-windowsservercore, 11-jdk-hotspot-windowsservercore, 11-hotspot-windowsservercore, 11.0.11_9-jdk-hotspot, 11-jdk-hotspot, 11-hotspot, 11-jdk, 11
-Architectures: windows-amd64
-GitCommit: c945a5b588b63553a7bb36c28b6751716e35070c
-Directory: 11/jdk/windows/windowsservercore-ltsc2016
-File: Dockerfile.hotspot.releases.full
-Constraints: windowsservercore-ltsc2016
-
-Tags: 11.0.11_9-jre-hotspot-focal, 11-jre-hotspot-focal
-SharedTags: 11.0.11_9-jre-hotspot, 11-jre-hotspot, 11-jre
-Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: c945a5b588b63553a7bb36c28b6751716e35070c
-Directory: 11/jre/ubuntu
-File: Dockerfile.hotspot.releases.full
-
-Tags: 11.0.11_9-jre-hotspot-windowsservercore-1809, 11-jre-hotspot-windowsservercore-1809
-SharedTags: 11.0.11_9-jre-hotspot-windowsservercore, 11-jre-hotspot-windowsservercore, 11.0.11_9-jre-hotspot, 11-jre-hotspot, 11-jre
-Architectures: windows-amd64
-GitCommit: c945a5b588b63553a7bb36c28b6751716e35070c
-Directory: 11/jre/windows/windowsservercore-1809
-File: Dockerfile.hotspot.releases.full
-Constraints: windowsservercore-1809
-
-Tags: 11.0.11_9-jre-hotspot-windowsservercore-ltsc2016, 11-jre-hotspot-windowsservercore-ltsc2016
-SharedTags: 11.0.11_9-jre-hotspot-windowsservercore, 11-jre-hotspot-windowsservercore, 11.0.11_9-jre-hotspot, 11-jre-hotspot, 11-jre
-Architectures: windows-amd64
-GitCommit: c945a5b588b63553a7bb36c28b6751716e35070c
-Directory: 11/jre/windows/windowsservercore-ltsc2016
-File: Dockerfile.hotspot.releases.full
-Constraints: windowsservercore-ltsc2016
-
-
-#-----------------------------hotspot v15 images---------------------------------
-Tags: 15.0.2_7-jdk-hotspot-focal, 15-jdk-hotspot-focal, 15-hotspot-focal
-SharedTags: 15.0.2_7-jdk-hotspot, 15-jdk-hotspot, 15-hotspot, 15-jdk, 15
-Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: c945a5b588b63553a7bb36c28b6751716e35070c
-Directory: 15/jdk/ubuntu
-File: Dockerfile.hotspot.releases.full
-
-Tags: 15.0.2_7-jdk-hotspot-windowsservercore-1809, 15-jdk-hotspot-windowsservercore-1809, 15-hotspot-windowsservercore-1809
-SharedTags: 15.0.2_7-jdk-hotspot-windowsservercore, 15-jdk-hotspot-windowsservercore, 15-hotspot-windowsservercore, 15.0.2_7-jdk-hotspot, 15-jdk-hotspot, 15-hotspot, 15-jdk, 15
-Architectures: windows-amd64
-GitCommit: c945a5b588b63553a7bb36c28b6751716e35070c
-Directory: 15/jdk/windows/windowsservercore-1809
-File: Dockerfile.hotspot.releases.full
-Constraints: windowsservercore-1809
-
-Tags: 15.0.2_7-jdk-hotspot-windowsservercore-ltsc2016, 15-jdk-hotspot-windowsservercore-ltsc2016, 15-hotspot-windowsservercore-ltsc2016
-SharedTags: 15.0.2_7-jdk-hotspot-windowsservercore, 15-jdk-hotspot-windowsservercore, 15-hotspot-windowsservercore, 15.0.2_7-jdk-hotspot, 15-jdk-hotspot, 15-hotspot, 15-jdk, 15
-Architectures: windows-amd64
-GitCommit: c945a5b588b63553a7bb36c28b6751716e35070c
-Directory: 15/jdk/windows/windowsservercore-ltsc2016
-File: Dockerfile.hotspot.releases.full
-Constraints: windowsservercore-ltsc2016
-
-Tags: 15.0.2_7-jre-hotspot-focal, 15-jre-hotspot-focal
-SharedTags: 15.0.2_7-jre-hotspot, 15-jre-hotspot, 15-jre
-Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: c945a5b588b63553a7bb36c28b6751716e35070c
-Directory: 15/jre/ubuntu
-File: Dockerfile.hotspot.releases.full
-
-Tags: 15.0.2_7-jre-hotspot-windowsservercore-1809, 15-jre-hotspot-windowsservercore-1809
-SharedTags: 15.0.2_7-jre-hotspot-windowsservercore, 15-jre-hotspot-windowsservercore, 15.0.2_7-jre-hotspot, 15-jre-hotspot, 15-jre
-Architectures: windows-amd64
-GitCommit: c945a5b588b63553a7bb36c28b6751716e35070c
-Directory: 15/jre/windows/windowsservercore-1809
-File: Dockerfile.hotspot.releases.full
-Constraints: windowsservercore-1809
-
-Tags: 15.0.2_7-jre-hotspot-windowsservercore-ltsc2016, 15-jre-hotspot-windowsservercore-ltsc2016
-SharedTags: 15.0.2_7-jre-hotspot-windowsservercore, 15-jre-hotspot-windowsservercore, 15.0.2_7-jre-hotspot, 15-jre-hotspot, 15-jre
-Architectures: windows-amd64
-GitCommit: c945a5b588b63553a7bb36c28b6751716e35070c
-Directory: 15/jre/windows/windowsservercore-ltsc2016
-File: Dockerfile.hotspot.releases.full
-Constraints: windowsservercore-ltsc2016
-
-
-#-----------------------------hotspot v16 images---------------------------------
-Tags: 16.0.1_9-jdk-hotspot-focal, 16-jdk-hotspot-focal, 16-hotspot-focal, hotspot-focal
-SharedTags: 16.0.1_9-jdk-hotspot, 16-jdk-hotspot, 16-hotspot, hotspot, 16-jdk, 16, jdk, latest
-Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: c945a5b588b63553a7bb36c28b6751716e35070c
-Directory: 16/jdk/ubuntu
-File: Dockerfile.hotspot.releases.full
-
-Tags: 16.0.1_9-jdk-hotspot-windowsservercore-1809, 16-jdk-hotspot-windowsservercore-1809, 16-hotspot-windowsservercore-1809, hotspot-windowsservercore-1809
-SharedTags: 16.0.1_9-jdk-hotspot-windowsservercore, 16-jdk-hotspot-windowsservercore, 16-hotspot-windowsservercore, hotspot-windowsservercore, 16.0.1_9-jdk-hotspot, 16-jdk-hotspot, 16-hotspot, hotspot, 16-jdk, 16, jdk, latest
-Architectures: windows-amd64
-GitCommit: c945a5b588b63553a7bb36c28b6751716e35070c
-Directory: 16/jdk/windows/windowsservercore-1809
-File: Dockerfile.hotspot.releases.full
-Constraints: windowsservercore-1809
-
-Tags: 16.0.1_9-jdk-hotspot-windowsservercore-ltsc2016, 16-jdk-hotspot-windowsservercore-ltsc2016, 16-hotspot-windowsservercore-ltsc2016, hotspot-windowsservercore-ltsc2016
-SharedTags: 16.0.1_9-jdk-hotspot-windowsservercore, 16-jdk-hotspot-windowsservercore, 16-hotspot-windowsservercore, hotspot-windowsservercore, 16.0.1_9-jdk-hotspot, 16-jdk-hotspot, 16-hotspot, hotspot, 16-jdk, 16, jdk, latest
-Architectures: windows-amd64
-GitCommit: c945a5b588b63553a7bb36c28b6751716e35070c
-Directory: 16/jdk/windows/windowsservercore-ltsc2016
-File: Dockerfile.hotspot.releases.full
-Constraints: windowsservercore-ltsc2016
-
-Tags: 16.0.1_9-jre-hotspot-focal, 16-jre-hotspot-focal
-SharedTags: 16.0.1_9-jre-hotspot, 16-jre-hotspot, 16-jre
-Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: c945a5b588b63553a7bb36c28b6751716e35070c
-Directory: 16/jre/ubuntu
-File: Dockerfile.hotspot.releases.full
-
-Tags: 16.0.1_9-jre-hotspot-windowsservercore-1809, 16-jre-hotspot-windowsservercore-1809
-SharedTags: 16.0.1_9-jre-hotspot-windowsservercore, 16-jre-hotspot-windowsservercore, 16.0.1_9-jre-hotspot, 16-jre-hotspot, 16-jre
-Architectures: windows-amd64
-GitCommit: c945a5b588b63553a7bb36c28b6751716e35070c
-Directory: 16/jre/windows/windowsservercore-1809
-File: Dockerfile.hotspot.releases.full
-Constraints: windowsservercore-1809
-
-Tags: 16.0.1_9-jre-hotspot-windowsservercore-ltsc2016, 16-jre-hotspot-windowsservercore-ltsc2016
-SharedTags: 16.0.1_9-jre-hotspot-windowsservercore, 16-jre-hotspot-windowsservercore, 16.0.1_9-jre-hotspot, 16-jre-hotspot, 16-jre
-Architectures: windows-amd64
-GitCommit: c945a5b588b63553a7bb36c28b6751716e35070c
-Directory: 16/jre/windows/windowsservercore-ltsc2016
-File: Dockerfile.hotspot.releases.full
-Constraints: windowsservercore-ltsc2016
-
-
-#-----------------------------openj9 v8 images---------------------------------
-Tags: 8u292-b10-jdk-openj9-0.26.0-focal, 8-jdk-openj9-focal, 8-openj9-focal
-SharedTags: 8u292-b10-jdk-openj9-0.26.0, 8-jdk-openj9, 8-openj9
-Architectures: amd64, ppc64le, s390x
-GitCommit: c945a5b588b63553a7bb36c28b6751716e35070c
-Directory: 8/jdk/ubuntu
-File: Dockerfile.openj9.releases.full
-
-Tags: 8u292-b10-jdk-openj9-0.26.0-windowsservercore-1809, 8-jdk-openj9-windowsservercore-1809, 8-openj9-windowsservercore-1809
-SharedTags: 8u292-b10-jdk-openj9-0.26.0-windowsservercore, 8-jdk-openj9-windowsservercore, 8-openj9-windowsservercore, 8u292-b10-jdk-openj9-0.26.0, 8-jdk-openj9, 8-openj9
-Architectures: windows-amd64
-GitCommit: c945a5b588b63553a7bb36c28b6751716e35070c
-Directory: 8/jdk/windows/windowsservercore-1809
-File: Dockerfile.openj9.releases.full
-Constraints: windowsservercore-1809
-
-Tags: 8u292-b10-jdk-openj9-0.26.0-windowsservercore-ltsc2016, 8-jdk-openj9-windowsservercore-ltsc2016, 8-openj9-windowsservercore-ltsc2016
-SharedTags: 8u292-b10-jdk-openj9-0.26.0-windowsservercore, 8-jdk-openj9-windowsservercore, 8-openj9-windowsservercore, 8u292-b10-jdk-openj9-0.26.0, 8-jdk-openj9, 8-openj9
-Architectures: windows-amd64
-GitCommit: c945a5b588b63553a7bb36c28b6751716e35070c
-Directory: 8/jdk/windows/windowsservercore-ltsc2016
-File: Dockerfile.openj9.releases.full
-Constraints: windowsservercore-ltsc2016
-
-Tags: 8u292-b10-jre-openj9-0.26.0-focal, 8-jre-openj9-focal
-SharedTags: 8u292-b10-jre-openj9-0.26.0, 8-jre-openj9
-Architectures: amd64, ppc64le, s390x
-GitCommit: c945a5b588b63553a7bb36c28b6751716e35070c
-Directory: 8/jre/ubuntu
-File: Dockerfile.openj9.releases.full
-
-Tags: 8u292-b10-jre-openj9-0.26.0-windowsservercore-1809, 8-jre-openj9-windowsservercore-1809
-SharedTags: 8u292-b10-jre-openj9-0.26.0-windowsservercore, 8-jre-openj9-windowsservercore, 8u292-b10-jre-openj9-0.26.0, 8-jre-openj9
-Architectures: windows-amd64
-GitCommit: c945a5b588b63553a7bb36c28b6751716e35070c
-Directory: 8/jre/windows/windowsservercore-1809
-File: Dockerfile.openj9.releases.full
-Constraints: windowsservercore-1809
-
-Tags: 8u292-b10-jre-openj9-0.26.0-windowsservercore-ltsc2016, 8-jre-openj9-windowsservercore-ltsc2016
-SharedTags: 8u292-b10-jre-openj9-0.26.0-windowsservercore, 8-jre-openj9-windowsservercore, 8u292-b10-jre-openj9-0.26.0, 8-jre-openj9
-Architectures: windows-amd64
-GitCommit: c945a5b588b63553a7bb36c28b6751716e35070c
-Directory: 8/jre/windows/windowsservercore-ltsc2016
-File: Dockerfile.openj9.releases.full
-Constraints: windowsservercore-ltsc2016
-
-
-#-----------------------------openj9 v11 images---------------------------------
-Tags: 11.0.11_9-jdk-openj9-0.26.0-focal, 11-jdk-openj9-focal, 11-openj9-focal
-SharedTags: 11.0.11_9-jdk-openj9-0.26.0, 11-jdk-openj9, 11-openj9
-Architectures: amd64, ppc64le, s390x
-GitCommit: c945a5b588b63553a7bb36c28b6751716e35070c
-Directory: 11/jdk/ubuntu
-File: Dockerfile.openj9.releases.full
-
-Tags: 11.0.11_9-jdk-openj9-0.26.0-windowsservercore-1809, 11-jdk-openj9-windowsservercore-1809, 11-openj9-windowsservercore-1809
-SharedTags: 11.0.11_9-jdk-openj9-0.26.0-windowsservercore, 11-jdk-openj9-windowsservercore, 11-openj9-windowsservercore, 11.0.11_9-jdk-openj9-0.26.0, 11-jdk-openj9, 11-openj9
-Architectures: windows-amd64
-GitCommit: c945a5b588b63553a7bb36c28b6751716e35070c
-Directory: 11/jdk/windows/windowsservercore-1809
-File: Dockerfile.openj9.releases.full
-Constraints: windowsservercore-1809
-
-Tags: 11.0.11_9-jdk-openj9-0.26.0-windowsservercore-ltsc2016, 11-jdk-openj9-windowsservercore-ltsc2016, 11-openj9-windowsservercore-ltsc2016
-SharedTags: 11.0.11_9-jdk-openj9-0.26.0-windowsservercore, 11-jdk-openj9-windowsservercore, 11-openj9-windowsservercore, 11.0.11_9-jdk-openj9-0.26.0, 11-jdk-openj9, 11-openj9
-Architectures: windows-amd64
-GitCommit: c945a5b588b63553a7bb36c28b6751716e35070c
-Directory: 11/jdk/windows/windowsservercore-ltsc2016
-File: Dockerfile.openj9.releases.full
-Constraints: windowsservercore-ltsc2016
-
-Tags: 11.0.11_9-jre-openj9-0.26.0-focal, 11-jre-openj9-focal
-SharedTags: 11.0.11_9-jre-openj9-0.26.0, 11-jre-openj9
-Architectures: amd64, ppc64le, s390x
-GitCommit: c945a5b588b63553a7bb36c28b6751716e35070c
-Directory: 11/jre/ubuntu
-File: Dockerfile.openj9.releases.full
-
-Tags: 11.0.11_9-jre-openj9-0.26.0-windowsservercore-1809, 11-jre-openj9-windowsservercore-1809
-SharedTags: 11.0.11_9-jre-openj9-0.26.0-windowsservercore, 11-jre-openj9-windowsservercore, 11.0.11_9-jre-openj9-0.26.0, 11-jre-openj9
-Architectures: windows-amd64
-GitCommit: c945a5b588b63553a7bb36c28b6751716e35070c
-Directory: 11/jre/windows/windowsservercore-1809
-File: Dockerfile.openj9.releases.full
-Constraints: windowsservercore-1809
-
-Tags: 11.0.11_9-jre-openj9-0.26.0-windowsservercore-ltsc2016, 11-jre-openj9-windowsservercore-ltsc2016
-SharedTags: 11.0.11_9-jre-openj9-0.26.0-windowsservercore, 11-jre-openj9-windowsservercore, 11.0.11_9-jre-openj9-0.26.0, 11-jre-openj9
-Architectures: windows-amd64
-GitCommit: c945a5b588b63553a7bb36c28b6751716e35070c
-Directory: 11/jre/windows/windowsservercore-ltsc2016
-File: Dockerfile.openj9.releases.full
-Constraints: windowsservercore-ltsc2016
-
-
-#-----------------------------openj9 v15 images---------------------------------
-Tags: 15.0.2_7-jdk-openj9-0.24.0-focal, 15-jdk-openj9-focal, 15-openj9-focal
-SharedTags: 15.0.2_7-jdk-openj9-0.24.0, 15-jdk-openj9, 15-openj9
-Architectures: amd64, ppc64le, s390x
-GitCommit: c945a5b588b63553a7bb36c28b6751716e35070c
-Directory: 15/jdk/ubuntu
-File: Dockerfile.openj9.releases.full
-
-Tags: 15.0.2_7-jdk-openj9-0.24.0-windowsservercore-1809, 15-jdk-openj9-windowsservercore-1809, 15-openj9-windowsservercore-1809
-SharedTags: 15.0.2_7-jdk-openj9-0.24.0-windowsservercore, 15-jdk-openj9-windowsservercore, 15-openj9-windowsservercore, 15.0.2_7-jdk-openj9-0.24.0, 15-jdk-openj9, 15-openj9
-Architectures: windows-amd64
-GitCommit: c945a5b588b63553a7bb36c28b6751716e35070c
-Directory: 15/jdk/windows/windowsservercore-1809
-File: Dockerfile.openj9.releases.full
-Constraints: windowsservercore-1809
-
-Tags: 15.0.2_7-jdk-openj9-0.24.0-windowsservercore-ltsc2016, 15-jdk-openj9-windowsservercore-ltsc2016, 15-openj9-windowsservercore-ltsc2016
-SharedTags: 15.0.2_7-jdk-openj9-0.24.0-windowsservercore, 15-jdk-openj9-windowsservercore, 15-openj9-windowsservercore, 15.0.2_7-jdk-openj9-0.24.0, 15-jdk-openj9, 15-openj9
-Architectures: windows-amd64
-GitCommit: c945a5b588b63553a7bb36c28b6751716e35070c
-Directory: 15/jdk/windows/windowsservercore-ltsc2016
-File: Dockerfile.openj9.releases.full
-Constraints: windowsservercore-ltsc2016
-
-Tags: 15.0.2_7-jre-openj9-0.24.0-focal, 15-jre-openj9-focal
-SharedTags: 15.0.2_7-jre-openj9-0.24.0, 15-jre-openj9
-Architectures: amd64, ppc64le, s390x
-GitCommit: c945a5b588b63553a7bb36c28b6751716e35070c
-Directory: 15/jre/ubuntu
-File: Dockerfile.openj9.releases.full
-
-Tags: 15.0.2_7-jre-openj9-0.24.0-windowsservercore-1809, 15-jre-openj9-windowsservercore-1809
-SharedTags: 15.0.2_7-jre-openj9-0.24.0-windowsservercore, 15-jre-openj9-windowsservercore, 15.0.2_7-jre-openj9-0.24.0, 15-jre-openj9
-Architectures: windows-amd64
-GitCommit: c945a5b588b63553a7bb36c28b6751716e35070c
-Directory: 15/jre/windows/windowsservercore-1809
-File: Dockerfile.openj9.releases.full
-Constraints: windowsservercore-1809
-
-Tags: 15.0.2_7-jre-openj9-0.24.0-windowsservercore-ltsc2016, 15-jre-openj9-windowsservercore-ltsc2016
-SharedTags: 15.0.2_7-jre-openj9-0.24.0-windowsservercore, 15-jre-openj9-windowsservercore, 15.0.2_7-jre-openj9-0.24.0, 15-jre-openj9
-Architectures: windows-amd64
-GitCommit: c945a5b588b63553a7bb36c28b6751716e35070c
-Directory: 15/jre/windows/windowsservercore-ltsc2016
-File: Dockerfile.openj9.releases.full
-Constraints: windowsservercore-ltsc2016
-
-
-#-----------------------------openj9 v16 images---------------------------------
-Tags: 16.0.1_9-jdk-openj9-0.26.0-focal, 16-jdk-openj9-focal, 16-openj9-focal, openj9-focal
-SharedTags: 16.0.1_9-jdk-openj9-0.26.0, 16-jdk-openj9, 16-openj9, openj9
-Architectures: amd64, ppc64le, s390x
-GitCommit: c945a5b588b63553a7bb36c28b6751716e35070c
-Directory: 16/jdk/ubuntu
-File: Dockerfile.openj9.releases.full
-
-Tags: 16.0.1_9-jdk-openj9-0.26.0-windowsservercore-1809, 16-jdk-openj9-windowsservercore-1809, 16-openj9-windowsservercore-1809, openj9-windowsservercore-1809
-SharedTags: 16.0.1_9-jdk-openj9-0.26.0-windowsservercore, 16-jdk-openj9-windowsservercore, 16-openj9-windowsservercore, openj9-windowsservercore, 16.0.1_9-jdk-openj9-0.26.0, 16-jdk-openj9, 16-openj9, openj9
-Architectures: windows-amd64
-GitCommit: c945a5b588b63553a7bb36c28b6751716e35070c
-Directory: 16/jdk/windows/windowsservercore-1809
-File: Dockerfile.openj9.releases.full
-Constraints: windowsservercore-1809
-
-Tags: 16.0.1_9-jdk-openj9-0.26.0-windowsservercore-ltsc2016, 16-jdk-openj9-windowsservercore-ltsc2016, 16-openj9-windowsservercore-ltsc2016, openj9-windowsservercore-ltsc2016
-SharedTags: 16.0.1_9-jdk-openj9-0.26.0-windowsservercore, 16-jdk-openj9-windowsservercore, 16-openj9-windowsservercore, openj9-windowsservercore, 16.0.1_9-jdk-openj9-0.26.0, 16-jdk-openj9, 16-openj9, openj9
-Architectures: windows-amd64
-GitCommit: c945a5b588b63553a7bb36c28b6751716e35070c
-Directory: 16/jdk/windows/windowsservercore-ltsc2016
-File: Dockerfile.openj9.releases.full
-Constraints: windowsservercore-ltsc2016
-
-Tags: 16.0.1_9-jre-openj9-0.26.0-focal, 16-jre-openj9-focal
-SharedTags: 16.0.1_9-jre-openj9-0.26.0, 16-jre-openj9
-Architectures: amd64, ppc64le, s390x
-GitCommit: c945a5b588b63553a7bb36c28b6751716e35070c
-Directory: 16/jre/ubuntu
-File: Dockerfile.openj9.releases.full
-
-Tags: 16.0.1_9-jre-openj9-0.26.0-windowsservercore-1809, 16-jre-openj9-windowsservercore-1809
-SharedTags: 16.0.1_9-jre-openj9-0.26.0-windowsservercore, 16-jre-openj9-windowsservercore, 16.0.1_9-jre-openj9-0.26.0, 16-jre-openj9
-Architectures: windows-amd64
-GitCommit: c945a5b588b63553a7bb36c28b6751716e35070c
-Directory: 16/jre/windows/windowsservercore-1809
-File: Dockerfile.openj9.releases.full
-Constraints: windowsservercore-1809
-
-Tags: 16.0.1_9-jre-openj9-0.26.0-windowsservercore-ltsc2016, 16-jre-openj9-windowsservercore-ltsc2016
-SharedTags: 16.0.1_9-jre-openj9-0.26.0-windowsservercore, 16-jre-openj9-windowsservercore, 16.0.1_9-jre-openj9-0.26.0, 16-jre-openj9
-Architectures: windows-amd64
-GitCommit: c945a5b588b63553a7bb36c28b6751716e35070c
-Directory: 16/jre/windows/windowsservercore-ltsc2016
-File: Dockerfile.openj9.releases.full
-Constraints: windowsservercore-ltsc2016
diff --git a/library/aerospike b/library/aerospike
index a1f29abc05..f9a95c9e30 100644
--- a/library/aerospike
+++ b/library/aerospike
@@ -1,13 +1,16 @@
Maintainers: Lucien Volmar (@volmarl),
Michael Coberly (@mcoberly2),
- Phuc Vinh (@pvinh-spike)
+ Phuc Vinh (@pvinh-spike),
+ Kevin Porter (@kportertx)
-Tags: ee-5.6.0.4
-Architectures: amd64
-GitRepo: https://github.com/aerospike/aerospike-server-enterprise.docker.git
-GitCommit: cd7a7c799c10a0dcdc21042167de92b5e8eff0b6
-
-Tags: ce-5.6.0.4
-Architectures: amd64
+Tags: ee-6.4.0.4, ee-6.4.0.4_1
+Architectures: amd64, arm64v8
GitRepo: https://github.com/aerospike/aerospike-server.docker.git
-GitCommit: 5e88be62310d19610685224e89c5aed9afc0d8a2
+GitCommit: 5e912d28d7309d62449f0b490342a99a427a1e3e
+Directory: enterprise/debian12
+
+Tags: ce-6.4.0.4, ce-6.4.0.4_1
+Architectures: amd64, arm64v8
+GitRepo: https://github.com/aerospike/aerospike-server.docker.git
+GitCommit: 5e912d28d7309d62449f0b490342a99a427a1e3e
+Directory: community/debian12
diff --git a/library/almalinux b/library/almalinux
index 6c1783d778..541c230cf0 100644
--- a/library/almalinux
+++ b/library/almalinux
@@ -1,6 +1,64 @@
+# This file is generated using https://github.com/almalinux/docker-images/blob/0f287a463b6c372fb358d8f9f993c2c65361b6a7/gen_docker_official_library
Maintainers: The AlmaLinux OS Foundation (@AlmaLinux)
GitRepo: https://github.com/AlmaLinux/docker-images.git
-Tags: latest, 8
-GitFetch: refs/heads/almalinux-8-x86_64
-GitCommit: 1dc91dd3b9f69fd2f570c94441104004a9ef9811
+
+Tags: 8, 8.8, 8.8-20230718
+GitFetch: refs/heads/al8-20230718-amd64
+GitCommit: a7e0d4c97e8c2ab80dfada8685b44831f7c8d6ad
+amd64-File: Dockerfile-x86_64-default
+arm64v8-GitFetch: refs/heads/al8-20230718-arm64v8
+arm64v8-GitCommit: af89b951918bc59e0891dde2ecbcc38d64560c59
+arm64v8-File: Dockerfile-aarch64-default
+ppc64le-GitFetch: refs/heads/al8-20230718-ppc64le
+ppc64le-GitCommit: 77ec120d5ee160cc72406c31dddb4a9e9ec5c809
+ppc64le-File: Dockerfile-ppc64le-default
+s390x-GitFetch: refs/heads/al8-20230718-s390x
+s390x-GitCommit: 0d0bcc7dba2e66b6e360d77c6c16fb8217490ddd
+s390x-File: Dockerfile-s390x-default
+Architectures: amd64, arm64v8, ppc64le, s390x
+
+Tags: 8-minimal, 8.8-minimal, 8.8-minimal-20230718
+GitFetch: refs/heads/al8-20230718-amd64
+GitCommit: a7e0d4c97e8c2ab80dfada8685b44831f7c8d6ad
+amd64-File: Dockerfile-x86_64-minimal
+arm64v8-GitFetch: refs/heads/al8-20230718-arm64v8
+arm64v8-GitCommit: af89b951918bc59e0891dde2ecbcc38d64560c59
+arm64v8-File: Dockerfile-aarch64-minimal
+ppc64le-GitFetch: refs/heads/al8-20230718-ppc64le
+ppc64le-GitCommit: 77ec120d5ee160cc72406c31dddb4a9e9ec5c809
+ppc64le-File: Dockerfile-ppc64le-minimal
+s390x-GitFetch: refs/heads/al8-20230718-s390x
+s390x-GitCommit: 0d0bcc7dba2e66b6e360d77c6c16fb8217490ddd
+s390x-File: Dockerfile-s390x-minimal
+Architectures: amd64, arm64v8, ppc64le, s390x
+
+Tags: latest, 9, 9.2, 9.2-20230718
+GitFetch: refs/heads/al9-20230718-amd64
+GitCommit: 764a53a590bc415278c977ad43f42f4a836b8c3f
+amd64-File: Dockerfile-x86_64-default
+arm64v8-GitFetch: refs/heads/al9-20230718-arm64v8
+arm64v8-GitCommit: 8812e025bed7bf8b231f8cdbc2a67880f1fd03e0
+arm64v8-File: Dockerfile-aarch64-default
+ppc64le-GitFetch: refs/heads/al9-20230718-ppc64le
+ppc64le-GitCommit: 7167d334fcc163577422e74f364f652481f5cd97
+ppc64le-File: Dockerfile-ppc64le-default
+s390x-GitFetch: refs/heads/al9-20230718-s390x
+s390x-GitCommit: 5014341cc139ca7b70f2cc1440c3a35e693a60f9
+s390x-File: Dockerfile-s390x-default
+Architectures: amd64, arm64v8, ppc64le, s390x
+
+Tags: minimal, 9-minimal, 9.2-minimal, 9.2-minimal-20230718
+GitFetch: refs/heads/al9-20230718-amd64
+GitCommit: 764a53a590bc415278c977ad43f42f4a836b8c3f
+amd64-File: Dockerfile-x86_64-minimal
+arm64v8-GitFetch: refs/heads/al9-20230718-arm64v8
+arm64v8-GitCommit: 8812e025bed7bf8b231f8cdbc2a67880f1fd03e0
+arm64v8-File: Dockerfile-aarch64-minimal
+ppc64le-GitFetch: refs/heads/al9-20230718-ppc64le
+ppc64le-GitCommit: 7167d334fcc163577422e74f364f652481f5cd97
+ppc64le-File: Dockerfile-ppc64le-minimal
+s390x-GitFetch: refs/heads/al9-20230718-s390x
+s390x-GitCommit: 5014341cc139ca7b70f2cc1440c3a35e693a60f9
+s390x-File: Dockerfile-s390x-minimal
+Architectures: amd64, arm64v8, ppc64le, s390x
diff --git a/library/alpine b/library/alpine
index 5310863813..cf5ad31cab 100644
--- a/library/alpine
+++ b/library/alpine
@@ -1,22 +1,23 @@
Maintainers: Natanael Copa (@ncopa)
GitRepo: https://github.com/alpinelinux/docker-alpine.git
-Tags: 20210212, edge
-Architectures: arm64v8, arm32v6, arm32v7, ppc64le, s390x, i386, amd64
+Tags: 20230901, edge
+Architectures: arm64v8, arm32v6, arm32v7, ppc64le, riscv64, s390x, i386, amd64
GitFetch: refs/heads/edge
-GitCommit: 489953694b9dd165f615dc01971971ddf55701f8
+GitCommit: 9f17b1fa5a5c3ea6de378b610f2eb2fdcdfb15b3
arm64v8-Directory: aarch64/
arm32v6-Directory: armhf/
arm32v7-Directory: armv7/
ppc64le-Directory: ppc64le/
+riscv64-Directory: riscv64/
s390x-Directory: s390x/
i386-Directory: x86/
amd64-Directory: x86_64/
-Tags: 3.13.5, 3.13, 3, latest
+Tags: 3.18.4, 3.18, 3, latest
Architectures: arm64v8, arm32v6, arm32v7, ppc64le, s390x, i386, amd64
-GitFetch: refs/heads/v3.13
-GitCommit: 37579d92b9faa70398240431bc46720242faa5e5
+GitFetch: refs/heads/v3.18
+GitCommit: e7f8cc3aebd309337497c1e794db9aabbb9902c0
arm64v8-Directory: aarch64/
arm32v6-Directory: armhf/
arm32v7-Directory: armv7/
@@ -25,10 +26,10 @@ s390x-Directory: s390x/
i386-Directory: x86/
amd64-Directory: x86_64/
-Tags: 3.12.7, 3.12
+Tags: 3.17.5, 3.17
Architectures: arm64v8, arm32v6, arm32v7, ppc64le, s390x, i386, amd64
-GitFetch: refs/heads/v3.12
-GitCommit: 8b8051f1c11daff18ada363488e145af9e201802
+GitFetch: refs/heads/v3.17
+GitCommit: bb3a15580db27a6a5f75909040f98ac1ac6d39c1
arm64v8-Directory: aarch64/
arm32v6-Directory: armhf/
arm32v7-Directory: armv7/
@@ -37,10 +38,10 @@ s390x-Directory: s390x/
i386-Directory: x86/
amd64-Directory: x86_64/
-Tags: 3.11.11, 3.11
+Tags: 3.16.7, 3.16
Architectures: arm64v8, arm32v6, arm32v7, ppc64le, s390x, i386, amd64
-GitFetch: refs/heads/v3.11
-GitCommit: 2cd76fb18830708f4af5a6927c3aa40867a4e8bb
+GitFetch: refs/heads/v3.16
+GitCommit: 6a4bd9a98102f701834ef7d6fe2215dc0b3288c2
arm64v8-Directory: aarch64/
arm32v6-Directory: armhf/
arm32v7-Directory: armv7/
@@ -49,10 +50,10 @@ s390x-Directory: s390x/
i386-Directory: x86/
amd64-Directory: x86_64/
-Tags: 3.10.9, 3.10
+Tags: 3.15.10, 3.15
Architectures: arm64v8, arm32v6, arm32v7, ppc64le, s390x, i386, amd64
-GitFetch: refs/heads/v3.10
-GitCommit: 5a9faa421c89dc3d516bc84e9d47907d560fc2bd
+GitFetch: refs/heads/v3.15
+GitCommit: e16b9737b016b9275598e6946a677ee4205070ba
arm64v8-Directory: aarch64/
arm32v6-Directory: armhf/
arm32v7-Directory: armv7/
diff --git a/library/alt b/library/alt
index 3f8f59d981..3457fc95aa 100644
--- a/library/alt
+++ b/library/alt
@@ -4,27 +4,32 @@ Maintainers: ALT Linux Team Cloud (@alt-cloud),
Mikhail Gordeev (@obirvalger)
GitRepo: https://github.com/alt-cloud/docker-brew-alt.git
-Tags: p9, latest
-Architectures: amd64, i386, arm64v8, ppc64le
-GitFetch: refs/heads/p9
-GitCommit: 027b02f57faf6278ab0a7080e077f4e989e0302d
+Tags: p10, latest
+Architectures: amd64, i386, arm64v8, arm32v7, ppc64le
+GitFetch: refs/heads/p10
+GitCommit: 75c4d0029825ab9802240f2a086395d728e1853f
amd64-Directory: x86_64/
i386-Directory: i586/
arm64v8-Directory: aarch64/
+arm32v7-Directory: armh/
ppc64le-Directory: ppc64le/
-Tags: p8
-Architectures: amd64, i386
-GitFetch: refs/heads/p8
-GitCommit: ce87cc6c704caf13461955cfa5ddd83a7d04207a
+Tags: p9
+Architectures: amd64, i386, arm64v8, arm32v7, ppc64le
+GitFetch: refs/heads/p9
+GitCommit: d1f01d08ac608909403bc99501af07065d7be769
amd64-Directory: x86_64/
i386-Directory: i586/
+arm64v8-Directory: aarch64/
+arm32v7-Directory: armh/
+ppc64le-Directory: ppc64le/
Tags: sisyphus
-Architectures: amd64, i386, arm64v8, ppc64le
+Architectures: amd64, i386, arm64v8, arm32v7, ppc64le
GitFetch: refs/heads/sisyphus
-GitCommit: 425b1b723bf933037319e23d5a5cdf7e796971eb
+GitCommit: cf707869d0d33a76fa3eed5eb2592c07a0a11e23
amd64-Directory: x86_64/
arm64v8-Directory: aarch64/
+arm32v7-Directory: armh/
i386-Directory: i586/
ppc64le-Directory: ppc64le/
diff --git a/library/amazoncorretto b/library/amazoncorretto
index 85c153c398..100f1ce805 100644
--- a/library/amazoncorretto
+++ b/library/amazoncorretto
@@ -1,35 +1,203 @@
Maintainers: Amazon Corretto Team (@corretto),
- James Guo (@jguo11),
+ Dan Lutker (@lutkerd),
Ben Taylor (@benty-amzn),
- Clive Verghese (@cliveverghese)
+ Joshua Cao (@caojoshua),
+ David Alvarez (@alvdavi),
+ Rui Li (@rgithubli),
+ Sergey Bylokhov (@mrserb),
+ Victor Rudometov (@Rudometov)
GitRepo: https://github.com/corretto/corretto-docker.git
-GitFetch: refs/heads/master
-GitCommit: 4e2c302e3ba78f2d964fb82fce2e2d25a459d4ee
+GitFetch: refs/heads/main
+GitCommit: 222e2a97c715482d19e55b267e7e1a12b4c6f2d0
-Tags: 8, 8u292, 8u292-al2, 8-al2-full,8-al2-jdk, latest
+Tags: 8, 8u382, 8u382-al2, 8-al2-full, 8-al2-jdk, 8-al2-generic, 8u382-al2-generic, 8-al2-generic-jdk, latest
+Architectures: amd64, arm64v8
+Directory: 8/jdk/al2-generic
+
+Tags: 8-al2023, 8u382-al2023, 8-al2023-jdk
+Architectures: amd64, arm64v8
+Directory: 8/jdk/al2023
+
+Tags: 8-al2023-jre, 8u382-al2023-jre
+Architectures: amd64, arm64v8
+Directory: 8/jdk/al2023
+
+Tags: 8-al2-native-jre, 8u382-al2-native-jre
+Architectures: amd64, arm64v8
+Directory: 8/jre/al2
+
+Tags: 8-al2-native-jdk, 8u382-al2-native-jdk
Architectures: amd64, arm64v8
Directory: 8/jdk/al2
-Tags: 11, 11.0.11, 11.0.11-al2, 11-al2-jdk, 11-al2-full
+Tags: 8-alpine3.15, 8u382-alpine3.15, 8-alpine3.15-full, 8-alpine3.15-jdk
+Architectures: amd64, arm64v8
+Directory: 8/jdk/alpine/3.15
+
+Tags: 8-alpine3.15-jre, 8u382-alpine3.15-jre
+Architectures: amd64, arm64v8
+Directory: 8/jre/alpine/3.15
+
+Tags: 8-alpine3.16, 8u382-alpine3.16, 8-alpine3.16-full, 8-alpine3.16-jdk
+Architectures: amd64, arm64v8
+Directory: 8/jdk/alpine/3.16
+
+Tags: 8-alpine3.16-jre, 8u382-alpine3.16-jre
+Architectures: amd64, arm64v8
+Directory: 8/jre/alpine/3.16
+
+Tags: 8-alpine3.17, 8u382-alpine3.17, 8-alpine3.17-full, 8-alpine3.17-jdk
+Architectures: amd64, arm64v8
+Directory: 8/jdk/alpine/3.17
+
+Tags: 8-alpine3.17-jre, 8u382-alpine3.17-jre
+Architectures: amd64, arm64v8
+Directory: 8/jre/alpine/3.17
+
+Tags: 8-alpine3.18, 8u382-alpine3.18, 8-alpine3.18-full, 8-alpine3.18-jdk, 8-alpine, 8u382-alpine, 8-alpine-full, 8-alpine-jdk
+Architectures: amd64, arm64v8
+Directory: 8/jdk/alpine/3.18
+
+Tags: 8-alpine3.18-jre, 8u382-alpine3.18-jre, 8-alpine-jre, 8u382-alpine-jre
+Architectures: amd64, arm64v8
+Directory: 8/jre/alpine/3.18
+
+Tags: 11, 11.0.20, 11.0.20-al2, 11-al2-full, 11-al2-jdk, 11-al2-generic, 11.0.20-al2-generic, 11-al2-generic-jdk
+Architectures: amd64, arm64v8
+Directory: 11/jdk/al2-generic
+
+Tags: 11-al2023, 11.0.20-al2023, 11-al2023-jdk
+Architectures: amd64, arm64v8
+Directory: 11/jdk/al2023
+
+Tags: 11-al2023-headless, 11.0.20-al2023-headless
+Architectures: amd64, arm64v8
+Directory: 11/headless/al2023
+
+Tags: 11-al2023-headful, 11.0.20-al2023-headful
+Architectures: amd64, arm64v8
+Directory: 11/headful/al2023
+
+Tags: 11-al2-native-headless, 11.0.20-al2-native-headless
+Architectures: amd64, arm64v8
+Directory: 11/headless/al2
+
+Tags: 11-al2-native-jdk, 11.0.20-al2-native-jdk
Architectures: amd64, arm64v8
Directory: 11/jdk/al2
-Tags: 8-alpine, 8u292-alpine, 8-alpine-full, 8-alpine-jdk
-Architectures: amd64
-Directory: 8/jdk/alpine
-
-Tags: 8-alpine-jre, 8u282-alpine-jre
-Architectures: amd64
-Directory: 8/jre/alpine
-
-Tags: 11-alpine, 11.0.11-alpine, 11-alpine-full, 11-alpine-jdk
-Architectures: amd64
-Directory: 11/jdk/alpine
-
-Tags: 16, 16.0.1, 16.0.1-al2, 16-al2-jdk, 16-al2-full
+Tags: 11-alpine3.15, 11.0.20-alpine3.15, 11-alpine3.15-full, 11-alpine3.15-jdk
Architectures: amd64, arm64v8
-Directory: 16/jdk/al2
+Directory: 11/jdk/alpine/3.15
-Tags: 16-alpine, 16.0.1-alpine, 16-alpine-full, 16-alpine-jdk
-Architectures: amd64
-Directory: 16/jdk/alpine
+Tags: 11-alpine3.16, 11.0.20-alpine3.16, 11-alpine3.16-full, 11-alpine3.16-jdk
+Architectures: amd64, arm64v8
+Directory: 11/jdk/alpine/3.16
+
+Tags: 11-alpine3.17, 11.0.20-alpine3.17, 11-alpine3.17-full, 11-alpine3.17-jdk
+Architectures: amd64, arm64v8
+Directory: 11/jdk/alpine/3.17
+
+Tags: 11-alpine3.18, 11.0.20-alpine3.18, 11-alpine3.18-full, 11-alpine3.18-jdk, 11-alpine, 11.0.20-alpine, 11-alpine-full, 11-alpine-jdk
+Architectures: amd64, arm64v8
+Directory: 11/jdk/alpine/3.18
+
+Tags: 17, 17.0.8, 17.0.8-al2, 17-al2-full, 17-al2-jdk, 17-al2-generic, 17.0.8-al2-generic, 17-al2-generic-jdk
+Architectures: amd64, arm64v8
+Directory: 17/jdk/al2-generic
+
+Tags: 17-al2023, 17.0.8-al2023, 17-al2023-jdk
+Architectures: amd64, arm64v8
+Directory: 17/jdk/al2023
+
+Tags: 17-al2023-headless, 17.0.8-al2023-headless
+Architectures: amd64, arm64v8
+Directory: 17/headless/al2023
+
+Tags: 17-al2023-headful, 17.0.8-al2023-headful
+Architectures: amd64, arm64v8
+Directory: 17/headful/al2023
+
+Tags: 17-al2-native-headless, 17.0.8-al2-native-headless
+Architectures: amd64, arm64v8
+Directory: 17/headless/al2
+
+Tags: 17-al2-native-headful, 17.0.8-al2-native-headful
+Architectures: amd64, arm64v8
+Directory: 17/headful/al2
+
+Tags: 17-al2-native-jdk, 17.0.8-al2-native-jdk
+Architectures: amd64, arm64v8
+Directory: 17/jdk/al2
+
+Tags: 17-alpine3.15, 17.0.8-alpine3.15, 17-alpine3.15-full, 17-alpine3.15-jdk
+Architectures: amd64, arm64v8
+Directory: 17/jdk/alpine/3.15
+
+Tags: 17-alpine3.16, 17.0.8-alpine3.16, 17-alpine3.16-full, 17-alpine3.16-jdk
+Architectures: amd64, arm64v8
+Directory: 17/jdk/alpine/3.16
+
+Tags: 17-alpine3.17, 17.0.8-alpine3.17, 17-alpine3.17-full, 17-alpine3.17-jdk
+Architectures: amd64, arm64v8
+Directory: 17/jdk/alpine/3.17
+
+Tags: 17-alpine3.18, 17.0.8-alpine3.18, 17-alpine3.18-full, 17-alpine3.18-jdk, 17-alpine, 17.0.8-alpine, 17-alpine-full, 17-alpine-jdk
+Architectures: amd64, arm64v8
+Directory: 17/jdk/alpine/3.18
+
+Tags: 20, 20.0.2, 20.0.2-al2, 20-al2-full, 20-al2-jdk, 20-al2-generic, 20.0.2-al2-generic, 20-al2-generic-jdk
+Architectures: amd64, arm64v8
+Directory: 20/jdk/al2-generic
+
+Tags: 20-al2023-generic, 20.0.2-al2023-generic, 20-al2023-generic-jdk
+Architectures: amd64, arm64v8
+Directory: 20/jdk/al2023-generic
+
+Tags: 20-alpine3.15, 20.0.2-alpine3.15, 20-alpine3.15-full, 20-alpine3.15-jdk
+Architectures: amd64, arm64v8
+Directory: 20/jdk/alpine/3.15
+
+Tags: 20-alpine3.16, 20.0.2-alpine3.16, 20-alpine3.16-full, 20-alpine3.16-jdk
+Architectures: amd64, arm64v8
+Directory: 20/jdk/alpine/3.16
+
+Tags: 20-alpine3.17, 20.0.2-alpine3.17, 20-alpine3.17-full, 20-alpine3.17-jdk
+Architectures: amd64, arm64v8
+Directory: 20/jdk/alpine/3.17
+
+Tags: 20-alpine3.18, 20.0.2-alpine3.18, 20-alpine3.18-full, 20-alpine3.18-jdk, 20-alpine, 20.0.2-alpine, 20-alpine-full, 20-alpine-jdk
+Architectures: amd64, arm64v8
+Directory: 20/jdk/alpine/3.18
+
+Tags: 21, 21.0.0, 21.0.0-al2, 21-al2-full, 21-al2-jdk, 21-al2-generic, 21.0.0-al2-generic, 21-al2-generic-jdk
+Architectures: amd64, arm64v8
+Directory: 21/jdk/al2-generic
+
+Tags: 21-al2023, 21.0.0-al2023, 21-al2023-jdk
+Architectures: amd64, arm64v8
+Directory: 21/jdk/al2023
+
+Tags: 21-al2023-headless, 21.0.0-al2023-headless
+Architectures: amd64, arm64v8
+Directory: 21/headless/al2023
+
+Tags: 21-al2023-headful, 21.0.0-al2023-headful
+Architectures: amd64, arm64v8
+Directory: 21/headful/al2023
+
+Tags: 21-alpine3.15, 21.0.0-alpine3.15, 21-alpine3.15-full, 21-alpine3.15-jdk
+Architectures: amd64, arm64v8
+Directory: 21/jdk/alpine/3.15
+
+Tags: 21-alpine3.16, 21.0.0-alpine3.16, 21-alpine3.16-full, 21-alpine3.16-jdk
+Architectures: amd64, arm64v8
+Directory: 21/jdk/alpine/3.16
+
+Tags: 21-alpine3.17, 21.0.0-alpine3.17, 21-alpine3.17-full, 21-alpine3.17-jdk
+Architectures: amd64, arm64v8
+Directory: 21/jdk/alpine/3.17
+
+Tags: 21-alpine3.18, 21.0.0-alpine3.18, 21-alpine3.18-full, 21-alpine3.18-jdk, 21-alpine, 21.0.0-alpine, 21-alpine-full, 21-alpine-jdk
+Architectures: amd64, arm64v8
+Directory: 21/jdk/alpine/3.18
diff --git a/library/amazonlinux b/library/amazonlinux
index 3ca8e01d92..003d8ec18c 100644
--- a/library/amazonlinux
+++ b/library/amazonlinux
@@ -1,32 +1,33 @@
Maintainers: Amazon Linux (@amazonlinux),
- iliana destroyer of worlds (@iliana),
Frédérick Lefebvre (@fred-lefebvre),
- Samuel Karp (@samuelkarp),
Stewart Smith (@stewartsmith),
- Jamie Anderson (@jamieand)
+ Christopher Miller (@mysteriouspants),
+ Sumit Tomer (@sktomer),
+ Tanu Rampal (@trampal),
+ Sam Thornton (@mrthornazon),
+ Preston Carpenter (@timidger),
+ Joseph Howell-Burke (@jhowell-burke),
+ Miriam Clark (@mgclark001),
+ Ade Adetayo (@dadetayo),
+ Colin McCoy (@cmccoypdx)
GitRepo: https://github.com/amazonlinux/container-images.git
-GitCommit: 3ee6a0ae683a64b606f1f2c5b577fd43f4022d2c
+GitCommit: cc7a1876866f4056fa73a789a5b758358151c189
-Tags: 2.0.20210421.0, 2, latest
+Tags: 2023, latest, 2023.2.20230920.1
+Architectures: amd64, arm64v8
+amd64-GitFetch: refs/heads/al2023
+amd64-GitCommit: 414b5d5f6254ca8a674e04cc2f5e0e334ac77f14
+arm64v8-GitFetch: refs/heads/al2023-arm64
+arm64v8-GitCommit: da06108429da71749dfb1ed777d0bf4e066585e5
+
+Tags: 2, 2.0.20230912.0
Architectures: amd64, arm64v8
amd64-GitFetch: refs/heads/amzn2
-amd64-GitCommit: 05450487e7d8b1ac1b6d269ccde98690214dae45
+amd64-GitCommit: 758d8663f71fe6d9c26dc42a366eabdf024458ca
arm64v8-GitFetch: refs/heads/amzn2-arm64
-arm64v8-GitCommit: 95c948469d64aa3c5e3758c92bce70d4719dc04b
+arm64v8-GitCommit: 66a3740f12f9671b39bfa26501317e1b4ae48fb5
-Tags: 2.0.20210421.0-with-sources, 2-with-sources, with-sources
-Architectures: amd64, arm64v8
-amd64-GitFetch: refs/heads/amzn2-with-sources
-amd64-GitCommit: e72cb97b74ee2fd1208659acfc9918416f107312
-arm64v8-GitFetch: refs/heads/amzn2-arm64-with-sources
-arm64v8-GitCommit: 0f4368397c145df45cb1273b37c86ab088889d10
-
-Tags: 2018.03.0.20210408.0, 2018.03, 1
+Tags: 1, 2018.03, 2018.03.0.20230905.0
Architectures: amd64
amd64-GitFetch: refs/heads/2018.03
-amd64-GitCommit: e6a92d956a01831339b480ab87d3497d307c1dda
-
-Tags: 2018.03.0.20210408.0-with-sources, 2018.03-with-sources, 1-with-sources
-Architectures: amd64
-amd64-GitFetch: refs/heads/2018.03-with-sources
-amd64-GitCommit: 735edc6b14558fdd2f1f43953b4a21e3a00ffe4e
+amd64-GitCommit: bb33672fcca36770bfe1536b7773b19ca43df8da
diff --git a/library/api-firewall b/library/api-firewall
new file mode 100644
index 0000000000..7161f444ae
--- /dev/null
+++ b/library/api-firewall
@@ -0,0 +1,15 @@
+Maintainers: Ivan Novikov (@d0znpp),
+ Nikolay Tkachenko (@afr1ka)
+GitRepo: https://github.com/wallarm/api-firewall-docker.git
+
+Tags: 0.6.13, latest
+Architectures: amd64, arm64v8, i386
+GitCommit: e91a3e1f2859e57cd9f4371ba2a2308a35f2b546
+GitFetch: refs/heads/main
+Directory: 0.6.13
+
+Tags: 0.6.12
+Architectures: amd64, arm64v8, i386
+GitCommit: e91a3e1f2859e57cd9f4371ba2a2308a35f2b546
+GitFetch: refs/heads/main
+Directory: 0.6.12
diff --git a/library/arangodb b/library/arangodb
index 24758f001b..db3c0b6628 100644
--- a/library/arangodb
+++ b/library/arangodb
@@ -1,10 +1,18 @@
Maintainers: Frank Celler (@fceller), Wilfried Goesgens (@dothebart), Vadim Kondratyev (@KVS85)
GitRepo: https://github.com/arangodb/arangodb-docker
+GitFetch: refs/heads/official
-Tags: 3.6, 3.6.13
-GitCommit: 293903ae4adcf22eaafcf427076a6e62010ab1ea
-Directory: alpine/3.6.13
+Tags: 3.9, 3.9.12
+Architectures: amd64
+GitCommit: 53f958f87211657b217169c7e00847034a708cd4
+Directory: alpine/3.9.12
-Tags: 3.7, 3.7.11, latest
-GitCommit: 19dbf1a2228a04765452f4160e33fa41317a7615
-Directory: alpine/3.7.11
+Tags: 3.10, 3.10.10
+Architectures: amd64, arm64v8
+GitCommit: 5e1e58d2e5a985fe21b0747909d39eb3ccc434e2
+Directory: alpine/3.10.10
+
+Tags: 3.11, 3.11.3, latest
+Architectures: amd64, arm64v8
+GitCommit: a2086d378d6c439d95b6900c6429709e57c6f24d
+Directory: alpine/3.11.3
diff --git a/library/archlinux b/library/archlinux
index 64d4653fd9..92fbef526f 100644
--- a/library/archlinux
+++ b/library/archlinux
@@ -5,13 +5,13 @@ Maintainers: Santiago Torres-Arias (@SantiagoTorres),
Justin Kromlinger (@hashworks)
GitRepo: https://gitlab.archlinux.org/archlinux/archlinux-docker.git
-Tags: latest, base, base-20210523.0.23638
-GitCommit: e9df7b4a04dc65a1b33bcac93da6ec69dedf994a
-GitFetch: refs/tags/v20210523.0.23638
+Tags: latest, base, base-20231001.0.182270
+GitCommit: a8c000a0752f90e436cc96e097bcc3750f961164
+GitFetch: refs/tags/v20231001.0.182270
File: Dockerfile.base
-Tags: base-devel, base-devel-20210523.0.23638
-GitCommit: e9df7b4a04dc65a1b33bcac93da6ec69dedf994a
-GitFetch: refs/tags/v20210523.0.23638
+Tags: base-devel, base-devel-20231001.0.182270
+GitCommit: a8c000a0752f90e436cc96e097bcc3750f961164
+GitFetch: refs/tags/v20231001.0.182270
File: Dockerfile.base-devel
diff --git a/library/backdrop b/library/backdrop
index 4dc10a3167..6ead47a94f 100644
--- a/library/backdrop
+++ b/library/backdrop
@@ -1,16 +1,15 @@
Maintainers: Mike Pirog (@pirog),
Geoff St. Pierre (@serundeputy),
Jen Lampton (@jenlampton),
- Pol Dellaiera (@drupol),
Greg Netsas (@klonos)
GitRepo: https://github.com/backdrop-ops/backdrop-docker.git
-Tags: 1.17.3, 1.17, 1, 1.17.3-apache, 1.17-apache, 1-apache, apache, latest
+Tags: 1.25.1, 1.25, 1, 1.25.1-apache, 1.25-apache, 1-apache, apache, latest
Architectures: amd64, arm64v8
-GitCommit: b760ba970a67f3dcdc975ed8b77f915895184577
+GitCommit: 37aae82be48457f524a3cd475ea55d7c1ce0ef2c
Directory: 1/apache
-Tags: 1.17.3-fpm, 1.17-fpm, 1-fpm, fpm
+Tags: 1.25.1-fpm, 1.25-fpm, 1-fpm, fpm
Architectures: amd64, arm64v8
-GitCommit: b760ba970a67f3dcdc975ed8b77f915895184577
+GitCommit: 37aae82be48457f524a3cd475ea55d7c1ce0ef2c
Directory: 1/fpm
diff --git a/library/bash b/library/bash
index 6d6554f1f3..0de85cdc5d 100644
--- a/library/bash
+++ b/library/bash
@@ -1,59 +1,64 @@
-# this file is generated via https://github.com/tianon/docker-bash/blob/e467130f2e4d7740cd6e730cfad71e354cb53394/generate-stackbrew-library.sh
+# this file is generated via https://github.com/tianon/docker-bash/blob/a6745045c9242e54777d2af53f07524eaffbc2b9/generate-stackbrew-library.sh
Maintainers: Tianon Gravi (@tianon)
GitRepo: https://github.com/tianon/docker-bash.git
-Tags: devel-20210524, devel
+Tags: devel-20230928, devel, devel-20230928-alpine3.18, devel-alpine3.18
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: b9cde7be0b014f78fa04ddcfb1da144b3466778b
+GitCommit: b9b74f36a800f7cde9ec1f7a548acca0507ce0b5
Directory: devel
-Tags: 5.1.8, 5.1, 5, latest
+Tags: 5.2.15, 5.2, 5, latest, 5.2.15-alpine3.18, 5.2-alpine3.18, 5-alpine3.18, alpine3.18
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: e7aec31e1427abc0124fbfc42db73786ef040c98
+GitCommit: fa56f3014aa4901e889d12910a711d1adc0fc6a6
+Directory: 5.2
+
+Tags: 5.1.16, 5.1, 5.1.16-alpine3.18, 5.1-alpine3.18
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: 24c782c1b77287b0cea03a00ba43498276bf8182
Directory: 5.1
-Tags: 5.0.18, 5.0
+Tags: 5.0.18, 5.0, 5.0.18-alpine3.18, 5.0-alpine3.18
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 7d80c7cc5d829b6be9e04b6b2cba98a228fb67db
+GitCommit: eb30d9e65ce00810fcc7e984f5a7d554433aaa34
Directory: 5.0
-Tags: 4.4.23, 4.4, 4
+Tags: 4.4.23, 4.4, 4, 4.4.23-alpine3.18, 4.4-alpine3.18, 4-alpine3.18
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 7d80c7cc5d829b6be9e04b6b2cba98a228fb67db
+GitCommit: a4249001da00598147e31c6dae1d2f873ea133d6
Directory: 4.4
-Tags: 4.3.48, 4.3
+Tags: 4.3.48, 4.3, 4.3.48-alpine3.18, 4.3-alpine3.18
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 7d80c7cc5d829b6be9e04b6b2cba98a228fb67db
+GitCommit: 9d96b3dd25eb51833e9436102282379a6926d4e1
Directory: 4.3
-Tags: 4.2.53, 4.2
+Tags: 4.2.53, 4.2, 4.2.53-alpine3.18, 4.2-alpine3.18
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 7d80c7cc5d829b6be9e04b6b2cba98a228fb67db
+GitCommit: 26bc148c4296705a6b7b66591d9de286331db0e3
Directory: 4.2
-Tags: 4.1.17, 4.1
+Tags: 4.1.17, 4.1, 4.1.17-alpine3.18, 4.1-alpine3.18
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 7d80c7cc5d829b6be9e04b6b2cba98a228fb67db
+GitCommit: fb857333ccbaaa26a237578d18b76aade04ff83b
Directory: 4.1
-Tags: 4.0.44, 4.0
+Tags: 4.0.44, 4.0, 4.0.44-alpine3.18, 4.0-alpine3.18
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 7d80c7cc5d829b6be9e04b6b2cba98a228fb67db
+GitCommit: ee076229de93378de38a2b8e408345e5f5f28ddc
Directory: 4.0
-Tags: 3.2.57, 3.2, 3
+Tags: 3.2.57, 3.2, 3, 3.2.57-alpine3.18, 3.2-alpine3.18, 3-alpine3.18
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 7d80c7cc5d829b6be9e04b6b2cba98a228fb67db
+GitCommit: 0d587a69276bb18347f735f26300099a95b8c330
Directory: 3.2
-Tags: 3.1.23, 3.1
+Tags: 3.1.23, 3.1, 3.1.23-alpine3.18, 3.1-alpine3.18
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 7d80c7cc5d829b6be9e04b6b2cba98a228fb67db
+GitCommit: b83109dc6ccacd01778fd2377f57ada886f0541a
Directory: 3.1
-Tags: 3.0.22, 3.0
+Tags: 3.0.22, 3.0, 3.0.22-alpine3.18, 3.0-alpine3.18
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 7d80c7cc5d829b6be9e04b6b2cba98a228fb67db
+GitCommit: 2642c1a5b7d148d3486b739b68724bd0d234902c
Directory: 3.0
diff --git a/library/bonita b/library/bonita
index b09a25f14a..e92b929edc 100644
--- a/library/bonita
+++ b/library/bonita
@@ -1,24 +1,24 @@
-Maintainers: Baptiste Mesta (@baptistemesta),
- Danila Mazour (@danila-m),
+Maintainers: Danila Mazour (@danila-m),
Emmanuel Duchastenier (@educhastenier),
Pascal Garcia (@passga),
Anthony Birembaut (@abirembaut),
Dumitru Corini (@DumitruCorini)
Architectures: amd64, arm64v8, ppc64le
-
-
-
-Tags: 7.10.6, 7.10
-GitRepo: https://github.com/Bonitasoft-Community/docker_bonita.git
-GitCommit: e6f9f1a5e57c35bbd833c9441a639f326dffb7d5
-Directory: 7.10
-
-Tags: 7.11.4, 7.11
GitRepo: https://github.com/bonitasoft/bonita-distrib.git
-GitCommit: 231024c8290a9aa31a45b758a0765a684c21ed21
Directory: docker
-Tags: 2021.1, 7.12.1, 7.12, latest
-GitRepo: https://github.com/bonitasoft/bonita-distrib.git
-GitCommit: c9b816249504017bb3418252bf58ec9d4fc3e86e
-Directory: docker
\ No newline at end of file
+Tags: 2021.2-u0, 2021.2, 7.13.0, 7.13
+GitFetch: refs/heads/docker/2021.2
+GitCommit: a1d9ee5e31d38958aa553cc7f9d465f1151d902f
+
+Tags: 2022.1-u0, 2022.1, 7.14.0, 7.14
+GitFetch: refs/heads/master
+GitCommit: 694bf79347add872f8c6a4c0a7f5c3ef12c31dc8
+
+Tags: 2022.2-u0, 2022.2, 7.15.0, 7.15
+GitFetch: refs/heads/master
+GitCommit: 21c0e51634e836feaf910e8e3d6e95de200e1814
+
+Tags: 2023.1-u0, 2023.1, 8.0.0, 8.0, latest
+GitFetch: refs/heads/master
+GitCommit: 0848e9716e3ff36a15f03e8ffe5bfd25c273cc5b
diff --git a/library/buildpack-deps b/library/buildpack-deps
index c6d6dcbdc3..adbabc4b27 100644
--- a/library/buildpack-deps
+++ b/library/buildpack-deps
@@ -1,87 +1,87 @@
-# this file is generated via https://github.com/docker-library/buildpack-deps/blob/65d69325ad741cea6dee20781c1faaab2e003d87/generate-stackbrew-library.sh
+# this file is generated via https://github.com/docker-library/buildpack-deps/blob/4f766db54f5179aca1a841e4036d6d6746ac79d9/generate-stackbrew-library.sh
Maintainers: Tianon Gravi (@tianon),
Joseph Ferguson (@yosifkit)
GitRepo: https://github.com/docker-library/buildpack-deps.git
-Tags: bullseye-curl, testing-curl
+Tags: bookworm-curl, stable-curl, curl
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: 98a5ab81d47a106c458cdf90733df0ee8beea06c
+GitCommit: 3e18c3af1f5dce6a48abf036857f9097b6bd79cc
+Directory: debian/bookworm/curl
+
+Tags: bookworm-scm, stable-scm, scm
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: 84e7e46026131a108a6480e5ed2969e8acf2d4e2
+Directory: debian/bookworm/scm
+
+Tags: bookworm, stable, latest
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: 84e7e46026131a108a6480e5ed2969e8acf2d4e2
+Directory: debian/bookworm
+
+Tags: bullseye-curl, oldstable-curl
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: 93d6db0797f91ab674535553b7e0e762941a02d0
Directory: debian/bullseye/curl
-Tags: bullseye-scm, testing-scm
+Tags: bullseye-scm, oldstable-scm
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
GitCommit: 65d69325ad741cea6dee20781c1faaab2e003d87
Directory: debian/bullseye/scm
-Tags: bullseye, testing
+Tags: bullseye, oldstable
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
GitCommit: 65d69325ad741cea6dee20781c1faaab2e003d87
Directory: debian/bullseye
-Tags: buster-curl, stable-curl, curl
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: 98a5ab81d47a106c458cdf90733df0ee8beea06c
+Tags: buster-curl, oldoldstable-curl
+Architectures: amd64, arm32v7, arm64v8, i386
+GitCommit: 93d6db0797f91ab674535553b7e0e762941a02d0
Directory: debian/buster/curl
-Tags: buster-scm, stable-scm, scm
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+Tags: buster-scm, oldoldstable-scm
+Architectures: amd64, arm32v7, arm64v8, i386
GitCommit: 65d69325ad741cea6dee20781c1faaab2e003d87
Directory: debian/buster/scm
-Tags: buster, stable, latest
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+Tags: buster, oldoldstable
+Architectures: amd64, arm32v7, arm64v8, i386
GitCommit: 65d69325ad741cea6dee20781c1faaab2e003d87
Directory: debian/buster
Tags: sid-curl, unstable-curl
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: 98a5ab81d47a106c458cdf90733df0ee8beea06c
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, riscv64, s390x
+GitCommit: 3e18c3af1f5dce6a48abf036857f9097b6bd79cc
Directory: debian/sid/curl
Tags: sid-scm, unstable-scm
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, riscv64, s390x
GitCommit: 65d69325ad741cea6dee20781c1faaab2e003d87
Directory: debian/sid/scm
Tags: sid, unstable
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, riscv64, s390x
GitCommit: 65d69325ad741cea6dee20781c1faaab2e003d87
Directory: debian/sid
-Tags: stretch-curl, oldstable-curl
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386
-GitCommit: 93d2a6f64abe6787b7dd25c7d5322af1fa2e3f55
-Directory: debian/stretch/curl
+Tags: trixie-curl, testing-curl
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: f4fae1079681a664db5a84c0b83621dd7c115996
+Directory: debian/trixie/curl
-Tags: stretch-scm, oldstable-scm
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386
-GitCommit: 65d69325ad741cea6dee20781c1faaab2e003d87
-Directory: debian/stretch/scm
+Tags: trixie-scm, testing-scm
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: 443a8d3c6e53dbd17c55070de7de850f865ba6eb
+Directory: debian/trixie/scm
-Tags: stretch, oldstable
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386
-GitCommit: 65d69325ad741cea6dee20781c1faaab2e003d87
-Directory: debian/stretch
-
-Tags: bionic-curl, 18.04-curl
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 98a5ab81d47a106c458cdf90733df0ee8beea06c
-Directory: ubuntu/bionic/curl
-
-Tags: bionic-scm, 18.04-scm
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 65d69325ad741cea6dee20781c1faaab2e003d87
-Directory: ubuntu/bionic/scm
-
-Tags: bionic, 18.04
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 98a5ab81d47a106c458cdf90733df0ee8beea06c
-Directory: ubuntu/bionic
+Tags: trixie, testing
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: 443a8d3c6e53dbd17c55070de7de850f865ba6eb
+Directory: debian/trixie
Tags: focal-curl, 20.04-curl
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: 98a5ab81d47a106c458cdf90733df0ee8beea06c
+GitCommit: 93d6db0797f91ab674535553b7e0e762941a02d0
Directory: ubuntu/focal/curl
Tags: focal-scm, 20.04-scm
@@ -94,62 +94,47 @@ Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
GitCommit: 98a5ab81d47a106c458cdf90733df0ee8beea06c
Directory: ubuntu/focal
-Tags: groovy-curl, 20.10-curl
+Tags: jammy-curl, 22.04-curl
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: 98a5ab81d47a106c458cdf90733df0ee8beea06c
-Directory: ubuntu/groovy/curl
+GitCommit: 93d6db0797f91ab674535553b7e0e762941a02d0
+Directory: ubuntu/jammy/curl
-Tags: groovy-scm, 20.10-scm
+Tags: jammy-scm, 22.04-scm
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: 65d69325ad741cea6dee20781c1faaab2e003d87
-Directory: ubuntu/groovy/scm
+GitCommit: e2fc735283ba4e96efc3e4acf2b74bc3eccbf327
+Directory: ubuntu/jammy/scm
-Tags: groovy, 20.10
+Tags: jammy, 22.04
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: 98a5ab81d47a106c458cdf90733df0ee8beea06c
-Directory: ubuntu/groovy
+GitCommit: e2fc735283ba4e96efc3e4acf2b74bc3eccbf327
+Directory: ubuntu/jammy
-Tags: hirsute-curl, 21.04-curl
+Tags: lunar-curl, 23.04-curl
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: 98a5ab81d47a106c458cdf90733df0ee8beea06c
-Directory: ubuntu/hirsute/curl
+GitCommit: 3e18c3af1f5dce6a48abf036857f9097b6bd79cc
+Directory: ubuntu/lunar/curl
-Tags: hirsute-scm, 21.04-scm
+Tags: lunar-scm, 23.04-scm
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: 98a5ab81d47a106c458cdf90733df0ee8beea06c
-Directory: ubuntu/hirsute/scm
+GitCommit: 31e15bc4a2352c20998e5da6bd8aaa727fd19d06
+Directory: ubuntu/lunar/scm
-Tags: hirsute, 21.04
+Tags: lunar, 23.04
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: 98a5ab81d47a106c458cdf90733df0ee8beea06c
-Directory: ubuntu/hirsute
+GitCommit: 31e15bc4a2352c20998e5da6bd8aaa727fd19d06
+Directory: ubuntu/lunar
-Tags: impish-curl, 21.10-curl
+Tags: mantic-curl, 23.10-curl
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: fae040f3db68991f178f0a9631a03ca9837f5647
-Directory: ubuntu/impish/curl
+GitCommit: ba367c3a52946cee45274b62f7f8b27e07807289
+Directory: ubuntu/mantic/curl
-Tags: impish-scm, 21.10-scm
+Tags: mantic-scm, 23.10-scm
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: fae040f3db68991f178f0a9631a03ca9837f5647
-Directory: ubuntu/impish/scm
+GitCommit: ba367c3a52946cee45274b62f7f8b27e07807289
+Directory: ubuntu/mantic/scm
-Tags: impish, 21.10
+Tags: mantic, 23.10
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: fae040f3db68991f178f0a9631a03ca9837f5647
-Directory: ubuntu/impish
-
-Tags: xenial-curl, 16.04-curl
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 93d2a6f64abe6787b7dd25c7d5322af1fa2e3f55
-Directory: ubuntu/xenial/curl
-
-Tags: xenial-scm, 16.04-scm
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 65d69325ad741cea6dee20781c1faaab2e003d87
-Directory: ubuntu/xenial/scm
-
-Tags: xenial, 16.04
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 98a5ab81d47a106c458cdf90733df0ee8beea06c
-Directory: ubuntu/xenial
+GitCommit: ba367c3a52946cee45274b62f7f8b27e07807289
+Directory: ubuntu/mantic
diff --git a/library/busybox b/library/busybox
index 5a506b13fd..655b60007a 100644
--- a/library/busybox
+++ b/library/busybox
@@ -1,58 +1,86 @@
-# this file is generated via https://github.com/docker-library/busybox/blob/4c1cc3e2d43b6d10c9cd58d69f01f7a5aab1860e/generate-stackbrew-library.sh
+# this file is generated via https://github.com/docker-library/busybox/blob/d0874f19ca42fc0600e490039aa87877529fd982/generate-stackbrew-library.sh
Maintainers: Tianon Gravi (@tianon),
- Joseph Ferguson (@yosifkit),
- Jérôme Petazzoni (@jpetazzo)
+ Joseph Ferguson (@yosifkit)
GitRepo: https://github.com/docker-library/busybox.git
-GitCommit: 4c1cc3e2d43b6d10c9cd58d69f01f7a5aab1860e
+GitCommit: d0874f19ca42fc0600e490039aa87877529fd982
# https://github.com/docker-library/busybox/tree/dist-amd64
amd64-GitFetch: refs/heads/dist-amd64
-amd64-GitCommit: 6a3fa4f3ee1437da18f6f017b75e7799b1ae910b
+amd64-GitCommit: 089e2f966d5db5cbc2f6ea1b5f7e2a92d15a07b3
# https://github.com/docker-library/busybox/tree/dist-arm32v5
arm32v5-GitFetch: refs/heads/dist-arm32v5
-arm32v5-GitCommit: 7ba4db1c418f6ee955d47feadbfaa4421d6f9358
+arm32v5-GitCommit: d8159091d0979f96b6b9a05a6f6540fe3512bdc1
# https://github.com/docker-library/busybox/tree/dist-arm32v6
arm32v6-GitFetch: refs/heads/dist-arm32v6
-arm32v6-GitCommit: ac3117388507e850afc3e3f3661aa5a67ddb005f
+arm32v6-GitCommit: f7081677dd0cd1d0524a988dd65c0ffb11e49c8f
# https://github.com/docker-library/busybox/tree/dist-arm32v7
arm32v7-GitFetch: refs/heads/dist-arm32v7
-arm32v7-GitCommit: 1c90f843655937f14f4311393f83e999b84a854e
+arm32v7-GitCommit: e56aee48bd5689c21a2d00f792c11e827e6441a2
# https://github.com/docker-library/busybox/tree/dist-arm64v8
arm64v8-GitFetch: refs/heads/dist-arm64v8
-arm64v8-GitCommit: d099efc0995072b40690aca7ae12b1153d86d4b8
+arm64v8-GitCommit: 62541b1cfc447a3752dcd381366298218cfe4ad6
# https://github.com/docker-library/busybox/tree/dist-i386
i386-GitFetch: refs/heads/dist-i386
-i386-GitCommit: 11fa6cd31028cbe8ecd00e34b4714c6cd11005d8
+i386-GitCommit: 101cedebd5727c62a29afb4cbf5422e1c8e1bfa7
# https://github.com/docker-library/busybox/tree/dist-mips64le
mips64le-GitFetch: refs/heads/dist-mips64le
-mips64le-GitCommit: 809376c5217a280406d2f8738655be68f4073638
+mips64le-GitCommit: dbabd02cca3beebc93c8cb9b7110acf2d5e58f27
# https://github.com/docker-library/busybox/tree/dist-ppc64le
ppc64le-GitFetch: refs/heads/dist-ppc64le
-ppc64le-GitCommit: 3556e81fab641ab84ead9635e508f5e321a77c35
+ppc64le-GitCommit: 9a6d19780f408836ce21748fc196559af9c0b1b9
+# https://github.com/docker-library/busybox/tree/dist-riscv64
+riscv64-GitFetch: refs/heads/dist-riscv64
+riscv64-GitCommit: bf58161f45bb69186efaf530bcfe14903cac3de0
# https://github.com/docker-library/busybox/tree/dist-s390x
s390x-GitFetch: refs/heads/dist-s390x
-s390x-GitCommit: 2003d909bde49b85d0684909bec5e7cfdec48d67
+s390x-GitCommit: 14422e010b735d1a8012bf2d429eab1551e7c527
-Tags: 1.33.1-uclibc, 1.33-uclibc, 1-uclibc, stable-uclibc, uclibc
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le
-Directory: stable/uclibc
-
-Tags: 1.33.1-glibc, 1.33-glibc, 1-glibc, stable-glibc, glibc
+Tags: 1.36.1-glibc, 1.36-glibc, 1-glibc, stable-glibc, glibc
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-Directory: stable/glibc
+Directory: latest/glibc
-Tags: 1.33.1-musl, 1.33-musl, 1-musl, stable-musl, musl
+Tags: 1.36.1-uclibc, 1.36-uclibc, 1-uclibc, stable-uclibc, uclibc
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, riscv64
+Directory: latest/uclibc
+
+Tags: 1.36.1-musl, 1.36-musl, 1-musl, stable-musl, musl
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-Directory: stable/musl
+Directory: latest/musl
-Tags: 1.33.1, 1.33, 1, stable, latest
-Architectures: amd64, arm32v5, arm32v6, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-amd64-Directory: stable/uclibc
-arm32v5-Directory: stable/uclibc
-arm32v6-Directory: stable/musl
-arm32v7-Directory: stable/uclibc
-arm64v8-Directory: stable/uclibc
-i386-Directory: stable/uclibc
-mips64le-Directory: stable/uclibc
-ppc64le-Directory: stable/glibc
-s390x-Directory: stable/glibc
+Tags: 1.36.1, 1.36, 1, stable, latest
+Architectures: amd64, arm32v5, arm32v6, arm32v7, arm64v8, i386, mips64le, ppc64le, riscv64, s390x
+amd64-Directory: latest/glibc
+arm32v5-Directory: latest/glibc
+arm32v6-Directory: latest/musl
+arm32v7-Directory: latest/glibc
+arm64v8-Directory: latest/glibc
+i386-Directory: latest/glibc
+mips64le-Directory: latest/glibc
+ppc64le-Directory: latest/glibc
+riscv64-Directory: latest/uclibc
+s390x-Directory: latest/glibc
+
+Tags: 1.35.0-glibc, 1.35-glibc
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+Directory: latest-1/glibc
+
+Tags: 1.35.0-uclibc, 1.35-uclibc
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, riscv64
+Directory: latest-1/uclibc
+
+Tags: 1.35.0-musl, 1.35-musl
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+Directory: latest-1/musl
+
+Tags: 1.35.0, 1.35
+Architectures: amd64, arm32v5, arm32v6, arm32v7, arm64v8, i386, mips64le, ppc64le, riscv64, s390x
+amd64-Directory: latest-1/glibc
+arm32v5-Directory: latest-1/glibc
+arm32v6-Directory: latest-1/musl
+arm32v7-Directory: latest-1/glibc
+arm64v8-Directory: latest-1/glibc
+i386-Directory: latest-1/glibc
+mips64le-Directory: latest-1/glibc
+ppc64le-Directory: latest-1/glibc
+riscv64-Directory: latest-1/uclibc
+s390x-Directory: latest-1/glibc
diff --git a/library/caddy b/library/caddy
index 12eebaf5be..dbb27d632e 100644
--- a/library/caddy
+++ b/library/caddy
@@ -1,97 +1,51 @@
# this file is generated with gomplate:
-# template: https://github.com/caddyserver/caddy-docker/blob/c74bdca53a1efd5195a9c35005e5515afb5feeff/stackbrew.tmpl
-# config context: https://github.com/caddyserver/caddy-docker/blob/58a04bc3896ca1990624e90616fe9f794a5d2ba1/stackbrew-config.yaml
+# template: https://github.com/caddyserver/caddy-docker/blob/a82cbc5b1bf43757f718d8b21adcca6a0df560c7/stackbrew.tmpl
+# config context: https://github.com/caddyserver/caddy-docker/blob/a91e8f29f604a9ac547afb3a8190d170c1f2c494/stackbrew-config.yaml
Maintainers: Dave Henderson (@hairyhenderson)
-Tags: 2.3.0-alpine
-SharedTags: 2.3.0
+Tags: 2.7.4-alpine, 2.7-alpine, 2-alpine, alpine
+SharedTags: 2.7.4, 2.7, 2, latest
GitRepo: https://github.com/caddyserver/caddy-docker.git
-Directory: 2.3/alpine
-GitCommit: 2093c4a571bfe356447008d229195eb7063232b2
+Directory: 2.7/alpine
+GitCommit: a91e8f29f604a9ac547afb3a8190d170c1f2c494
Architectures: amd64, arm64v8, arm32v6, arm32v7, ppc64le, s390x
-Tags: 2.3.0-builder-alpine
-SharedTags: 2.3.0-builder
+Tags: 2.7.4-builder-alpine, 2.7-builder-alpine, 2-builder-alpine, builder-alpine
+SharedTags: 2.7.4-builder, 2.7-builder, 2-builder, builder
GitRepo: https://github.com/caddyserver/caddy-docker.git
-Directory: 2.3/builder
-GitCommit: d1a09c6308adb9397a855fb7a591dd8d29240c4f
+Directory: 2.7/builder
+GitCommit: a91e8f29f604a9ac547afb3a8190d170c1f2c494
Architectures: amd64, arm64v8, arm32v6, arm32v7, ppc64le, s390x
-Tags: 2.3.0-windowsservercore-1809
-SharedTags: 2.3.0-windowsservercore, 2.3.0
+Tags: 2.7.4-windowsservercore-1809, 2.7-windowsservercore-1809, 2-windowsservercore-1809, windowsservercore-1809
+SharedTags: 2.7.4-windowsservercore, 2.7-windowsservercore, 2-windowsservercore, windowsservercore, 2.7.4, 2.7, 2, latest
GitRepo: https://github.com/caddyserver/caddy-docker.git
-Directory: 2.3/windows/1809
-GitCommit: 2093c4a571bfe356447008d229195eb7063232b2
+Directory: 2.7/windows/1809
+GitCommit: a91e8f29f604a9ac547afb3a8190d170c1f2c494
Architectures: windows-amd64
Constraints: windowsservercore-1809
-Tags: 2.3.0-windowsservercore-ltsc2016
-SharedTags: 2.3.0-windowsservercore, 2.3.0
+Tags: 2.7.4-windowsservercore-ltsc2022, 2.7-windowsservercore-ltsc2022, 2-windowsservercore-ltsc2022, windowsservercore-ltsc2022
+SharedTags: 2.7.4-windowsservercore, 2.7-windowsservercore, 2-windowsservercore, windowsservercore, 2.7.4, 2.7, 2, latest
GitRepo: https://github.com/caddyserver/caddy-docker.git
-Directory: 2.3/windows/ltsc2016
-GitCommit: 2093c4a571bfe356447008d229195eb7063232b2
+Directory: 2.7/windows/ltsc2022
+GitCommit: a91e8f29f604a9ac547afb3a8190d170c1f2c494
Architectures: windows-amd64
-Constraints: windowsservercore-ltsc2016
+Constraints: windowsservercore-ltsc2022
-Tags: 2.3.0-builder-windowsservercore-1809
-SharedTags: 2.3.0-builder
+Tags: 2.7.4-builder-windowsservercore-1809, 2.7-builder-windowsservercore-1809, 2-builder-windowsservercore-1809, builder-windowsservercore-1809
+SharedTags: 2.7.4-builder, 2.7-builder, 2-builder, builder
GitRepo: https://github.com/caddyserver/caddy-docker.git
-Directory: 2.3/windows-builder/1809
-GitCommit: d1a09c6308adb9397a855fb7a591dd8d29240c4f
+Directory: 2.7/windows-builder/1809
+GitCommit: a91e8f29f604a9ac547afb3a8190d170c1f2c494
Architectures: windows-amd64
Constraints: windowsservercore-1809
-Tags: 2.3.0-builder-windowsservercore-ltsc2016
-SharedTags: 2.3.0-builder
+Tags: 2.7.4-builder-windowsservercore-ltsc2022, 2.7-builder-windowsservercore-ltsc2022, 2-builder-windowsservercore-ltsc2022, builder-windowsservercore-ltsc2022
+SharedTags: 2.7.4-builder, 2.7-builder, 2-builder, builder
GitRepo: https://github.com/caddyserver/caddy-docker.git
-Directory: 2.3/windows-builder/ltsc2016
-GitCommit: d1a09c6308adb9397a855fb7a591dd8d29240c4f
+Directory: 2.7/windows-builder/ltsc2022
+GitCommit: a91e8f29f604a9ac547afb3a8190d170c1f2c494
Architectures: windows-amd64
-Constraints: windowsservercore-ltsc2016
-
-Tags: 2.4.1-alpine, 2-alpine, alpine
-SharedTags: 2.4.1, 2, latest
-GitRepo: https://github.com/caddyserver/caddy-docker.git
-Directory: 2.4/alpine
-GitCommit: 58a04bc3896ca1990624e90616fe9f794a5d2ba1
-Architectures: amd64, arm64v8, arm32v6, arm32v7, ppc64le, s390x
-
-Tags: 2.4.1-builder-alpine, 2-builder-alpine, builder-alpine
-SharedTags: 2.4.1-builder, 2-builder, builder
-GitRepo: https://github.com/caddyserver/caddy-docker.git
-Directory: 2.4/builder
-GitCommit: 58a04bc3896ca1990624e90616fe9f794a5d2ba1
-Architectures: amd64, arm64v8, arm32v6, arm32v7, ppc64le, s390x
-
-Tags: 2.4.1-windowsservercore-1809, 2-windowsservercore-1809, windowsservercore-1809
-SharedTags: 2.4.1-windowsservercore, 2-windowsservercore, windowsservercore, 2.4.1, 2, latest
-GitRepo: https://github.com/caddyserver/caddy-docker.git
-Directory: 2.4/windows/1809
-GitCommit: 58a04bc3896ca1990624e90616fe9f794a5d2ba1
-Architectures: windows-amd64
-Constraints: windowsservercore-1809
-
-Tags: 2.4.1-windowsservercore-ltsc2016, 2-windowsservercore-ltsc2016, windowsservercore-ltsc2016
-SharedTags: 2.4.1-windowsservercore, 2-windowsservercore, windowsservercore, 2.4.1, 2, latest
-GitRepo: https://github.com/caddyserver/caddy-docker.git
-Directory: 2.4/windows/ltsc2016
-GitCommit: 58a04bc3896ca1990624e90616fe9f794a5d2ba1
-Architectures: windows-amd64
-Constraints: windowsservercore-ltsc2016
-
-Tags: 2.4.1-builder-windowsservercore-1809, 2-builder-windowsservercore-1809, builder-windowsservercore-1809
-SharedTags: 2.4.1-builder, 2-builder, builder
-GitRepo: https://github.com/caddyserver/caddy-docker.git
-Directory: 2.4/windows-builder/1809
-GitCommit: 58a04bc3896ca1990624e90616fe9f794a5d2ba1
-Architectures: windows-amd64
-Constraints: windowsservercore-1809
-
-Tags: 2.4.1-builder-windowsservercore-ltsc2016, 2-builder-windowsservercore-ltsc2016, builder-windowsservercore-ltsc2016
-SharedTags: 2.4.1-builder, 2-builder, builder
-GitRepo: https://github.com/caddyserver/caddy-docker.git
-Directory: 2.4/windows-builder/ltsc2016
-GitCommit: 58a04bc3896ca1990624e90616fe9f794a5d2ba1
-Architectures: windows-amd64
-Constraints: windowsservercore-ltsc2016
+Constraints: windowsservercore-ltsc2022
diff --git a/library/cassandra b/library/cassandra
index efad6c3ea1..ae8e64f37c 100644
--- a/library/cassandra
+++ b/library/cassandra
@@ -1,30 +1,30 @@
-# this file is generated via https://github.com/docker-library/cassandra/blob/c191e1ac6c2fe9973c7ac1f106d395d03ed05eba/generate-stackbrew-library.sh
+# this file is generated via https://github.com/docker-library/cassandra/blob/f3414c2a8296f199b5a23b5c716cbe65d3856a1c/generate-stackbrew-library.sh
Maintainers: Tianon Gravi (@tianon),
Joseph Ferguson (@yosifkit)
GitRepo: https://github.com/docker-library/cassandra.git
-Tags: 4.0-rc1, 4.0
-Architectures: amd64, arm32v7, arm64v8, ppc64le
-GitCommit: f00a725cc0189ef166ac1d893227651bd81a6996
+Tags: 5.0-alpha1, 5.0
+Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
+GitCommit: 01dffce9d5d205f61733cbffaaf8973cc586219b
+Directory: 5.0
+
+Tags: 4.1.3, 4.1, 4, latest
+Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
+GitCommit: 44614387cda4278e477056c24cde3070f679a32a
+Directory: 4.1
+
+Tags: 4.0.11, 4.0
+Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
+GitCommit: b57fae57e886db7b46c0851ed761b6b0a260f065
Directory: 4.0
-Tags: 3.11.10, 3.11, 3, latest
+Tags: 3.11.16, 3.11, 3
Architectures: amd64, arm32v7, arm64v8, ppc64le
-GitCommit: 03bef93db2ff4b5a3cbc954618f08c44ddcb7568
+GitCommit: 76e413ded2e5eb2c61d97296d01400d2fff2d6d5
Directory: 3.11
-Tags: 3.0.24, 3.0
+Tags: 3.0.29, 3.0
Architectures: amd64, arm32v7, arm64v8, ppc64le
-GitCommit: 03bef93db2ff4b5a3cbc954618f08c44ddcb7568
+GitCommit: 0472adffa9e3b3361f2dbe4b089592d1cb84d36d
Directory: 3.0
-
-Tags: 2.2.19, 2.2, 2
-Architectures: amd64, arm32v7, ppc64le
-GitCommit: 03bef93db2ff4b5a3cbc954618f08c44ddcb7568
-Directory: 2.2
-
-Tags: 2.1.22, 2.1
-Architectures: amd64, arm64v8, ppc64le
-GitCommit: 03bef93db2ff4b5a3cbc954618f08c44ddcb7568
-Directory: 2.1
diff --git a/library/centos b/library/centos
index 29d5a483ec..ca4749f0bf 100644
--- a/library/centos
+++ b/library/centos
@@ -2,15 +2,6 @@ Maintainers: The CentOS Project (@CentOS)
GitRepo: https://github.com/CentOS/sig-cloud-instance-images.git
Directory: docker
-Tags: latest, centos8, 8, centos8.3.2011, 8.3.2011
-GitFetch: refs/heads/CentOS-8-x86_64
-GitCommit: ccd17799397027acf9ee6d660e75b8fce4c852e8
-arm64v8-GitFetch: refs/heads/CentOS-8-aarch64
-arm64v8-GitCommit: 88b3ec90d3e01f637cab87ad124e8917f60839af
-ppc64le-GitFetch: refs/heads/CentOS-8-ppc64le
-ppc64le-GitCommit: cf1c88f0b706f6c6192e4e80ec8ec5be5c499eaa
-Architectures: amd64, arm64v8, ppc64le
-
Tags: centos7, 7, centos7.9.2009, 7.9.2009
GitFetch: refs/heads/CentOS-7-x86_64
GitCommit: b2d195220e1c5b181427c3172829c23ab9cd27eb
@@ -23,14 +14,3 @@ ppc64le-GitCommit: a8e4f3da8300d18da4c0e5256d64763965e66810
i386-GitFetch: refs/heads/CentOS-7-i386
i386-GitCommit: 206003c215684a869a686cf9ea5f9697e577c546
Architectures: amd64, arm64v8, arm32v7, ppc64le, i386
-
-Tags: centos6, 6
-GitFetch: refs/heads/CentOS-6
-GitCommit: 23b05f6a35520ebf338e4df918e4952830da068b
-i386-GitFetch: refs/heads/CentOS-6i386
-i386-GitCommit: 53cd22704a89c6ed59d43e2e70e63316026af4f7
-Architectures: amd64, i386
-
-Tags: centos6.10, 6.10
-GitFetch: refs/heads/CentOS-6.10
-GitCommit: da050e2fc6c28d8d72d8bf78c49537247b5ddf76
diff --git a/library/chronograf b/library/chronograf
index acdb90a2b5..92907d52e2 100644
--- a/library/chronograf
+++ b/library/chronograf
@@ -1,14 +1,8 @@
Maintainers: Jonathan A. Sternberg (@jsternberg),
- Bucky Schwarz (@hoorayimhelping)
-GitRepo: git://github.com/influxdata/influxdata-docker
-GitCommit: 6bcdcc7b0d7dba08fab467648639986370cf32d0
-
-Tags: 1.6, 1.6.2
-Architectures: amd64, arm32v7, arm64v8
-Directory: chronograf/1.6
-
-Tags: 1.6-alpine, 1.6.2-alpine
-Directory: chronograf/1.6/alpine
+ Bucky Schwarz (@hoorayimhelping),
+ Brandon Pfeifer (@bnpfeife)
+GitRepo: https://github.com/influxdata/influxdata-docker
+GitCommit: 625db807731c184f4ec5b0e1b66995700022256b
Tags: 1.7, 1.7.17
Architectures: amd64, arm32v7, arm64v8
@@ -17,9 +11,23 @@ Directory: chronograf/1.7
Tags: 1.7-alpine, 1.7.17-alpine
Directory: chronograf/1.7/alpine
-Tags: 1.8, 1.8.8, latest
+Tags: 1.8, 1.8.10
Architectures: amd64, arm32v7, arm64v8
Directory: chronograf/1.8
-Tags: 1.8-alpine, 1.8.8-alpine, alpine
+Tags: 1.8-alpine, 1.8.10-alpine
Directory: chronograf/1.8/alpine
+
+Tags: 1.9, 1.9.4
+Architectures: amd64, arm32v7, arm64v8
+Directory: chronograf/1.9
+
+Tags: 1.9-alpine, 1.9.4-alpine
+Directory: chronograf/1.9/alpine
+
+Tags: 1.10, 1.10.1, latest
+Architectures: amd64, arm32v7, arm64v8
+Directory: chronograf/1.10
+
+Tags: 1.10-alpine, 1.10.1-alpine, alpine
+Directory: chronograf/1.10/alpine
diff --git a/library/cirros b/library/cirros
index d289924644..faa0f70456 100644
--- a/library/cirros
+++ b/library/cirros
@@ -3,12 +3,11 @@
Maintainers: Tianon Gravi (@tianon)
GitRepo: https://github.com/tianon/docker-brew-cirros.git
GitFetch: refs/heads/dist
-GitCommit: 6b155af1eeb835ab219369aeec45139b2f4ba11b
-Architectures: amd64, arm32v5, arm64v8, i386, ppc64le
+GitCommit: e8833253f108046f977fbcecd7f02170bd20d357
+Architectures: amd64, arm32v7, arm64v8, ppc64le
amd64-Directory: arches/amd64
-arm32v5-Directory: arches/arm32v5
+arm32v7-Directory: arches/arm32v7
arm64v8-Directory: arches/arm64v8
-i386-Directory: arches/i386
ppc64le-Directory: arches/ppc64le
-Tags: 0.5.2, 0.5, 0, latest
+Tags: 0.6.2, 0.6, 0, latest
diff --git a/library/clearlinux b/library/clearlinux
index bb8d356aea..e0d8b94dc1 100644
--- a/library/clearlinux
+++ b/library/clearlinux
@@ -2,5 +2,5 @@ Maintainers: William Douglas (@bryteise)
GitRepo: https://github.com/clearlinux/docker-brew-clearlinux.git
Tags: latest, base
-GitCommit: f20c51efb61e553f19d5cfc52b1176ecee30e38d
-GitFetch: refs/tags/clear-linux-34640
+GitCommit: abeee829f47f6474b3c4a61fa2e2b88b732dbdd5
+GitFetch: refs/heads/base-40030
diff --git a/library/clojure b/library/clojure
index c1a4968ab2..387d96bf44 100644
--- a/library/clojure
+++ b/library/clojure
@@ -1,98 +1,167 @@
Maintainers: Paul Lam (@Quantisan),
Wes Morgan (@cap10morgan)
-Architectures: amd64, arm64v8
+Architectures: arm64v8, amd64
GitRepo: https://github.com/Quantisan/docker-clojure.git
-GitCommit: 7c34b2382830efb60c351c50b509f049e80ffb0a
+GitCommit: 8af52eb7074155e6d5857cc37c01b57dbb70d1ab
+
Tags: latest
-Directory: target/openjdk-11-slim-buster/latest
+Directory: target/eclipse-temurin-17-jdk-jammy/latest
-Tags: openjdk-8, openjdk-8-lein, openjdk-8-lein-2.9.6, openjdk-8-buster, openjdk-8-lein-buster, openjdk-8-lein-2.9.6-buster
+Tags: temurin-8-boot-2.8.3-bullseye, temurin-8-boot-bullseye
+Directory: target/debian-bullseye-8/boot
+
+Tags: temurin-8-boot-2.8.3-bullseye-slim, temurin-8-boot-bullseye-slim
+Directory: target/debian-bullseye-slim-8/boot
+
+Tags: temurin-8-boot-2.8.3-focal, temurin-8-boot-focal
+Directory: target/eclipse-temurin-8-jdk-focal/boot
+
+Tags: temurin-8-boot, temurin-8-boot-2.8.3, temurin-8-boot-2.8.3-jammy, temurin-8-boot-jammy
+Directory: target/eclipse-temurin-8-jdk-jammy/boot
+
+Tags: temurin-8-lein-2.10.0-alpine, temurin-8-lein-alpine
Architectures: amd64
-Directory: target/openjdk-8-buster/lein
+Directory: target/eclipse-temurin-8-jdk-alpine/lein
-Tags: openjdk-8-slim-buster, openjdk-8-lein-slim-buster, openjdk-8-lein-2.9.6-slim-buster
+Tags: temurin-8-lein-2.10.0-bullseye, temurin-8-lein-bullseye
+Directory: target/debian-bullseye-8/lein
+
+Tags: temurin-8-lein-2.10.0-bullseye-slim, temurin-8-lein-bullseye-slim
+Directory: target/debian-bullseye-slim-8/lein
+
+Tags: temurin-8-lein-2.10.0-focal, temurin-8-lein-focal
+Directory: target/eclipse-temurin-8-jdk-focal/lein
+
+Tags: temurin-8-lein, temurin-8-lein-2.10.0, temurin-8-lein-2.10.0-jammy, temurin-8-lein-jammy
+Directory: target/eclipse-temurin-8-jdk-jammy/lein
+
+Tags: temurin-8-alpine, temurin-8-tools-deps-1.11.1.1413-alpine, temurin-8-tools-deps-alpine
Architectures: amd64
-Directory: target/openjdk-8-slim-buster/lein
+Directory: target/eclipse-temurin-8-jdk-alpine/tools-deps
-Tags: openjdk-8-boot, openjdk-8-boot-2.8.3, openjdk-8-boot-buster, openjdk-8-boot-2.8.3-buster
+Tags: temurin-8-bullseye, temurin-8-tools-deps-1.11.1.1413-bullseye, temurin-8-tools-deps-bullseye
+Directory: target/debian-bullseye-8/tools-deps
+
+Tags: temurin-8-bullseye-slim, temurin-8-tools-deps-1.11.1.1413-bullseye-slim, temurin-8-tools-deps-bullseye-slim
+Directory: target/debian-bullseye-slim-8/tools-deps
+
+Tags: temurin-8-focal, temurin-8-tools-deps-1.11.1.1413-focal, temurin-8-tools-deps-focal
+Directory: target/eclipse-temurin-8-jdk-focal/tools-deps
+
+Tags: temurin-8-jammy, temurin-8-tools-deps, temurin-8-tools-deps-1.11.1.1413, temurin-8-tools-deps-1.11.1.1413-jammy, temurin-8-tools-deps-jammy
+Directory: target/eclipse-temurin-8-jdk-jammy/tools-deps
+
+Tags: temurin-11-boot-2.8.3-bullseye, temurin-11-boot-bullseye
+Directory: target/debian-bullseye-11/boot
+
+Tags: temurin-11-boot-2.8.3-bullseye-slim, temurin-11-boot-bullseye-slim
+Directory: target/debian-bullseye-slim-11/boot
+
+Tags: temurin-11-boot-2.8.3-focal, temurin-11-boot-focal
+Directory: target/eclipse-temurin-11-jdk-focal/boot
+
+Tags: temurin-11-boot, temurin-11-boot-2.8.3, temurin-11-boot-2.8.3-jammy, temurin-11-boot-jammy
+Directory: target/eclipse-temurin-11-jdk-jammy/boot
+
+Tags: temurin-11-lein-2.10.0-alpine, temurin-11-lein-alpine
Architectures: amd64
-Directory: target/openjdk-8-buster/boot
+Directory: target/eclipse-temurin-11-jdk-alpine/lein
-Tags: openjdk-8-boot-slim-buster, openjdk-8-boot-2.8.3-slim-buster
+Tags: temurin-11-lein-2.10.0-bullseye, temurin-11-lein-bullseye
+Directory: target/debian-bullseye-11/lein
+
+Tags: temurin-11-lein-2.10.0-bullseye-slim, temurin-11-lein-bullseye-slim
+Directory: target/debian-bullseye-slim-11/lein
+
+Tags: temurin-11-lein-2.10.0-focal, temurin-11-lein-focal
+Directory: target/eclipse-temurin-11-jdk-focal/lein
+
+Tags: temurin-11-lein, temurin-11-lein-2.10.0, temurin-11-lein-2.10.0-jammy, temurin-11-lein-jammy
+Directory: target/eclipse-temurin-11-jdk-jammy/lein
+
+Tags: temurin-11-alpine, temurin-11-tools-deps-1.11.1.1413-alpine, temurin-11-tools-deps-alpine
Architectures: amd64
-Directory: target/openjdk-8-slim-buster/boot
+Directory: target/eclipse-temurin-11-jdk-alpine/tools-deps
-Tags: openjdk-8-tools-deps, openjdk-8-tools-deps-1.10.3.855, openjdk-8-tools-deps-buster, openjdk-8-tools-deps-1.10.3.855-buster
+Tags: temurin-11-bullseye, temurin-11-tools-deps-1.11.1.1413-bullseye, temurin-11-tools-deps-bullseye
+Directory: target/debian-bullseye-11/tools-deps
+
+Tags: temurin-11-bullseye-slim, temurin-11-tools-deps-1.11.1.1413-bullseye-slim, temurin-11-tools-deps-bullseye-slim
+Directory: target/debian-bullseye-slim-11/tools-deps
+
+Tags: temurin-11-focal, temurin-11-tools-deps-1.11.1.1413-focal, temurin-11-tools-deps-focal
+Directory: target/eclipse-temurin-11-jdk-focal/tools-deps
+
+Tags: temurin-11-jammy, temurin-11-tools-deps, temurin-11-tools-deps-1.11.1.1413, temurin-11-tools-deps-1.11.1.1413-jammy, temurin-11-tools-deps-jammy
+Directory: target/eclipse-temurin-11-jdk-jammy/tools-deps
+
+Tags: temurin-17-boot-2.8.3-bullseye, temurin-17-boot-bullseye
+Directory: target/debian-bullseye-17/boot
+
+Tags: temurin-17-boot-2.8.3-bullseye-slim, temurin-17-boot-bullseye-slim
+Directory: target/debian-bullseye-slim-17/boot
+
+Tags: boot-2.8.3-focal, boot-focal, temurin-17-boot-2.8.3-focal, temurin-17-boot-focal
+Directory: target/eclipse-temurin-17-jdk-focal/boot
+
+Tags: boot, boot-2.8.3, boot-2.8.3-jammy, boot-jammy, temurin-17-boot, temurin-17-boot-2.8.3, temurin-17-boot-2.8.3-jammy, temurin-17-boot-jammy
+Directory: target/eclipse-temurin-17-jdk-jammy/boot
+
+Tags: lein-2.10.0-alpine, lein-alpine, temurin-17-lein-2.10.0-alpine, temurin-17-lein-alpine
Architectures: amd64
-Directory: target/openjdk-8-buster/tools-deps
+Directory: target/eclipse-temurin-17-jdk-alpine/lein
-Tags: openjdk-8-tools-deps-slim-buster, openjdk-8-tools-deps-1.10.3.855-slim-buster
+Tags: temurin-17-lein-2.10.0-bullseye, temurin-17-lein-bullseye
+Directory: target/debian-bullseye-17/lein
+
+Tags: temurin-17-lein-2.10.0-bullseye-slim, temurin-17-lein-bullseye-slim
+Directory: target/debian-bullseye-slim-17/lein
+
+Tags: lein-2.10.0-focal, lein-focal, temurin-17-lein-2.10.0-focal, temurin-17-lein-focal
+Directory: target/eclipse-temurin-17-jdk-focal/lein
+
+Tags: lein, lein-2.10.0, lein-2.10.0-jammy, lein-jammy, temurin-17-lein, temurin-17-lein-2.10.0, temurin-17-lein-2.10.0-jammy, temurin-17-lein-jammy
+Directory: target/eclipse-temurin-17-jdk-jammy/lein
+
+Tags: temurin-17-alpine, temurin-17-tools-deps-1.11.1.1413-alpine, temurin-17-tools-deps-alpine, tools-deps-1.11.1.1413-alpine, tools-deps-alpine
Architectures: amd64
-Directory: target/openjdk-8-slim-buster/tools-deps
+Directory: target/eclipse-temurin-17-jdk-alpine/tools-deps
-Tags: openjdk-11, openjdk-11-lein, openjdk-11-lein-2.9.6, lein, lein-2.9.6, openjdk-11-buster, openjdk-11-lein-buster, openjdk-11-lein-2.9.6-buster, lein-buster, lein-2.9.6-buster
-Directory: target/openjdk-11-buster/lein
+Tags: temurin-17-bullseye, temurin-17-tools-deps-1.11.1.1413-bullseye, temurin-17-tools-deps-bullseye
+Directory: target/debian-bullseye-17/tools-deps
-Tags: openjdk-11-lein-slim-buster, openjdk-11-slim-buster, openjdk-11-lein-2.9.6-slim-buster, slim-buster, lein-slim-buster, lein-2.9.6-slim-buster
-Directory: target/openjdk-11-slim-buster/lein
+Tags: temurin-17-bullseye-slim, temurin-17-tools-deps-1.11.1.1413-bullseye-slim, temurin-17-tools-deps-bullseye-slim
+Directory: target/debian-bullseye-slim-17/tools-deps
-Tags: openjdk-11-boot, openjdk-11-boot-2.8.3, boot, boot-2.8.3, openjdk-11-boot-buster, openjdk-11-boot-2.8.3-buster, boot-buster, boot-2.8.3-buster
-Directory: target/openjdk-11-buster/boot
+Tags: temurin-17-focal, temurin-17-tools-deps-1.11.1.1413-focal, temurin-17-tools-deps-focal, tools-deps-1.11.1.1413-focal, tools-deps-focal
+Directory: target/eclipse-temurin-17-jdk-focal/tools-deps
-Tags: openjdk-11-boot-slim-buster, openjdk-11-boot-2.8.3-slim-buster, boot-slim-buster, boot-2.8.3-slim-buster
-Directory: target/openjdk-11-slim-buster/boot
+Tags: temurin-17-jammy, temurin-17-tools-deps, temurin-17-tools-deps-1.11.1.1413, temurin-17-tools-deps-1.11.1.1413-jammy, temurin-17-tools-deps-jammy, tools-deps, tools-deps-1.11.1.1413, tools-deps-1.11.1.1413-jammy, tools-deps-jammy
+Directory: target/eclipse-temurin-17-jdk-jammy/tools-deps
-Tags: openjdk-11-tools-deps, openjdk-11-tools-deps-1.10.3.855, tools-deps, tools-deps-1.10.3.855, openjdk-11-tools-deps-buster, openjdk-11-tools-deps-1.10.3.855-buster, tools-deps-buster, tools-deps-1.10.3.855-buster
-Directory: target/openjdk-11-buster/tools-deps
-
-Tags: openjdk-11-tools-deps-slim-buster, openjdk-11-tools-deps-1.10.3.855-slim-buster, tools-deps-1.10.3.855-slim-buster, tools-deps-slim-buster
-Directory: target/openjdk-11-slim-buster/tools-deps
-
-Tags: openjdk-16, openjdk-16-lein, openjdk-16-lein-2.9.6, openjdk-16-slim-buster, openjdk-16-lein-slim-buster, openjdk-16-lein-2.9.6-slim-buster
-Directory: target/openjdk-16-slim-buster/lein
-
-Tags: openjdk-16-buster, openjdk-16-lein-buster, openjdk-16-lein-2.9.6-buster
-Directory: target/openjdk-16-buster/lein
-
-Tags: openjdk-16-boot, openjdk-16-boot-2.8.3, openjdk-16-boot-slim-buster, openjdk-16-boot-2.8.3-slim-buster
-Directory: target/openjdk-16-slim-buster/boot
-
-Tags: openjdk-16-boot-buster, openjdk-16-boot-2.8.3-buster
-Directory: target/openjdk-16-buster/boot
-
-Tags: openjdk-16-tools-deps, openjdk-16-tools-deps-1.10.3.855, openjdk-16-tools-deps-slim-buster, openjdk-16-tools-deps-1.10.3.855-slim-buster
-Directory: target/openjdk-16-slim-buster/tools-deps
-
-Tags: openjdk-16-tools-deps-buster, openjdk-16-tools-deps-1.10.3.855-buster
-Directory: target/openjdk-16-buster/tools-deps
-
-Tags: openjdk-17, openjdk-17-lein, openjdk-17-lein-2.9.6, openjdk-17-slim-buster, openjdk-17-lein-slim-buster, openjdk-17-lein-2.9.6-slim-buster
-Directory: target/openjdk-17-slim-buster/lein
-
-Tags: openjdk-17-buster, openjdk-17-lein-buster, openjdk-17-lein-2.9.6-buster
-Directory: target/openjdk-17-buster/lein
-
-Tags: openjdk-17-boot, openjdk-17-boot-2.8.3, openjdk-17-boot-slim-buster, openjdk-17-boot-2.8.3-slim-buster
-Directory: target/openjdk-17-slim-buster/boot
-
-Tags: openjdk-17-boot-buster, openjdk-17-boot-2.8.3-buster
-Directory: target/openjdk-17-buster/boot
-
-Tags: openjdk-17-tools-deps, openjdk-17-tools-deps-1.10.3.855, openjdk-17-tools-deps-slim-buster, openjdk-17-tools-deps-1.10.3.855-slim-buster
-Directory: target/openjdk-17-slim-buster/tools-deps
-
-Tags: openjdk-17-tools-deps-buster, openjdk-17-tools-deps-1.10.3.855-buster
-Directory: target/openjdk-17-buster/tools-deps
-
-Tags: openjdk-17-alpine, openjdk-17-lein-alpine, openjdk-17-lein-2.9.6-alpine
+Tags: temurin-20-lein-2.10.0-alpine, temurin-20-lein-alpine
Architectures: amd64
-Directory: target/openjdk-17-alpine/lein
+Directory: target/eclipse-temurin-20-jdk-alpine/lein
-Tags: openjdk-17-boot-alpine, openjdk-17-boot-2.8.3-alpine
-Architectures: amd64
-Directory: target/openjdk-17-alpine/boot
+Tags: temurin-20-lein-2.10.0-bullseye, temurin-20-lein-bullseye
+Directory: target/debian-bullseye-20/lein
-Tags: openjdk-17-tools-deps-alpine, openjdk-17-tools-deps-1.10.3.855-alpine
+Tags: temurin-20-lein-2.10.0-bullseye-slim, temurin-20-lein-bullseye-slim
+Directory: target/debian-bullseye-slim-20/lein
+
+Tags: temurin-20-lein, temurin-20-lein-2.10.0, temurin-20-lein-2.10.0-jammy, temurin-20-lein-jammy
+Directory: target/eclipse-temurin-20-jdk-jammy/lein
+
+Tags: temurin-20-alpine, temurin-20-tools-deps-1.11.1.1413-alpine, temurin-20-tools-deps-alpine
Architectures: amd64
-Directory: target/openjdk-17-alpine/tools-deps
+Directory: target/eclipse-temurin-20-jdk-alpine/tools-deps
+
+Tags: temurin-20-bullseye, temurin-20-tools-deps-1.11.1.1413-bullseye, temurin-20-tools-deps-bullseye
+Directory: target/debian-bullseye-20/tools-deps
+
+Tags: temurin-20-bullseye-slim, temurin-20-tools-deps-1.11.1.1413-bullseye-slim, temurin-20-tools-deps-bullseye-slim
+Directory: target/debian-bullseye-slim-20/tools-deps
+
+Tags: temurin-20-jammy, temurin-20-tools-deps, temurin-20-tools-deps-1.11.1.1413, temurin-20-tools-deps-1.11.1.1413-jammy, temurin-20-tools-deps-jammy
+Directory: target/eclipse-temurin-20-jdk-jammy/tools-deps
diff --git a/library/composer b/library/composer
index d0e8b94508..7dd0b5b9e3 100644
--- a/library/composer
+++ b/library/composer
@@ -1,14 +1,41 @@
-# this file was generated using https://github.com/composer/docker/blob/f395cdc5c43a42f804915b1b7debe1cd0817870e/generate-stackbrew-library.sh
+# this file was generated using https://github.com/composer/docker/blob/88021c3db514289616359f7b3e5880baa02f4e68/generate-stackbrew-library.sh
Maintainers: Composer (@composer), Rob Bast (@alcohol)
GitRepo: https://github.com/composer/docker.git
+Builder: buildkit
-Tags: 2.0.14, 2.0, 2, latest
+Tags: 2.6.5, 2.6, 2, latest
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 1e1308d11b9b480ca1c9912b74b0441093e991e6
-Directory: 2.0
+GitFetch: refs/heads/main
+GitCommit: 1659442e2fe548afddf0a7356b6ca0c2348186b4
+Directory: 2.6
-Tags: 1.10.22, 1.10, 1
+Tags: 2.5.8, 2.5
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 890a12899ba8fbd4876bb8513d5cb75ce68d230c
+GitFetch: refs/heads/main
+GitCommit: 9fcccc5a4cf04e73118bb7af3f9c04f61646e1c1
+Directory: 2.5
+
+Tags: 2.4.4, 2.4
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+GitFetch: refs/heads/main
+GitCommit: 88e63fbab43e2151b0743a4c6d18a9c59aa9db0c
+Directory: 2.4
+
+Tags: 2.3.10, 2.3
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+GitFetch: refs/heads/main
+GitCommit: 88e63fbab43e2151b0743a4c6d18a9c59aa9db0c
+Directory: 2.3
+
+Tags: 2.2.22, 2.2, lts
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+GitFetch: refs/heads/main
+GitCommit: 355e5023b7b7831a7fe2db057070f8378f91ba35
+Directory: 2.2
+
+Tags: 1.10.27, 1.10, 1
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+GitFetch: refs/heads/main
+GitCommit: 9cac6280bc40c7d606f7fd2dfce0f77fefd056a8
Directory: 1.10
diff --git a/library/consul b/library/consul
index 393adee1ec..05a4ff084e 100644
--- a/library/consul
+++ b/library/consul
@@ -1,25 +1,20 @@
Maintainers: Consul Team (@hashicorp/consul)
-Tags: 1.10.0-beta3, 1.10.0-beta
+Tags: 1.15.4, 1.15
Architectures: amd64, arm32v6, arm64v8, i386
GitRepo: https://github.com/hashicorp/docker-consul.git
-GitCommit: c3f5f188630b9b18fcdcc20f0f04ef82690cb9c5
+GitCommit: aedd0844f06e9eac9c4e130206219b1ff044a8c4
Directory: 0.X
-Tags: 1.9.5, 1.9, latest
+Tags: 1.14.8, 1.14
Architectures: amd64, arm32v6, arm64v8, i386
GitRepo: https://github.com/hashicorp/docker-consul.git
-GitCommit: c77d4c566243f4c75a3efb226b074b3e2063a3f3
+GitCommit: 7c095b8e988517c239526c0137caeb837c490807
Directory: 0.X
-Tags: 1.8.10, 1.8
+Tags: 1.13.9, 1.13
Architectures: amd64, arm32v6, arm64v8, i386
GitRepo: https://github.com/hashicorp/docker-consul.git
-GitCommit: 12580e22affec44a4ce60590ccfaf0974d7d5c7b
+GitCommit: ae00ef4e7ff1cf68afd391838993bc53234cf5e6
Directory: 0.X
-Tags: 1.7.14, 1.7
-Architectures: amd64, arm32v6, arm64v8, i386
-GitRepo: https://github.com/hashicorp/docker-consul.git
-GitCommit: 43b15caac2a3d8f61c9ef57fab8e9eee1a07ca60
-Directory: 0.X
diff --git a/library/convertigo b/library/convertigo
index 94ca8bb60f..71f55d4fe6 100644
--- a/library/convertigo
+++ b/library/convertigo
@@ -1,7 +1,7 @@
Maintainers: Nicolas Albert (@nicolas-albert), Olivier Picciotto (@opicciotto)
GitRepo: https://github.com/convertigo/convertigo
-GitCommit: de2b99354757c166727745b2c3ad6d3d8dadd9bf
+GitCommit: 4f29a87627e16e9961f0795d59ee4540d76a5b3c
-Tags: 7.9.3, 7.9, latest
-Architectures: amd64
+Tags: 8.2.3, 8.2, latest
+Architectures: amd64, arm32v7, arm64v8
Directory: docker/default
\ No newline at end of file
diff --git a/library/couchbase b/library/couchbase
index 378ab5e639..d4d3088897 100644
--- a/library/couchbase
+++ b/library/couchbase
@@ -1,65 +1,38 @@
Maintainers: Couchbase Docker Team (@cb-robot)
GitRepo: https://github.com/couchbase/docker
-Tags: 7.0.0-beta, enterprise-7.0.0-beta
-GitCommit: 5929be778eb5306f116f71cc9a0a23fea6d9a7aa
-Directory: enterprise/couchbase-server/7.0.0-beta
+Tags: 7.2.2, enterprise-7.2.2, enterprise, latest
+GitCommit: 855d163127ee5e4bc6854714ecd6911f70f27906
+Directory: enterprise/couchbase-server/7.2.2
+Architectures: amd64, arm64v8
-Tags: community-7.0.0-beta
-GitCommit: 5929be778eb5306f116f71cc9a0a23fea6d9a7aa
-Directory: community/couchbase-server/7.0.0-beta
+Tags: community-7.2.2, community
+GitCommit: 855d163127ee5e4bc6854714ecd6911f70f27906
+Directory: community/couchbase-server/7.2.2
+Architectures: amd64, arm64v8
-Tags: latest, enterprise, 6.6.2, enterprise-6.6.2
-GitCommit: 4d5b6101c73d4efe75d2288107f6fe00b1deeff5
-Directory: enterprise/couchbase-server/6.6.2
+Tags: 7.1.5, enterprise-7.1.5
+GitCommit: 1ce6c78f29c9be97c67c2588b1ceaa57ad1b49c6
+Directory: enterprise/couchbase-server/7.1.5
+Architectures: amd64, arm64v8
-Tags: community, community-6.6.0
-GitCommit: 5929be778eb5306f116f71cc9a0a23fea6d9a7aa
+Tags: community-7.1.1
+GitCommit: bfbb82c084ca3ada6252afbbcb3ca94bb65f1e58
+Directory: community/couchbase-server/7.1.1
+Architectures: amd64, arm64v8
+
+Tags: 7.0.5, enterprise-7.0.5
+GitCommit: ca816b6ffa5c36007bd4b3386ec24df081a00ea0
+Directory: enterprise/couchbase-server/7.0.5
+
+Tags: community-7.0.2
+GitCommit: aec4494ab5280caf567997d72714f57572a6315b
+Directory: community/couchbase-server/7.0.2
+
+Tags: 6.6.6, enterprise-6.6.6
+GitCommit: 8398e79a15da9eef613d0a781ec136a458ea128c
+Directory: enterprise/couchbase-server/6.6.6
+
+Tags: community-6.6.0
+GitCommit: aad4aa9714578906c0c993121654eaeba0bd907c
Directory: community/couchbase-server/6.6.0
-
-Tags: 6.0.5, enterprise-6.0.5
-GitCommit: 5929be778eb5306f116f71cc9a0a23fea6d9a7aa
-Directory: enterprise/couchbase-server/6.0.5
-
-# One-off updates of older versions as we have updated the
-# Ubuntu base image version to address security vulnerabilities
-
-Tags: 6.6.1, enterprise-6.6.1
-GitCommit: 5929be778eb5306f116f71cc9a0a23fea6d9a7aa
-Directory: enterprise/couchbase-server/6.6.1
-
-Tags: 6.6.0, enterprise-6.6.0
-GitCommit: 5929be778eb5306f116f71cc9a0a23fea6d9a7aa
-Directory: enterprise/couchbase-server/6.6.0
-
-Tags: 6.5.1, enterprise-6.5.1
-GitCommit: 5929be778eb5306f116f71cc9a0a23fea6d9a7aa
-Directory: enterprise/couchbase-server/6.5.1
-
-Tags: 6.5.0, enterprise-6.5.0
-GitCommit: 5929be778eb5306f116f71cc9a0a23fea6d9a7aa
-Directory: enterprise/couchbase-server/6.5.0
-
-Tags: 6.0.4, enterprise-6.0.4
-GitCommit: 5929be778eb5306f116f71cc9a0a23fea6d9a7aa
-Directory: enterprise/couchbase-server/6.0.4
-
-Tags: 6.0.3, enterprise-6.0.3
-GitCommit: 5929be778eb5306f116f71cc9a0a23fea6d9a7aa
-Directory: enterprise/couchbase-server/6.0.3
-
-Tags: 6.0.2, enterprise-6.0.2
-GitCommit: 5929be778eb5306f116f71cc9a0a23fea6d9a7aa
-Directory: enterprise/couchbase-server/6.0.2
-
-Tags: 6.0.1, enterprise-6.0.1
-GitCommit: 5929be778eb5306f116f71cc9a0a23fea6d9a7aa
-Directory: enterprise/couchbase-server/6.0.1
-
-Tags: community-6.5.1
-GitCommit: 5929be778eb5306f116f71cc9a0a23fea6d9a7aa
-Directory: community/couchbase-server/6.5.1
-
-Tags: community-6.5.0
-GitCommit: 5929be778eb5306f116f71cc9a0a23fea6d9a7aa
-Directory: community/couchbase-server/6.5.1
diff --git a/library/couchdb b/library/couchdb
index ef6d51e944..a637f86337 100644
--- a/library/couchdb
+++ b/library/couchdb
@@ -1,24 +1,27 @@
# see https://couchdb.apache.org/
# also the announce@couchdb.apache.org mailing list
-Maintainers: Joan Touzet (@wohali)
+Maintainers: Joan Touzet (@wohali), Jan Lehnardt (@janl), Nick Vatamaniuc (@nickva)
GitRepo: https://github.com/apache/couchdb-docker
-GitCommit: e3ca492e13f65ffd72593ac3d7c43c737787e2b2
+GitFetch: refs/heads/main
+GitCommit: b616800e739db18c19e6a8b4131528157f945bcd
-Tags: latest, 3.1.1, 3.1, 3
-Architectures: amd64, arm64v8
-Directory: 3.1.1
+Tags: latest, 3.3.2, 3.3, 3
+Architectures: amd64, arm64v8, ppc64le, s390x
+Directory: 3.3.2
-Tags: 3.0.1, 3.0
+Tags: 3.2.3, 3.2
+Architectures: amd64, arm64v8, ppc64le
+Directory: 3.2.3
+
+Tags: 3.1.2, 3.1
Architectures: amd64, arm64v8
-Directory: 3.0.1
+Directory: 3.1.2
Tags: 2.3.1, 2.3, 2
Architectures: amd64, arm64v8
Directory: 2.3.1
-# ppc64le support is dropped until we have CI support for the platform.
-#
# 1.x is no longer supported by the Apache CouchDB team.
#
# dev, dev-cluster versions must not be published officially per
diff --git a/library/crate b/library/crate
index 4663b2e915..7c5e565f4b 100644
--- a/library/crate
+++ b/library/crate
@@ -4,31 +4,18 @@ Maintainers: Mathias Fußenegger (@mfussenegger),
Andreas Motl (@amotl)
GitRepo: https://github.com/crate/docker-crate.git
-
-Tags: 4.5.1, 4.5, latest
+Tags: 5.4.3, 5.4, latest
Architectures: amd64, arm64v8
-GitCommit: bc6f93174665458c574518f37bfb2e07694251f4
+GitCommit: 8db87d40d801d2705853f4e567d651239695ed64
-Tags: 4.4.3, 4.4
+Tags: 5.3.6, 5.3
Architectures: amd64, arm64v8
-GitCommit: 2ccc43c2b34cd4182b7757298f97dd21f123b2d9
+GitCommit: f430bdf6653a10ae5ab6b09f3b3f46408bed73be
-Tags: 4.3.4, 4.3
+Tags: 5.2.9, 5.2
Architectures: amd64, arm64v8
-GitCommit: eae5f171ef089074d42d033af2988714a87190b6
+GitCommit: 9b21bf436a20e2a5e139d6b70f04f7b8c34c408c
-Tags: 4.2.7, 4.2
+Tags: 4.8.4, 4.8
Architectures: amd64, arm64v8
-GitCommit: 441cd8bb0115a268f30633839bc29d813dfaa0db
-
-Tags: 4.1.8, 4.1
-Architectures: amd64, arm64v8
-GitCommit: fbe46a3c699dfe79242e659626a39b09325d58ab
-
-Tags: 4.0.12, 4.0
-Architectures: amd64, arm64v8
-GitCommit: 7791cda08fbf054ab2ce7a988f8811074b8c3bf4
-
-Tags: 3.3.5, 3.3
-Architectures: amd64, arm64v8
-GitCommit: 896c3f63e8e3d4746019e379a7aefb5225b050e3
+GitCommit: 1389b454dc1478efcbde8f9846bdd8ac6f7f0f8a
diff --git a/library/crux b/library/crux
deleted file mode 100644
index 9a417aefd1..0000000000
--- a/library/crux
+++ /dev/null
@@ -1,18 +0,0 @@
-Maintainers: James Mills (@prologic),
- Lee Jones (@lag-linaro)
-GitRepo: https://github.com/cruxlinux/docker-crux
-GitCommit: 26d68b9fbd54b774c53558faf2d3f1f94048c89a
-
-Tags: 3.4, latest
-Architectures: amd64, arm64v8
-arm64v8-GitFetch: refs/heads/release-3.4-aarch64
-arm64v8-GitCommit: 9e26df864d2329a493b30b716ed36314509f0273
-amd64-GitFetch: refs/heads/release-3.4-x86_64
-amd64-GitCommit: da081a9004c5559cd77a1e2c2521193ccb2afdd2
-
-Tags: 3.2
-Architectures: amd64, arm64v8
-arm64v8-GitFetch: refs/heads/release-3.2-aarch64
-arm64v8-GitCommit: bd3c44a73d37dc57b3295a3793cb7a6c544bc428
-amd64-GitFetch: refs/heads/release-3.2-x86_64
-amd64-GitCommit: 07e966125ba3d6d48a12489830917e8a9bc983a7
diff --git a/library/dart b/library/dart
index cb6f44925b..90d82ee00c 100644
--- a/library/dart
+++ b/library/dart
@@ -1,7 +1,12 @@
Maintainers: Alexander Thomas (@athomas), Tony Pujals (@subfuzion)
GitRepo: https://github.com/dart-lang/dart-docker.git
GitFetch: refs/heads/main
-GitCommit: f2f3164323a981adbbcd7393c884509e9504e29e
+GitCommit: 3adb95b42c342dc6bce6a81d0295b79a6a99b42f
-Tags: 2.13.1-sdk, 2.13-sdk, 2-sdk, stable-sdk, sdk, 2.13.1, 2.13, 2, stable, latest, beta-sdk, beta
-Directory: stable/buster
+Tags: 3.1.3-sdk, 3.1-sdk, 3-sdk, stable-sdk, sdk, 3.1.3, 3.1, 3, stable, latest
+Architectures: amd64, arm32v7, arm64v8
+Directory: stable/bookworm
+
+Tags: 3.2.0-134.1.beta-sdk, beta-sdk, 3.2.0-134.1.beta, beta
+Architectures: amd64, arm32v7, arm64v8
+Directory: beta/bookworm
diff --git a/library/debian b/library/debian
index 686027f534..a9e46fa092 100644
--- a/library/debian
+++ b/library/debian
@@ -4,34 +4,50 @@
Maintainers: Tianon Gravi (@tianon),
Paul Tagliamonte (@paultag)
GitRepo: https://github.com/debuerreotype/docker-debian-artifacts.git
-GitCommit: 90a83b6b730031399d45a49809364b07df0d0087
+GitCommit: ea6ede8f53deaae64dd492001410b689d127e810
# https://github.com/debuerreotype/docker-debian-artifacts/tree/dist-amd64
amd64-GitFetch: refs/heads/dist-amd64
-amd64-GitCommit: 259b60f4615af002995c1749c00f1abf9d9f01d8
+amd64-GitCommit: bfa3d175e4153a23ffb4cf1b573d72408333b4e2
# https://github.com/debuerreotype/docker-debian-artifacts/tree/dist-arm32v5
arm32v5-GitFetch: refs/heads/dist-arm32v5
-arm32v5-GitCommit: 31a56fef8ef23f7d86129b0ed04725e8f71f4067
+arm32v5-GitCommit: e3ffa2b8fd1ecb597cf044a41f3f3ba981db8cfc
# https://github.com/debuerreotype/docker-debian-artifacts/tree/dist-arm32v7
arm32v7-GitFetch: refs/heads/dist-arm32v7
-arm32v7-GitCommit: e21fb37764e17f813668d399d870c98ed84f34ca
+arm32v7-GitCommit: 9158a28aed57b437603ca9d01a4e6fbfa2c6a09f
# https://github.com/debuerreotype/docker-debian-artifacts/tree/dist-arm64v8
arm64v8-GitFetch: refs/heads/dist-arm64v8
-arm64v8-GitCommit: 394f1d9cbf61609b2a5ae7703d8ce4a36c5dcd0f
+arm64v8-GitCommit: 9af04cb525315a7bee9865c127afd966b92bf34d
# https://github.com/debuerreotype/docker-debian-artifacts/tree/dist-i386
i386-GitFetch: refs/heads/dist-i386
-i386-GitCommit: c940e6606ad94288fdf06711d31669852d56c677
+i386-GitCommit: 96e8a06cdc8ac9052a0ec8021d9a893065d6dc40
# https://github.com/debuerreotype/docker-debian-artifacts/tree/dist-mips64le
mips64le-GitFetch: refs/heads/dist-mips64le
-mips64le-GitCommit: 8a4cc2f10f5d7fcc65a3336f824bf7ce86ada5a9
+mips64le-GitCommit: 5d94cdcda8326e1a51e67e0067d4ce94c33620dd
# https://github.com/debuerreotype/docker-debian-artifacts/tree/dist-ppc64le
ppc64le-GitFetch: refs/heads/dist-ppc64le
-ppc64le-GitCommit: c7c0122b2785f0b54f76e0e6eafab4af28ceb9bd
+ppc64le-GitCommit: 22f4c15a60e92976689ce1b1d337af667b6cf713
+# https://github.com/debuerreotype/docker-debian-artifacts/tree/dist-riscv64
+riscv64-GitFetch: refs/heads/dist-riscv64
+riscv64-GitCommit: 0b81c4bd404e35c45d85fb282a7bf47ee56f4681
# https://github.com/debuerreotype/docker-debian-artifacts/tree/dist-s390x
s390x-GitFetch: refs/heads/dist-s390x
-s390x-GitCommit: cba63a56a55666b8542590a0e0a757d7461f3e10
+s390x-GitCommit: 949b940e1b979996f9bb9e43f6c33d890daa6f90
-# bullseye -- Debian x.y Testing distribution - Not Released
-Tags: bullseye, bullseye-20210511
+# bookworm -- Debian 12.1 Released 22 July 2023
+Tags: bookworm, bookworm-20230919, 12.1, 12, latest
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+Directory: bookworm
+
+Tags: bookworm-backports
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+Directory: bookworm/backports
+
+Tags: bookworm-slim, bookworm-20230919-slim, 12.1-slim, 12-slim
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+Directory: bookworm/slim
+
+# bullseye -- Debian 11.7 Released 29 April 2023
+Tags: bullseye, bullseye-20230919, 11.7, 11
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
Directory: bullseye
@@ -39,57 +55,70 @@ Tags: bullseye-backports
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
Directory: bullseye/backports
-Tags: bullseye-slim, bullseye-20210511-slim
+Tags: bullseye-slim, bullseye-20230919-slim, 11.7-slim, 11-slim
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
Directory: bullseye/slim
-# buster -- Debian 10.9 Released 27 March 2021
-Tags: buster, buster-20210511, 10.9, 10, latest
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+# buster -- Debian 10.13 Released 10 September 2022
+Tags: buster, buster-20230919, 10.13, 10
+Architectures: amd64, arm32v7, arm64v8, i386
Directory: buster
Tags: buster-backports
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+Architectures: amd64, arm32v7, arm64v8, i386
Directory: buster/backports
-Tags: buster-slim, buster-20210511-slim, 10.9-slim, 10-slim
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+Tags: buster-slim, buster-20230919-slim, 10.13-slim, 10-slim
+Architectures: amd64, arm32v7, arm64v8, i386
Directory: buster/slim
# experimental -- Experimental packages - not released; use at your own risk.
-Tags: experimental, experimental-20210511
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+Tags: experimental, experimental-20230919
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, riscv64, s390x
Directory: experimental
-# oldstable -- Debian 9.13 Released 18 July 2020
-Tags: oldstable, oldstable-20210511
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386
+# oldoldstable -- Debian 10.13 Released 10 September 2022
+Tags: oldoldstable, oldoldstable-20230919
+Architectures: amd64, arm32v7, arm64v8, i386
+Directory: oldoldstable
+
+Tags: oldoldstable-backports
+Architectures: amd64, arm32v7, arm64v8, i386
+Directory: oldoldstable/backports
+
+Tags: oldoldstable-slim, oldoldstable-20230919-slim
+Architectures: amd64, arm32v7, arm64v8, i386
+Directory: oldoldstable/slim
+
+# oldstable -- Debian 11.7 Released 29 April 2023
+Tags: oldstable, oldstable-20230919
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
Directory: oldstable
Tags: oldstable-backports
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
Directory: oldstable/backports
-Tags: oldstable-slim, oldstable-20210511-slim
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386
+Tags: oldstable-slim, oldstable-20230919-slim
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
Directory: oldstable/slim
# rc-buggy -- Experimental packages - not released; use at your own risk.
-Tags: rc-buggy, rc-buggy-20210511
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+Tags: rc-buggy, rc-buggy-20230919
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, riscv64, s390x
Directory: rc-buggy
# sid -- Debian x.y Unstable - Not Released
-Tags: sid, sid-20210511
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+Tags: sid, sid-20230919
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, riscv64, s390x
Directory: sid
-Tags: sid-slim, sid-20210511-slim
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+Tags: sid-slim, sid-20230919-slim
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, riscv64, s390x
Directory: sid/slim
-# stable -- Debian 10.9 Released 27 March 2021
-Tags: stable, stable-20210511
+# stable -- Debian 12.1 Released 22 July 2023
+Tags: stable, stable-20230919
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
Directory: stable
@@ -97,25 +126,12 @@ Tags: stable-backports
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
Directory: stable/backports
-Tags: stable-slim, stable-20210511-slim
+Tags: stable-slim, stable-20230919-slim
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
Directory: stable/slim
-# stretch -- Debian 9.13 Released 18 July 2020
-Tags: stretch, stretch-20210511, 9.13, 9
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386
-Directory: stretch
-
-Tags: stretch-backports
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386
-Directory: stretch/backports
-
-Tags: stretch-slim, stretch-20210511-slim, 9.13-slim, 9-slim
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386
-Directory: stretch/slim
-
# testing -- Debian x.y Testing distribution - Not Released
-Tags: testing, testing-20210511
+Tags: testing, testing-20230919
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
Directory: testing
@@ -123,15 +139,28 @@ Tags: testing-backports
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
Directory: testing/backports
-Tags: testing-slim, testing-20210511-slim
+Tags: testing-slim, testing-20230919-slim
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
Directory: testing/slim
-# unstable -- Debian x.y Unstable - Not Released
-Tags: unstable, unstable-20210511
+# trixie -- Debian x.y Testing distribution - Not Released
+Tags: trixie, trixie-20230919
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+Directory: trixie
+
+Tags: trixie-backports
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+Directory: trixie/backports
+
+Tags: trixie-slim, trixie-20230919-slim
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+Directory: trixie/slim
+
+# unstable -- Debian x.y Unstable - Not Released
+Tags: unstable, unstable-20230919
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, riscv64, s390x
Directory: unstable
-Tags: unstable-slim, unstable-20210511-slim
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+Tags: unstable-slim, unstable-20230919-slim
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, riscv64, s390x
Directory: unstable/slim
diff --git a/library/docker b/library/docker
index 0947dfb39a..5e72e269d5 100644
--- a/library/docker
+++ b/library/docker
@@ -1,45 +1,42 @@
-# this file is generated via https://github.com/docker-library/docker/blob/12d1c2763b54d29137ec448a3e4ad1a9aefae1a0/generate-stackbrew-library.sh
+# this file is generated via https://github.com/docker-library/docker/blob/b0550bbda87ae407b6fcf5b039afed7b8c256251/generate-stackbrew-library.sh
Maintainers: Tianon Gravi (@tianon),
Joseph Ferguson (@yosifkit)
GitRepo: https://github.com/docker-library/docker.git
+Builder: buildkit
-Tags: 20.10.6, 20.10, 20, latest
+Tags: 24.0.6-cli, 24.0-cli, 24-cli, cli, 24.0.6-cli-alpine3.18
Architectures: amd64, arm32v6, arm32v7, arm64v8
-GitCommit: f6a0c427f0354dcf5870c430c72c8f1d6b4e6d5e
-Directory: 20.10
+GitCommit: ff78b7b5f1f0830aa327380eb396dea53380b517
+Directory: 24/cli
-Tags: 20.10.6-dind, 20.10-dind, 20-dind, dind
+Tags: 24.0.6-dind, 24.0-dind, 24-dind, dind, 24.0.6-dind-alpine3.18, 24.0.6, 24.0, 24, latest, 24.0.6-alpine3.18
Architectures: amd64, arm32v6, arm32v7, arm64v8
-GitCommit: 30d7b9bf7663c96fcd888bd75e9aaa547a808a23
-Directory: 20.10/dind
+GitCommit: 12a4554648b671111eaf4cf4636cb1d6310c65e1
+Directory: 24/dind
-Tags: 20.10.6-dind-rootless, 20.10-dind-rootless, 20-dind-rootless, dind-rootless
-Architectures: amd64
-GitCommit: f6a0c427f0354dcf5870c430c72c8f1d6b4e6d5e
-Directory: 20.10/dind-rootless
+Tags: 24.0.6-dind-rootless, 24.0-dind-rootless, 24-dind-rootless, dind-rootless
+Architectures: amd64, arm64v8
+GitCommit: 12a4554648b671111eaf4cf4636cb1d6310c65e1
+Directory: 24/dind-rootless
-Tags: 20.10.6-git, 20.10-git, 20-git, git
+Tags: 24.0.6-git, 24.0-git, 24-git, git
Architectures: amd64, arm32v6, arm32v7, arm64v8
-GitCommit: 387e351394bfad74bceebf8303c6c8e39c3d4ed4
-Directory: 20.10/git
+GitCommit: 6964fd52030c2e6e9e0943eaac07d78c9841fbb3
+Directory: 24/git
-Tags: 19.03.15, 19.03, 19
-Architectures: amd64, arm32v6, arm32v7, arm64v8
-GitCommit: 835c371c516ebdf67adc0c76bbfb38bf9d3e586c
-Directory: 19.03
+Tags: 24.0.6-windowsservercore-ltsc2022, 24.0-windowsservercore-ltsc2022, 24-windowsservercore-ltsc2022, windowsservercore-ltsc2022
+SharedTags: 24.0.6-windowsservercore, 24.0-windowsservercore, 24-windowsservercore, windowsservercore
+Architectures: windows-amd64
+GitCommit: 112eb0209e4ce46e18059a9bd1b3b63f9409d360
+Directory: 24/windows/windowsservercore-ltsc2022
+Constraints: windowsservercore-ltsc2022
+Builder: classic
-Tags: 19.03.15-dind, 19.03-dind, 19-dind
-Architectures: amd64, arm32v6, arm32v7, arm64v8
-GitCommit: f0abe5a51a683c02501fd7ff8384fb17dbbeb946
-Directory: 19.03/dind
-
-Tags: 19.03.15-dind-rootless, 19.03-dind-rootless, 19-dind-rootless
-Architectures: amd64
-GitCommit: 835c371c516ebdf67adc0c76bbfb38bf9d3e586c
-Directory: 19.03/dind-rootless
-
-Tags: 19.03.15-git, 19.03-git, 19-git
-Architectures: amd64, arm32v6, arm32v7, arm64v8
-GitCommit: 12d1c2763b54d29137ec448a3e4ad1a9aefae1a0
-Directory: 19.03/git
+Tags: 24.0.6-windowsservercore-1809, 24.0-windowsservercore-1809, 24-windowsservercore-1809, windowsservercore-1809
+SharedTags: 24.0.6-windowsservercore, 24.0-windowsservercore, 24-windowsservercore, windowsservercore
+Architectures: windows-amd64
+GitCommit: 112eb0209e4ce46e18059a9bd1b3b63f9409d360
+Directory: 24/windows/windowsservercore-1809
+Constraints: windowsservercore-1809
+Builder: classic
diff --git a/library/drupal b/library/drupal
index def6d67185..a4aae4169b 100644
--- a/library/drupal
+++ b/library/drupal
@@ -1,80 +1,295 @@
-# this file is generated via https://github.com/docker-library/drupal/blob/1eca4a1de50210dce5d1b443e002e728a838f6b6/generate-stackbrew-library.sh
+# this file is generated via https://github.com/docker-library/drupal/blob/c355e4c2f5128485dd3022514fa44ea542b9a89d/generate-stackbrew-library.sh
Maintainers: Tianon Gravi (@tianon),
Joseph Ferguson (@yosifkit)
GitRepo: https://github.com/docker-library/drupal.git
-Tags: 9.1.9-php8.0-apache-buster, 9.1-php8.0-apache-buster, 9-php8.0-apache-buster, php8.0-apache-buster, 9.1.9-php8.0-apache, 9.1-php8.0-apache, 9-php8.0-apache, php8.0-apache, 9.1.9-apache-buster, 9.1-apache-buster, 9-apache-buster, apache-buster, 9.1.9-apache, 9.1-apache, 9-apache, apache, 9.1.9, 9.1, 9, latest, 9.1.9-php8.0, 9.1-php8.0, 9-php8.0, php8.0
+Tags: 10.1.5-php8.2-apache-bookworm, 10.1-php8.2-apache-bookworm, 10-php8.2-apache-bookworm, php8.2-apache-bookworm, 10.1.5-php8.2-apache, 10.1-php8.2-apache, 10-php8.2-apache, php8.2-apache, 10.1.5-php8.2, 10.1-php8.2, 10-php8.2, php8.2, 10.1.5-apache-bookworm, 10.1-apache-bookworm, 10-apache-bookworm, apache-bookworm, 10.1.5-apache, 10.1-apache, 10-apache, apache, 10.1.5, 10.1, 10, latest
Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 504c666631e5e867ae6e22938079cb2cb99d669a
-Directory: 9.1/php8.0/apache-buster
+GitCommit: bb0511c786f0c73f72f91fa83f8f48a17b0341b0
+Directory: 10.1/php8.2/apache-bookworm
-Tags: 9.1.9-php8.0-fpm-buster, 9.1-php8.0-fpm-buster, 9-php8.0-fpm-buster, php8.0-fpm-buster, 9.1.9-php8.0-fpm, 9.1-php8.0-fpm, 9-php8.0-fpm, php8.0-fpm, 9.1.9-fpm-buster, 9.1-fpm-buster, 9-fpm-buster, fpm-buster, 9.1.9-fpm, 9.1-fpm, 9-fpm, fpm
+Tags: 10.1.5-php8.2-fpm-bookworm, 10.1-php8.2-fpm-bookworm, 10-php8.2-fpm-bookworm, php8.2-fpm-bookworm, 10.1.5-php8.2-fpm, 10.1-php8.2-fpm, 10-php8.2-fpm, php8.2-fpm, 10.1.5-fpm-bookworm, 10.1-fpm-bookworm, 10-fpm-bookworm, fpm-bookworm, 10.1.5-fpm, 10.1-fpm, 10-fpm, fpm
Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 504c666631e5e867ae6e22938079cb2cb99d669a
-Directory: 9.1/php8.0/fpm-buster
+GitCommit: bb0511c786f0c73f72f91fa83f8f48a17b0341b0
+Directory: 10.1/php8.2/fpm-bookworm
-Tags: 9.1.9-php8.0-fpm-alpine3.12, 9.1-php8.0-fpm-alpine3.12, 9-php8.0-fpm-alpine3.12, php8.0-fpm-alpine3.12, 9.1.9-php8.0-fpm-alpine, 9.1-php8.0-fpm-alpine, 9-php8.0-fpm-alpine, php8.0-fpm-alpine, 9.1.9-fpm-alpine3.12, 9.1-fpm-alpine3.12, 9-fpm-alpine3.12, fpm-alpine3.12, 9.1.9-fpm-alpine, 9.1-fpm-alpine, 9-fpm-alpine, fpm-alpine
+Tags: 10.1.5-php8.2-apache-bullseye, 10.1-php8.2-apache-bullseye, 10-php8.2-apache-bullseye, php8.2-apache-bullseye, 10.1.5-apache-bullseye, 10.1-apache-bullseye, 10-apache-bullseye, apache-bullseye
+Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: bb0511c786f0c73f72f91fa83f8f48a17b0341b0
+Directory: 10.1/php8.2/apache-bullseye
+
+Tags: 10.1.5-php8.2-fpm-bullseye, 10.1-php8.2-fpm-bullseye, 10-php8.2-fpm-bullseye, php8.2-fpm-bullseye, 10.1.5-fpm-bullseye, 10.1-fpm-bullseye, 10-fpm-bullseye, fpm-bullseye
+Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: bb0511c786f0c73f72f91fa83f8f48a17b0341b0
+Directory: 10.1/php8.2/fpm-bullseye
+
+Tags: 10.1.5-php8.2-fpm-alpine3.18, 10.1-php8.2-fpm-alpine3.18, 10-php8.2-fpm-alpine3.18, php8.2-fpm-alpine3.18, 10.1.5-php8.2-fpm-alpine, 10.1-php8.2-fpm-alpine, 10-php8.2-fpm-alpine, php8.2-fpm-alpine, 10.1.5-fpm-alpine3.18, 10.1-fpm-alpine3.18, 10-fpm-alpine3.18, fpm-alpine3.18, 10.1.5-fpm-alpine, 10.1-fpm-alpine, 10-fpm-alpine, fpm-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 504c666631e5e867ae6e22938079cb2cb99d669a
-Directory: 9.1/php8.0/fpm-alpine3.12
+GitCommit: bb0511c786f0c73f72f91fa83f8f48a17b0341b0
+Directory: 10.1/php8.2/fpm-alpine3.18
-Tags: 9.1.9-php7.4-apache-buster, 9.1-php7.4-apache-buster, 9-php7.4-apache-buster, php7.4-apache-buster, 9.1.9-php7.4-apache, 9.1-php7.4-apache, 9-php7.4-apache, php7.4-apache
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 504c666631e5e867ae6e22938079cb2cb99d669a
-Directory: 9.1/php7.4/apache-buster
-
-Tags: 9.1.9-php7.4-fpm-buster, 9.1-php7.4-fpm-buster, 9-php7.4-fpm-buster, php7.4-fpm-buster, 9.1.9-php7.4-fpm, 9.1-php7.4-fpm, 9-php7.4-fpm, php7.4-fpm
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 504c666631e5e867ae6e22938079cb2cb99d669a
-Directory: 9.1/php7.4/fpm-buster
-
-Tags: 9.1.9-php7.4-fpm-alpine3.12, 9.1-php7.4-fpm-alpine3.12, 9-php7.4-fpm-alpine3.12, php7.4-fpm-alpine3.12, 9.1.9-php7.4-fpm-alpine, 9.1-php7.4-fpm-alpine, 9-php7.4-fpm-alpine, php7.4-fpm-alpine
+Tags: 10.1.5-php8.2-fpm-alpine3.17, 10.1-php8.2-fpm-alpine3.17, 10-php8.2-fpm-alpine3.17, php8.2-fpm-alpine3.17, 10.1.5-fpm-alpine3.17, 10.1-fpm-alpine3.17, 10-fpm-alpine3.17, fpm-alpine3.17
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 504c666631e5e867ae6e22938079cb2cb99d669a
-Directory: 9.1/php7.4/fpm-alpine3.12
+GitCommit: bb0511c786f0c73f72f91fa83f8f48a17b0341b0
+Directory: 10.1/php8.2/fpm-alpine3.17
-Tags: 9.0.14-php7.4-apache-buster, 9.0-php7.4-apache-buster, 9.0.14-php7.4-apache, 9.0-php7.4-apache, 9.0.14-apache-buster, 9.0-apache-buster, 9.0.14-apache, 9.0-apache, 9.0.14, 9.0, 9.0.14-php7.4, 9.0-php7.4
+Tags: 10.1.5-php8.1-apache-bookworm, 10.1-php8.1-apache-bookworm, 10-php8.1-apache-bookworm, php8.1-apache-bookworm, 10.1.5-php8.1-apache, 10.1-php8.1-apache, 10-php8.1-apache, php8.1-apache, 10.1.5-php8.1, 10.1-php8.1, 10-php8.1, php8.1
Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 1f11ff00e19505c5202db5653886ac1f7a775185
-Directory: 9.0/php7.4/apache-buster
+GitCommit: bb0511c786f0c73f72f91fa83f8f48a17b0341b0
+Directory: 10.1/php8.1/apache-bookworm
-Tags: 9.0.14-php7.4-fpm-buster, 9.0-php7.4-fpm-buster, 9.0.14-php7.4-fpm, 9.0-php7.4-fpm, 9.0.14-fpm-buster, 9.0-fpm-buster, 9.0.14-fpm, 9.0-fpm
+Tags: 10.1.5-php8.1-fpm-bookworm, 10.1-php8.1-fpm-bookworm, 10-php8.1-fpm-bookworm, php8.1-fpm-bookworm, 10.1.5-php8.1-fpm, 10.1-php8.1-fpm, 10-php8.1-fpm, php8.1-fpm
Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 1f11ff00e19505c5202db5653886ac1f7a775185
-Directory: 9.0/php7.4/fpm-buster
+GitCommit: bb0511c786f0c73f72f91fa83f8f48a17b0341b0
+Directory: 10.1/php8.1/fpm-bookworm
-Tags: 9.0.14-php7.4-fpm-alpine3.12, 9.0-php7.4-fpm-alpine3.12, 9.0.14-php7.4-fpm-alpine, 9.0-php7.4-fpm-alpine, 9.0.14-fpm-alpine3.12, 9.0-fpm-alpine3.12, 9.0.14-fpm-alpine, 9.0-fpm-alpine
+Tags: 10.1.5-php8.1-apache-bullseye, 10.1-php8.1-apache-bullseye, 10-php8.1-apache-bullseye, php8.1-apache-bullseye
+Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: bb0511c786f0c73f72f91fa83f8f48a17b0341b0
+Directory: 10.1/php8.1/apache-bullseye
+
+Tags: 10.1.5-php8.1-fpm-bullseye, 10.1-php8.1-fpm-bullseye, 10-php8.1-fpm-bullseye, php8.1-fpm-bullseye
+Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: bb0511c786f0c73f72f91fa83f8f48a17b0341b0
+Directory: 10.1/php8.1/fpm-bullseye
+
+Tags: 10.1.5-php8.1-fpm-alpine3.18, 10.1-php8.1-fpm-alpine3.18, 10-php8.1-fpm-alpine3.18, php8.1-fpm-alpine3.18, 10.1.5-php8.1-fpm-alpine, 10.1-php8.1-fpm-alpine, 10-php8.1-fpm-alpine, php8.1-fpm-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 1f11ff00e19505c5202db5653886ac1f7a775185
-Directory: 9.0/php7.4/fpm-alpine3.12
+GitCommit: bb0511c786f0c73f72f91fa83f8f48a17b0341b0
+Directory: 10.1/php8.1/fpm-alpine3.18
-Tags: 8.9.16-php7.4-apache-buster, 8.9-php7.4-apache-buster, 8-php7.4-apache-buster, 8.9.16-php7.4-apache, 8.9-php7.4-apache, 8-php7.4-apache, 8.9.16-apache-buster, 8.9-apache-buster, 8-apache-buster, 8.9.16-apache, 8.9-apache, 8-apache, 8.9.16, 8.9, 8, 8.9.16-php7.4, 8.9-php7.4, 8-php7.4
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 9eed5d2c8234badb3a375268005a41a479ee6c3f
-Directory: 8.9/php7.4/apache-buster
-
-Tags: 8.9.16-php7.4-fpm-buster, 8.9-php7.4-fpm-buster, 8-php7.4-fpm-buster, 8.9.16-php7.4-fpm, 8.9-php7.4-fpm, 8-php7.4-fpm, 8.9.16-fpm-buster, 8.9-fpm-buster, 8-fpm-buster, 8.9.16-fpm, 8.9-fpm, 8-fpm
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 9eed5d2c8234badb3a375268005a41a479ee6c3f
-Directory: 8.9/php7.4/fpm-buster
-
-Tags: 8.9.16-php7.4-fpm-alpine3.12, 8.9-php7.4-fpm-alpine3.12, 8-php7.4-fpm-alpine3.12, 8.9.16-php7.4-fpm-alpine, 8.9-php7.4-fpm-alpine, 8-php7.4-fpm-alpine, 8.9.16-fpm-alpine3.12, 8.9-fpm-alpine3.12, 8-fpm-alpine3.12, 8.9.16-fpm-alpine, 8.9-fpm-alpine, 8-fpm-alpine
+Tags: 10.1.5-php8.1-fpm-alpine3.17, 10.1-php8.1-fpm-alpine3.17, 10-php8.1-fpm-alpine3.17, php8.1-fpm-alpine3.17
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 9eed5d2c8234badb3a375268005a41a479ee6c3f
-Directory: 8.9/php7.4/fpm-alpine3.12
+GitCommit: bb0511c786f0c73f72f91fa83f8f48a17b0341b0
+Directory: 10.1/php8.1/fpm-alpine3.17
-Tags: 7.80-php7.4-apache-buster, 7-php7.4-apache-buster, 7.80-php7.4-apache, 7-php7.4-apache, 7.80-apache-buster, 7-apache-buster, 7.80-apache, 7-apache, 7.80, 7, 7.80-php7.4, 7-php7.4
+Tags: 10.0.11-php8.2-apache-bookworm, 10.0-php8.2-apache-bookworm, 10.0.11-php8.2-apache, 10.0-php8.2-apache, 10.0.11-php8.2, 10.0-php8.2, 10.0.11-apache-bookworm, 10.0-apache-bookworm, 10.0.11-apache, 10.0-apache, 10.0.11, 10.0
+Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: 8c04f5ce4313f395be9c5d1c37841d17c121068e
+Directory: 10.0/php8.2/apache-bookworm
+
+Tags: 10.0.11-php8.2-fpm-bookworm, 10.0-php8.2-fpm-bookworm, 10.0.11-php8.2-fpm, 10.0-php8.2-fpm, 10.0.11-fpm-bookworm, 10.0-fpm-bookworm, 10.0.11-fpm, 10.0-fpm
+Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: 8c04f5ce4313f395be9c5d1c37841d17c121068e
+Directory: 10.0/php8.2/fpm-bookworm
+
+Tags: 10.0.11-php8.2-apache-bullseye, 10.0-php8.2-apache-bullseye, 10.0.11-apache-bullseye, 10.0-apache-bullseye
+Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: 8c04f5ce4313f395be9c5d1c37841d17c121068e
+Directory: 10.0/php8.2/apache-bullseye
+
+Tags: 10.0.11-php8.2-fpm-bullseye, 10.0-php8.2-fpm-bullseye, 10.0.11-fpm-bullseye, 10.0-fpm-bullseye
+Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: 8c04f5ce4313f395be9c5d1c37841d17c121068e
+Directory: 10.0/php8.2/fpm-bullseye
+
+Tags: 10.0.11-php8.2-fpm-alpine3.18, 10.0-php8.2-fpm-alpine3.18, 10.0.11-php8.2-fpm-alpine, 10.0-php8.2-fpm-alpine, 10.0.11-fpm-alpine3.18, 10.0-fpm-alpine3.18, 10.0.11-fpm-alpine, 10.0-fpm-alpine
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: 8c04f5ce4313f395be9c5d1c37841d17c121068e
+Directory: 10.0/php8.2/fpm-alpine3.18
+
+Tags: 10.0.11-php8.2-fpm-alpine3.17, 10.0-php8.2-fpm-alpine3.17, 10.0.11-fpm-alpine3.17, 10.0-fpm-alpine3.17
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: 8c04f5ce4313f395be9c5d1c37841d17c121068e
+Directory: 10.0/php8.2/fpm-alpine3.17
+
+Tags: 10.0.11-php8.1-apache-bookworm, 10.0-php8.1-apache-bookworm, 10.0.11-php8.1-apache, 10.0-php8.1-apache, 10.0.11-php8.1, 10.0-php8.1
+Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: 8c04f5ce4313f395be9c5d1c37841d17c121068e
+Directory: 10.0/php8.1/apache-bookworm
+
+Tags: 10.0.11-php8.1-fpm-bookworm, 10.0-php8.1-fpm-bookworm, 10.0.11-php8.1-fpm, 10.0-php8.1-fpm
+Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: 8c04f5ce4313f395be9c5d1c37841d17c121068e
+Directory: 10.0/php8.1/fpm-bookworm
+
+Tags: 10.0.11-php8.1-apache-bullseye, 10.0-php8.1-apache-bullseye
+Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: 8c04f5ce4313f395be9c5d1c37841d17c121068e
+Directory: 10.0/php8.1/apache-bullseye
+
+Tags: 10.0.11-php8.1-fpm-bullseye, 10.0-php8.1-fpm-bullseye
+Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: 8c04f5ce4313f395be9c5d1c37841d17c121068e
+Directory: 10.0/php8.1/fpm-bullseye
+
+Tags: 10.0.11-php8.1-fpm-alpine3.18, 10.0-php8.1-fpm-alpine3.18, 10.0.11-php8.1-fpm-alpine, 10.0-php8.1-fpm-alpine
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: 8c04f5ce4313f395be9c5d1c37841d17c121068e
+Directory: 10.0/php8.1/fpm-alpine3.18
+
+Tags: 10.0.11-php8.1-fpm-alpine3.17, 10.0-php8.1-fpm-alpine3.17
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: 8c04f5ce4313f395be9c5d1c37841d17c121068e
+Directory: 10.0/php8.1/fpm-alpine3.17
+
+Tags: 9.5.11-php8.2-apache-bookworm, 9.5-php8.2-apache-bookworm, 9-php8.2-apache-bookworm, 9.5.11-php8.2-apache, 9.5-php8.2-apache, 9-php8.2-apache, 9.5.11-php8.2, 9.5-php8.2, 9-php8.2
+Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: addca2cc5377c9607cb441c37aecfebfc6554a11
+Directory: 9.5/php8.2/apache-bookworm
+
+Tags: 9.5.11-php8.2-fpm-bookworm, 9.5-php8.2-fpm-bookworm, 9-php8.2-fpm-bookworm, 9.5.11-php8.2-fpm, 9.5-php8.2-fpm, 9-php8.2-fpm
+Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: addca2cc5377c9607cb441c37aecfebfc6554a11
+Directory: 9.5/php8.2/fpm-bookworm
+
+Tags: 9.5.11-php8.2-apache-bullseye, 9.5-php8.2-apache-bullseye, 9-php8.2-apache-bullseye
+Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: addca2cc5377c9607cb441c37aecfebfc6554a11
+Directory: 9.5/php8.2/apache-bullseye
+
+Tags: 9.5.11-php8.2-fpm-bullseye, 9.5-php8.2-fpm-bullseye, 9-php8.2-fpm-bullseye
+Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: addca2cc5377c9607cb441c37aecfebfc6554a11
+Directory: 9.5/php8.2/fpm-bullseye
+
+Tags: 9.5.11-php8.2-fpm-alpine3.18, 9.5-php8.2-fpm-alpine3.18, 9-php8.2-fpm-alpine3.18, 9.5.11-php8.2-fpm-alpine, 9.5-php8.2-fpm-alpine, 9-php8.2-fpm-alpine
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: addca2cc5377c9607cb441c37aecfebfc6554a11
+Directory: 9.5/php8.2/fpm-alpine3.18
+
+Tags: 9.5.11-php8.2-fpm-alpine3.17, 9.5-php8.2-fpm-alpine3.17, 9-php8.2-fpm-alpine3.17
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: addca2cc5377c9607cb441c37aecfebfc6554a11
+Directory: 9.5/php8.2/fpm-alpine3.17
+
+Tags: 9.5.11-php8.1-apache-bookworm, 9.5-php8.1-apache-bookworm, 9-php8.1-apache-bookworm, 9.5.11-php8.1-apache, 9.5-php8.1-apache, 9-php8.1-apache, 9.5.11-php8.1, 9.5-php8.1, 9-php8.1, 9.5.11-apache-bookworm, 9.5-apache-bookworm, 9-apache-bookworm, 9.5.11-apache, 9.5-apache, 9-apache, 9.5.11, 9.5, 9
+Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: addca2cc5377c9607cb441c37aecfebfc6554a11
+Directory: 9.5/php8.1/apache-bookworm
+
+Tags: 9.5.11-php8.1-fpm-bookworm, 9.5-php8.1-fpm-bookworm, 9-php8.1-fpm-bookworm, 9.5.11-php8.1-fpm, 9.5-php8.1-fpm, 9-php8.1-fpm, 9.5.11-fpm-bookworm, 9.5-fpm-bookworm, 9-fpm-bookworm, 9.5.11-fpm, 9.5-fpm, 9-fpm
+Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: addca2cc5377c9607cb441c37aecfebfc6554a11
+Directory: 9.5/php8.1/fpm-bookworm
+
+Tags: 9.5.11-php8.1-apache-bullseye, 9.5-php8.1-apache-bullseye, 9-php8.1-apache-bullseye, 9.5.11-apache-bullseye, 9.5-apache-bullseye, 9-apache-bullseye
+Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: addca2cc5377c9607cb441c37aecfebfc6554a11
+Directory: 9.5/php8.1/apache-bullseye
+
+Tags: 9.5.11-php8.1-fpm-bullseye, 9.5-php8.1-fpm-bullseye, 9-php8.1-fpm-bullseye, 9.5.11-fpm-bullseye, 9.5-fpm-bullseye, 9-fpm-bullseye
+Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: addca2cc5377c9607cb441c37aecfebfc6554a11
+Directory: 9.5/php8.1/fpm-bullseye
+
+Tags: 9.5.11-php8.1-fpm-alpine3.18, 9.5-php8.1-fpm-alpine3.18, 9-php8.1-fpm-alpine3.18, 9.5.11-php8.1-fpm-alpine, 9.5-php8.1-fpm-alpine, 9-php8.1-fpm-alpine, 9.5.11-fpm-alpine3.18, 9.5-fpm-alpine3.18, 9-fpm-alpine3.18, 9.5.11-fpm-alpine, 9.5-fpm-alpine, 9-fpm-alpine
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: addca2cc5377c9607cb441c37aecfebfc6554a11
+Directory: 9.5/php8.1/fpm-alpine3.18
+
+Tags: 9.5.11-php8.1-fpm-alpine3.17, 9.5-php8.1-fpm-alpine3.17, 9-php8.1-fpm-alpine3.17, 9.5.11-fpm-alpine3.17, 9.5-fpm-alpine3.17, 9-fpm-alpine3.17
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: addca2cc5377c9607cb441c37aecfebfc6554a11
+Directory: 9.5/php8.1/fpm-alpine3.17
+
+Tags: 9.5.11-php8.0-apache-bullseye, 9.5-php8.0-apache-bullseye, 9-php8.0-apache-bullseye
+Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: addca2cc5377c9607cb441c37aecfebfc6554a11
+Directory: 9.5/php8.0/apache-bullseye
+
+Tags: 9.5.11-php8.0-fpm-bullseye, 9.5-php8.0-fpm-bullseye, 9-php8.0-fpm-bullseye
+Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: addca2cc5377c9607cb441c37aecfebfc6554a11
+Directory: 9.5/php8.0/fpm-bullseye
+
+Tags: 9.5.11-php8.0-apache-buster, 9.5-php8.0-apache-buster, 9-php8.0-apache-buster
+Architectures: amd64, arm32v7, arm64v8, i386
+GitCommit: addca2cc5377c9607cb441c37aecfebfc6554a11
+Directory: 9.5/php8.0/apache-buster
+
+Tags: 9.5.11-php8.0-fpm-buster, 9.5-php8.0-fpm-buster, 9-php8.0-fpm-buster
+Architectures: amd64, arm32v7, arm64v8, i386
+GitCommit: addca2cc5377c9607cb441c37aecfebfc6554a11
+Directory: 9.5/php8.0/fpm-buster
+
+Tags: 9.5.11-php8.0-fpm-alpine3.16, 9.5-php8.0-fpm-alpine3.16, 9-php8.0-fpm-alpine3.16
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: addca2cc5377c9607cb441c37aecfebfc6554a11
+Directory: 9.5/php8.0/fpm-alpine3.16
+
+Tags: 7.98-php8.2-apache-bookworm, 7-php8.2-apache-bookworm, 7.98-php8.2-apache, 7-php8.2-apache, 7.98-php8.2, 7-php8.2
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: b453189a044128ca01caab4d1e0b73c0505fdc7a
-Directory: 7/php7.4/apache-buster
+GitCommit: 427357a0d6f362f462fffc89090bf172e4743c43
+Directory: 7/php8.2/apache-bookworm
-Tags: 7.80-php7.4-fpm-buster, 7-php7.4-fpm-buster, 7.80-php7.4-fpm, 7-php7.4-fpm, 7.80-fpm-buster, 7-fpm-buster, 7.80-fpm, 7-fpm
+Tags: 7.98-php8.2-fpm-bookworm, 7-php8.2-fpm-bookworm, 7.98-php8.2-fpm, 7-php8.2-fpm
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: b453189a044128ca01caab4d1e0b73c0505fdc7a
-Directory: 7/php7.4/fpm-buster
+GitCommit: 427357a0d6f362f462fffc89090bf172e4743c43
+Directory: 7/php8.2/fpm-bookworm
-Tags: 7.80-php7.4-fpm-alpine3.12, 7-php7.4-fpm-alpine3.12, 7.80-php7.4-fpm-alpine, 7-php7.4-fpm-alpine, 7.80-fpm-alpine3.12, 7-fpm-alpine3.12, 7.80-fpm-alpine, 7-fpm-alpine
+Tags: 7.98-php8.2-apache-bullseye, 7-php8.2-apache-bullseye
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: 427357a0d6f362f462fffc89090bf172e4743c43
+Directory: 7/php8.2/apache-bullseye
+
+Tags: 7.98-php8.2-fpm-bullseye, 7-php8.2-fpm-bullseye
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: 427357a0d6f362f462fffc89090bf172e4743c43
+Directory: 7/php8.2/fpm-bullseye
+
+Tags: 7.98-php8.2-fpm-alpine3.18, 7-php8.2-fpm-alpine3.18, 7.98-php8.2-fpm-alpine, 7-php8.2-fpm-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: b453189a044128ca01caab4d1e0b73c0505fdc7a
-Directory: 7/php7.4/fpm-alpine3.12
+GitCommit: 427357a0d6f362f462fffc89090bf172e4743c43
+Directory: 7/php8.2/fpm-alpine3.18
+
+Tags: 7.98-php8.2-fpm-alpine3.17, 7-php8.2-fpm-alpine3.17
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: 427357a0d6f362f462fffc89090bf172e4743c43
+Directory: 7/php8.2/fpm-alpine3.17
+
+Tags: 7.98-php8.1-apache-bookworm, 7-php8.1-apache-bookworm, 7.98-php8.1-apache, 7-php8.1-apache, 7.98-php8.1, 7-php8.1
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: 427357a0d6f362f462fffc89090bf172e4743c43
+Directory: 7/php8.1/apache-bookworm
+
+Tags: 7.98-php8.1-fpm-bookworm, 7-php8.1-fpm-bookworm, 7.98-php8.1-fpm, 7-php8.1-fpm
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: 427357a0d6f362f462fffc89090bf172e4743c43
+Directory: 7/php8.1/fpm-bookworm
+
+Tags: 7.98-php8.1-apache-bullseye, 7-php8.1-apache-bullseye
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: 427357a0d6f362f462fffc89090bf172e4743c43
+Directory: 7/php8.1/apache-bullseye
+
+Tags: 7.98-php8.1-fpm-bullseye, 7-php8.1-fpm-bullseye
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: 427357a0d6f362f462fffc89090bf172e4743c43
+Directory: 7/php8.1/fpm-bullseye
+
+Tags: 7.98-php8.1-fpm-alpine3.18, 7-php8.1-fpm-alpine3.18, 7.98-php8.1-fpm-alpine, 7-php8.1-fpm-alpine
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: 427357a0d6f362f462fffc89090bf172e4743c43
+Directory: 7/php8.1/fpm-alpine3.18
+
+Tags: 7.98-php8.1-fpm-alpine3.17, 7-php8.1-fpm-alpine3.17
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: 427357a0d6f362f462fffc89090bf172e4743c43
+Directory: 7/php8.1/fpm-alpine3.17
+
+Tags: 7.98-php8.0-apache-bullseye, 7-php8.0-apache-bullseye, 7.98-apache-bullseye, 7-apache-bullseye
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: 4224e1aab82c9d3d2d4d759ce5c5e3e40242ecb3
+Directory: 7/php8.0/apache-bullseye
+
+Tags: 7.98-php8.0-fpm-bullseye, 7-php8.0-fpm-bullseye, 7.98-fpm-bullseye, 7-fpm-bullseye
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: 4224e1aab82c9d3d2d4d759ce5c5e3e40242ecb3
+Directory: 7/php8.0/fpm-bullseye
+
+Tags: 7.98-php8.0-apache-buster, 7-php8.0-apache-buster, 7.98-apache-buster, 7-apache-buster
+Architectures: amd64, arm32v7, arm64v8, i386
+GitCommit: 4224e1aab82c9d3d2d4d759ce5c5e3e40242ecb3
+Directory: 7/php8.0/apache-buster
+
+Tags: 7.98-php8.0-fpm-buster, 7-php8.0-fpm-buster, 7.98-fpm-buster, 7-fpm-buster
+Architectures: amd64, arm32v7, arm64v8, i386
+GitCommit: 4224e1aab82c9d3d2d4d759ce5c5e3e40242ecb3
+Directory: 7/php8.0/fpm-buster
+
+Tags: 7.98-php8.0-fpm-alpine3.16, 7-php8.0-fpm-alpine3.16, 7.98-fpm-alpine3.16, 7-fpm-alpine3.16
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: ebd9f36e6468515c9e5d469651ffb244094770b7
+Directory: 7/php8.0/fpm-alpine3.16
diff --git a/library/eclipse-mosquitto b/library/eclipse-mosquitto
index da231166fb..18fc30a12a 100644
--- a/library/eclipse-mosquitto
+++ b/library/eclipse-mosquitto
@@ -1,19 +1,13 @@
Maintainers: Roger Light (@ralight)
GitRepo: https://github.com/eclipse/mosquitto.git
-GitCommit: 1c79920d78321c69add9d6d6f879dd73387bc25e
+GitCommit: f4400fa422eacac8417efbc45dd1284526dce8d4
Architectures: amd64, arm32v6, arm64v8, i386, ppc64le, s390x
-Tags: 2.0.10, 2.0, 2, latest
+Tags: 2.0.18, 2.0, 2, latest
Directory: docker/2.0
-Tags: 2.0.10-openssl, 2.0-openssl, 2-openssl, openssl
+Tags: 2.0.18-openssl, 2.0-openssl, 2-openssl, openssl
Directory: docker/2.0-openssl
-Tags: 1.6.14, 1.6
-Directory: docker/1.6
-
-Tags: 1.6.14-openssl, 1.6-openssl
+Tags: 1.6.15-openssl, 1.6-openssl
Directory: docker/1.6-openssl
-
-Tags: 1.5.11, 1.5
-Directory: docker/1.5
diff --git a/library/eclipse-temurin b/library/eclipse-temurin
new file mode 100644
index 0000000000..5a93bc109f
--- /dev/null
+++ b/library/eclipse-temurin
@@ -0,0 +1,493 @@
+# Eclipse Temurin OpenJDK images provided by the Eclipse Foundation.
+
+Maintainers: George Adams (@gdams),
+ Stewart Addison (@sxa)
+GitRepo: https://github.com/adoptium/containers.git
+GitFetch: refs/heads/main
+
+#------------------------------v8 images---------------------------------
+Tags: 8u382-b05-jdk-alpine, 8-jdk-alpine, 8-alpine
+Architectures: amd64
+GitCommit: f308aa1a9dc0ac8775662e4c4d71840088ab076c
+Directory: 8/jdk/alpine
+File: Dockerfile.releases.full
+
+Tags: 8u382-b05-jdk-focal, 8-jdk-focal, 8-focal
+Architectures: amd64, arm32v7, arm64v8, ppc64le
+GitCommit: f308aa1a9dc0ac8775662e4c4d71840088ab076c
+Directory: 8/jdk/ubuntu/focal
+File: Dockerfile.releases.full
+
+Tags: 8u382-b05-jdk-jammy, 8-jdk-jammy, 8-jammy
+SharedTags: 8u382-b05-jdk, 8-jdk, 8
+Architectures: amd64, arm32v7, arm64v8, ppc64le
+GitCommit: f308aa1a9dc0ac8775662e4c4d71840088ab076c
+Directory: 8/jdk/ubuntu/jammy
+File: Dockerfile.releases.full
+
+Tags: 8u382-b05-jdk-centos7, 8-jdk-centos7, 8-centos7
+Architectures: amd64, arm64v8, ppc64le
+GitCommit: f308aa1a9dc0ac8775662e4c4d71840088ab076c
+Directory: 8/jdk/centos
+File: Dockerfile.releases.full
+
+Tags: 8u382-b05-jdk-ubi9-minimal, 8-jdk-ubi9-minimal, 8-ubi9-minimal
+Architectures: amd64, arm64v8, ppc64le
+GitCommit: f308aa1a9dc0ac8775662e4c4d71840088ab076c
+Directory: 8/jdk/ubi/ubi9-minimal
+File: Dockerfile.releases.full
+
+Tags: 8u382-b05-jdk-windowsservercore-ltsc2022, 8-jdk-windowsservercore-ltsc2022, 8-windowsservercore-ltsc2022
+SharedTags: 8u382-b05-jdk-windowsservercore, 8-jdk-windowsservercore, 8-windowsservercore, 8u382-b05-jdk, 8-jdk, 8
+Architectures: windows-amd64
+GitCommit: a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a
+Directory: 8/jdk/windows/windowsservercore-ltsc2022
+File: Dockerfile.releases.full
+Constraints: windowsservercore-ltsc2022
+
+Tags: 8u382-b05-jdk-nanoserver-ltsc2022, 8-jdk-nanoserver-ltsc2022, 8-nanoserver-ltsc2022
+SharedTags: 8u382-b05-jdk-nanoserver, 8-jdk-nanoserver, 8-nanoserver
+Architectures: windows-amd64
+GitCommit: a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a
+Directory: 8/jdk/windows/nanoserver-ltsc2022
+File: Dockerfile.releases.full
+Constraints: nanoserver-ltsc2022, windowsservercore-ltsc2022
+
+Tags: 8u382-b05-jdk-windowsservercore-1809, 8-jdk-windowsservercore-1809, 8-windowsservercore-1809
+SharedTags: 8u382-b05-jdk-windowsservercore, 8-jdk-windowsservercore, 8-windowsservercore, 8u382-b05-jdk, 8-jdk, 8
+Architectures: windows-amd64
+GitCommit: a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a
+Directory: 8/jdk/windows/windowsservercore-1809
+File: Dockerfile.releases.full
+Constraints: windowsservercore-1809
+
+Tags: 8u382-b05-jdk-nanoserver-1809, 8-jdk-nanoserver-1809, 8-nanoserver-1809
+SharedTags: 8u382-b05-jdk-nanoserver, 8-jdk-nanoserver, 8-nanoserver
+Architectures: windows-amd64
+GitCommit: a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a
+Directory: 8/jdk/windows/nanoserver-1809
+File: Dockerfile.releases.full
+Constraints: nanoserver-1809, windowsservercore-1809
+
+Tags: 8u382-b05-jre-alpine, 8-jre-alpine
+Architectures: amd64
+GitCommit: f308aa1a9dc0ac8775662e4c4d71840088ab076c
+Directory: 8/jre/alpine
+File: Dockerfile.releases.full
+
+Tags: 8u382-b05-jre-focal, 8-jre-focal
+Architectures: amd64, arm32v7, arm64v8, ppc64le
+GitCommit: f308aa1a9dc0ac8775662e4c4d71840088ab076c
+Directory: 8/jre/ubuntu/focal
+File: Dockerfile.releases.full
+
+Tags: 8u382-b05-jre-jammy, 8-jre-jammy
+SharedTags: 8u382-b05-jre, 8-jre
+Architectures: amd64, arm32v7, arm64v8, ppc64le
+GitCommit: f308aa1a9dc0ac8775662e4c4d71840088ab076c
+Directory: 8/jre/ubuntu/jammy
+File: Dockerfile.releases.full
+
+Tags: 8u382-b05-jre-centos7, 8-jre-centos7
+Architectures: amd64, arm64v8, ppc64le
+GitCommit: f308aa1a9dc0ac8775662e4c4d71840088ab076c
+Directory: 8/jre/centos
+File: Dockerfile.releases.full
+
+Tags: 8u382-b05-jre-ubi9-minimal, 8-jre-ubi9-minimal
+Architectures: amd64, arm64v8, ppc64le
+GitCommit: f308aa1a9dc0ac8775662e4c4d71840088ab076c
+Directory: 8/jre/ubi/ubi9-minimal
+File: Dockerfile.releases.full
+
+Tags: 8u382-b05-jre-windowsservercore-ltsc2022, 8-jre-windowsservercore-ltsc2022
+SharedTags: 8u382-b05-jre-windowsservercore, 8-jre-windowsservercore, 8u382-b05-jre, 8-jre
+Architectures: windows-amd64
+GitCommit: a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a
+Directory: 8/jre/windows/windowsservercore-ltsc2022
+File: Dockerfile.releases.full
+Constraints: windowsservercore-ltsc2022
+
+Tags: 8u382-b05-jre-nanoserver-ltsc2022, 8-jre-nanoserver-ltsc2022
+SharedTags: 8u382-b05-jre-nanoserver, 8-jre-nanoserver
+Architectures: windows-amd64
+GitCommit: a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a
+Directory: 8/jre/windows/nanoserver-ltsc2022
+File: Dockerfile.releases.full
+Constraints: nanoserver-ltsc2022, windowsservercore-ltsc2022
+
+Tags: 8u382-b05-jre-windowsservercore-1809, 8-jre-windowsservercore-1809
+SharedTags: 8u382-b05-jre-windowsservercore, 8-jre-windowsservercore, 8u382-b05-jre, 8-jre
+Architectures: windows-amd64
+GitCommit: a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a
+Directory: 8/jre/windows/windowsservercore-1809
+File: Dockerfile.releases.full
+Constraints: windowsservercore-1809
+
+Tags: 8u382-b05-jre-nanoserver-1809, 8-jre-nanoserver-1809
+SharedTags: 8u382-b05-jre-nanoserver, 8-jre-nanoserver
+Architectures: windows-amd64
+GitCommit: a076df4eb8dd8a60f52fbb60d9adc8e5f86c8b1a
+Directory: 8/jre/windows/nanoserver-1809
+File: Dockerfile.releases.full
+Constraints: nanoserver-1809, windowsservercore-1809
+
+
+#------------------------------v11 images---------------------------------
+Tags: 11.0.20.1_1-jdk-alpine, 11-jdk-alpine, 11-alpine
+Architectures: amd64
+GitCommit: 25f458a0991f58bb7ed0ec9817e026a40d559c38
+Directory: 11/jdk/alpine
+File: Dockerfile.releases.full
+
+Tags: 11.0.20.1_1-jdk-focal, 11-jdk-focal, 11-focal
+Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
+GitCommit: 25f458a0991f58bb7ed0ec9817e026a40d559c38
+Directory: 11/jdk/ubuntu/focal
+File: Dockerfile.releases.full
+
+Tags: 11.0.20.1_1-jdk-jammy, 11-jdk-jammy, 11-jammy
+SharedTags: 11.0.20.1_1-jdk, 11-jdk, 11
+Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
+GitCommit: 25f458a0991f58bb7ed0ec9817e026a40d559c38
+Directory: 11/jdk/ubuntu/jammy
+File: Dockerfile.releases.full
+
+Tags: 11.0.20.1_1-jdk-centos7, 11-jdk-centos7, 11-centos7
+Architectures: amd64, arm64v8, ppc64le
+GitCommit: 25f458a0991f58bb7ed0ec9817e026a40d559c38
+Directory: 11/jdk/centos
+File: Dockerfile.releases.full
+
+Tags: 11.0.20.1_1-jdk-ubi9-minimal, 11-jdk-ubi9-minimal, 11-ubi9-minimal
+Architectures: amd64, arm64v8, ppc64le, s390x
+GitCommit: 25f458a0991f58bb7ed0ec9817e026a40d559c38
+Directory: 11/jdk/ubi/ubi9-minimal
+File: Dockerfile.releases.full
+
+Tags: 11.0.20.1_1-jdk-windowsservercore-ltsc2022, 11-jdk-windowsservercore-ltsc2022, 11-windowsservercore-ltsc2022
+SharedTags: 11.0.20.1_1-jdk-windowsservercore, 11-jdk-windowsservercore, 11-windowsservercore, 11.0.20.1_1-jdk, 11-jdk, 11
+Architectures: windows-amd64
+GitCommit: 25f458a0991f58bb7ed0ec9817e026a40d559c38
+Directory: 11/jdk/windows/windowsservercore-ltsc2022
+File: Dockerfile.releases.full
+Constraints: windowsservercore-ltsc2022
+
+Tags: 11.0.20.1_1-jdk-nanoserver-ltsc2022, 11-jdk-nanoserver-ltsc2022, 11-nanoserver-ltsc2022
+SharedTags: 11.0.20.1_1-jdk-nanoserver, 11-jdk-nanoserver, 11-nanoserver
+Architectures: windows-amd64
+GitCommit: 25f458a0991f58bb7ed0ec9817e026a40d559c38
+Directory: 11/jdk/windows/nanoserver-ltsc2022
+File: Dockerfile.releases.full
+Constraints: nanoserver-ltsc2022, windowsservercore-ltsc2022
+
+Tags: 11.0.20.1_1-jdk-windowsservercore-1809, 11-jdk-windowsservercore-1809, 11-windowsservercore-1809
+SharedTags: 11.0.20.1_1-jdk-windowsservercore, 11-jdk-windowsservercore, 11-windowsservercore, 11.0.20.1_1-jdk, 11-jdk, 11
+Architectures: windows-amd64
+GitCommit: 25f458a0991f58bb7ed0ec9817e026a40d559c38
+Directory: 11/jdk/windows/windowsservercore-1809
+File: Dockerfile.releases.full
+Constraints: windowsservercore-1809
+
+Tags: 11.0.20.1_1-jdk-nanoserver-1809, 11-jdk-nanoserver-1809, 11-nanoserver-1809
+SharedTags: 11.0.20.1_1-jdk-nanoserver, 11-jdk-nanoserver, 11-nanoserver
+Architectures: windows-amd64
+GitCommit: 25f458a0991f58bb7ed0ec9817e026a40d559c38
+Directory: 11/jdk/windows/nanoserver-1809
+File: Dockerfile.releases.full
+Constraints: nanoserver-1809, windowsservercore-1809
+
+Tags: 11.0.20.1_1-jre-alpine, 11-jre-alpine
+Architectures: amd64
+GitCommit: 25f458a0991f58bb7ed0ec9817e026a40d559c38
+Directory: 11/jre/alpine
+File: Dockerfile.releases.full
+
+Tags: 11.0.20.1_1-jre-focal, 11-jre-focal
+Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
+GitCommit: 25f458a0991f58bb7ed0ec9817e026a40d559c38
+Directory: 11/jre/ubuntu/focal
+File: Dockerfile.releases.full
+
+Tags: 11.0.20.1_1-jre-jammy, 11-jre-jammy
+SharedTags: 11.0.20.1_1-jre, 11-jre
+Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
+GitCommit: 25f458a0991f58bb7ed0ec9817e026a40d559c38
+Directory: 11/jre/ubuntu/jammy
+File: Dockerfile.releases.full
+
+Tags: 11.0.20.1_1-jre-centos7, 11-jre-centos7
+Architectures: amd64, arm64v8, ppc64le
+GitCommit: 25f458a0991f58bb7ed0ec9817e026a40d559c38
+Directory: 11/jre/centos
+File: Dockerfile.releases.full
+
+Tags: 11.0.20.1_1-jre-ubi9-minimal, 11-jre-ubi9-minimal
+Architectures: amd64, arm64v8, ppc64le, s390x
+GitCommit: 25f458a0991f58bb7ed0ec9817e026a40d559c38
+Directory: 11/jre/ubi/ubi9-minimal
+File: Dockerfile.releases.full
+
+Tags: 11.0.20.1_1-jre-windowsservercore-ltsc2022, 11-jre-windowsservercore-ltsc2022
+SharedTags: 11.0.20.1_1-jre-windowsservercore, 11-jre-windowsservercore, 11.0.20.1_1-jre, 11-jre
+Architectures: windows-amd64
+GitCommit: 25f458a0991f58bb7ed0ec9817e026a40d559c38
+Directory: 11/jre/windows/windowsservercore-ltsc2022
+File: Dockerfile.releases.full
+Constraints: windowsservercore-ltsc2022
+
+Tags: 11.0.20.1_1-jre-nanoserver-ltsc2022, 11-jre-nanoserver-ltsc2022
+SharedTags: 11.0.20.1_1-jre-nanoserver, 11-jre-nanoserver
+Architectures: windows-amd64
+GitCommit: 25f458a0991f58bb7ed0ec9817e026a40d559c38
+Directory: 11/jre/windows/nanoserver-ltsc2022
+File: Dockerfile.releases.full
+Constraints: nanoserver-ltsc2022, windowsservercore-ltsc2022
+
+Tags: 11.0.20.1_1-jre-windowsservercore-1809, 11-jre-windowsservercore-1809
+SharedTags: 11.0.20.1_1-jre-windowsservercore, 11-jre-windowsservercore, 11.0.20.1_1-jre, 11-jre
+Architectures: windows-amd64
+GitCommit: 25f458a0991f58bb7ed0ec9817e026a40d559c38
+Directory: 11/jre/windows/windowsservercore-1809
+File: Dockerfile.releases.full
+Constraints: windowsservercore-1809
+
+Tags: 11.0.20.1_1-jre-nanoserver-1809, 11-jre-nanoserver-1809
+SharedTags: 11.0.20.1_1-jre-nanoserver, 11-jre-nanoserver
+Architectures: windows-amd64
+GitCommit: 25f458a0991f58bb7ed0ec9817e026a40d559c38
+Directory: 11/jre/windows/nanoserver-1809
+File: Dockerfile.releases.full
+Constraints: nanoserver-1809, windowsservercore-1809
+
+
+#------------------------------v17 images---------------------------------
+Tags: 17.0.8.1_1-jdk-alpine, 17-jdk-alpine, 17-alpine
+Architectures: amd64
+GitCommit: 25f458a0991f58bb7ed0ec9817e026a40d559c38
+Directory: 17/jdk/alpine
+File: Dockerfile.releases.full
+
+Tags: 17.0.8.1_1-jdk-focal, 17-jdk-focal, 17-focal
+Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
+GitCommit: 25f458a0991f58bb7ed0ec9817e026a40d559c38
+Directory: 17/jdk/ubuntu/focal
+File: Dockerfile.releases.full
+
+Tags: 17.0.8.1_1-jdk-jammy, 17-jdk-jammy, 17-jammy
+SharedTags: 17.0.8.1_1-jdk, 17-jdk, 17
+Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
+GitCommit: 25f458a0991f58bb7ed0ec9817e026a40d559c38
+Directory: 17/jdk/ubuntu/jammy
+File: Dockerfile.releases.full
+
+Tags: 17.0.8.1_1-jdk-centos7, 17-jdk-centos7, 17-centos7
+Architectures: amd64, arm64v8, ppc64le
+GitCommit: 25f458a0991f58bb7ed0ec9817e026a40d559c38
+Directory: 17/jdk/centos
+File: Dockerfile.releases.full
+
+Tags: 17.0.8.1_1-jdk-ubi9-minimal, 17-jdk-ubi9-minimal, 17-ubi9-minimal
+Architectures: amd64, arm64v8, ppc64le, s390x
+GitCommit: 25f458a0991f58bb7ed0ec9817e026a40d559c38
+Directory: 17/jdk/ubi/ubi9-minimal
+File: Dockerfile.releases.full
+
+Tags: 17.0.8.1_1-jdk-windowsservercore-ltsc2022, 17-jdk-windowsservercore-ltsc2022, 17-windowsservercore-ltsc2022
+SharedTags: 17.0.8.1_1-jdk-windowsservercore, 17-jdk-windowsservercore, 17-windowsservercore, 17.0.8.1_1-jdk, 17-jdk, 17
+Architectures: windows-amd64
+GitCommit: 25f458a0991f58bb7ed0ec9817e026a40d559c38
+Directory: 17/jdk/windows/windowsservercore-ltsc2022
+File: Dockerfile.releases.full
+Constraints: windowsservercore-ltsc2022
+
+Tags: 17.0.8.1_1-jdk-nanoserver-ltsc2022, 17-jdk-nanoserver-ltsc2022, 17-nanoserver-ltsc2022
+SharedTags: 17.0.8.1_1-jdk-nanoserver, 17-jdk-nanoserver, 17-nanoserver
+Architectures: windows-amd64
+GitCommit: 25f458a0991f58bb7ed0ec9817e026a40d559c38
+Directory: 17/jdk/windows/nanoserver-ltsc2022
+File: Dockerfile.releases.full
+Constraints: nanoserver-ltsc2022, windowsservercore-ltsc2022
+
+Tags: 17.0.8.1_1-jdk-windowsservercore-1809, 17-jdk-windowsservercore-1809, 17-windowsservercore-1809
+SharedTags: 17.0.8.1_1-jdk-windowsservercore, 17-jdk-windowsservercore, 17-windowsservercore, 17.0.8.1_1-jdk, 17-jdk, 17
+Architectures: windows-amd64
+GitCommit: 25f458a0991f58bb7ed0ec9817e026a40d559c38
+Directory: 17/jdk/windows/windowsservercore-1809
+File: Dockerfile.releases.full
+Constraints: windowsservercore-1809
+
+Tags: 17.0.8.1_1-jdk-nanoserver-1809, 17-jdk-nanoserver-1809, 17-nanoserver-1809
+SharedTags: 17.0.8.1_1-jdk-nanoserver, 17-jdk-nanoserver, 17-nanoserver
+Architectures: windows-amd64
+GitCommit: 25f458a0991f58bb7ed0ec9817e026a40d559c38
+Directory: 17/jdk/windows/nanoserver-1809
+File: Dockerfile.releases.full
+Constraints: nanoserver-1809, windowsservercore-1809
+
+Tags: 17.0.8.1_1-jre-alpine, 17-jre-alpine
+Architectures: amd64
+GitCommit: 25f458a0991f58bb7ed0ec9817e026a40d559c38
+Directory: 17/jre/alpine
+File: Dockerfile.releases.full
+
+Tags: 17.0.8.1_1-jre-focal, 17-jre-focal
+Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
+GitCommit: 25f458a0991f58bb7ed0ec9817e026a40d559c38
+Directory: 17/jre/ubuntu/focal
+File: Dockerfile.releases.full
+
+Tags: 17.0.8.1_1-jre-jammy, 17-jre-jammy
+SharedTags: 17.0.8.1_1-jre, 17-jre
+Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
+GitCommit: 25f458a0991f58bb7ed0ec9817e026a40d559c38
+Directory: 17/jre/ubuntu/jammy
+File: Dockerfile.releases.full
+
+Tags: 17.0.8.1_1-jre-centos7, 17-jre-centos7
+Architectures: amd64, arm64v8, ppc64le
+GitCommit: 25f458a0991f58bb7ed0ec9817e026a40d559c38
+Directory: 17/jre/centos
+File: Dockerfile.releases.full
+
+Tags: 17.0.8.1_1-jre-ubi9-minimal, 17-jre-ubi9-minimal
+Architectures: amd64, arm64v8, ppc64le, s390x
+GitCommit: 25f458a0991f58bb7ed0ec9817e026a40d559c38
+Directory: 17/jre/ubi/ubi9-minimal
+File: Dockerfile.releases.full
+
+Tags: 17.0.8.1_1-jre-windowsservercore-ltsc2022, 17-jre-windowsservercore-ltsc2022
+SharedTags: 17.0.8.1_1-jre-windowsservercore, 17-jre-windowsservercore, 17.0.8.1_1-jre, 17-jre
+Architectures: windows-amd64
+GitCommit: 25f458a0991f58bb7ed0ec9817e026a40d559c38
+Directory: 17/jre/windows/windowsservercore-ltsc2022
+File: Dockerfile.releases.full
+Constraints: windowsservercore-ltsc2022
+
+Tags: 17.0.8.1_1-jre-nanoserver-ltsc2022, 17-jre-nanoserver-ltsc2022
+SharedTags: 17.0.8.1_1-jre-nanoserver, 17-jre-nanoserver
+Architectures: windows-amd64
+GitCommit: 25f458a0991f58bb7ed0ec9817e026a40d559c38
+Directory: 17/jre/windows/nanoserver-ltsc2022
+File: Dockerfile.releases.full
+Constraints: nanoserver-ltsc2022, windowsservercore-ltsc2022
+
+Tags: 17.0.8.1_1-jre-windowsservercore-1809, 17-jre-windowsservercore-1809
+SharedTags: 17.0.8.1_1-jre-windowsservercore, 17-jre-windowsservercore, 17.0.8.1_1-jre, 17-jre
+Architectures: windows-amd64
+GitCommit: 25f458a0991f58bb7ed0ec9817e026a40d559c38
+Directory: 17/jre/windows/windowsservercore-1809
+File: Dockerfile.releases.full
+Constraints: windowsservercore-1809
+
+Tags: 17.0.8.1_1-jre-nanoserver-1809, 17-jre-nanoserver-1809
+SharedTags: 17.0.8.1_1-jre-nanoserver, 17-jre-nanoserver
+Architectures: windows-amd64
+GitCommit: 25f458a0991f58bb7ed0ec9817e026a40d559c38
+Directory: 17/jre/windows/nanoserver-1809
+File: Dockerfile.releases.full
+Constraints: nanoserver-1809, windowsservercore-1809
+
+
+#------------------------------v20 images---------------------------------
+Tags: 20.0.2_9-jdk-alpine, 20-jdk-alpine, 20-alpine
+Architectures: amd64
+GitCommit: f308aa1a9dc0ac8775662e4c4d71840088ab076c
+Directory: 20/jdk/alpine
+File: Dockerfile.releases.full
+
+Tags: 20.0.2_9-jdk-jammy, 20-jdk-jammy, 20-jammy
+SharedTags: 20.0.2_9-jdk, 20-jdk, 20, latest
+Architectures: amd64, arm64v8
+GitCommit: f308aa1a9dc0ac8775662e4c4d71840088ab076c
+Directory: 20/jdk/ubuntu/jammy
+File: Dockerfile.releases.full
+
+Tags: 20.0.2_9-jdk-ubi9-minimal, 20-jdk-ubi9-minimal, 20-ubi9-minimal
+Architectures: amd64, arm64v8
+GitCommit: f308aa1a9dc0ac8775662e4c4d71840088ab076c
+Directory: 20/jdk/ubi/ubi9-minimal
+File: Dockerfile.releases.full
+
+Tags: 20.0.2_9-jdk-windowsservercore-ltsc2022, 20-jdk-windowsservercore-ltsc2022, 20-windowsservercore-ltsc2022
+SharedTags: 20.0.2_9-jdk-windowsservercore, 20-jdk-windowsservercore, 20-windowsservercore, 20.0.2_9-jdk, 20-jdk, 20, latest
+Architectures: windows-amd64
+GitCommit: 22734cf4688ad791769df55353dfb15bba9abca5
+Directory: 20/jdk/windows/windowsservercore-ltsc2022
+File: Dockerfile.releases.full
+Constraints: windowsservercore-ltsc2022
+
+Tags: 20.0.2_9-jdk-nanoserver-ltsc2022, 20-jdk-nanoserver-ltsc2022, 20-nanoserver-ltsc2022
+SharedTags: 20.0.2_9-jdk-nanoserver, 20-jdk-nanoserver, 20-nanoserver
+Architectures: windows-amd64
+GitCommit: 22734cf4688ad791769df55353dfb15bba9abca5
+Directory: 20/jdk/windows/nanoserver-ltsc2022
+File: Dockerfile.releases.full
+Constraints: nanoserver-ltsc2022, windowsservercore-ltsc2022
+
+Tags: 20.0.2_9-jdk-windowsservercore-1809, 20-jdk-windowsservercore-1809, 20-windowsservercore-1809
+SharedTags: 20.0.2_9-jdk-windowsservercore, 20-jdk-windowsservercore, 20-windowsservercore, 20.0.2_9-jdk, 20-jdk, 20, latest
+Architectures: windows-amd64
+GitCommit: 22734cf4688ad791769df55353dfb15bba9abca5
+Directory: 20/jdk/windows/windowsservercore-1809
+File: Dockerfile.releases.full
+Constraints: windowsservercore-1809
+
+Tags: 20.0.2_9-jdk-nanoserver-1809, 20-jdk-nanoserver-1809, 20-nanoserver-1809
+SharedTags: 20.0.2_9-jdk-nanoserver, 20-jdk-nanoserver, 20-nanoserver
+Architectures: windows-amd64
+GitCommit: 22734cf4688ad791769df55353dfb15bba9abca5
+Directory: 20/jdk/windows/nanoserver-1809
+File: Dockerfile.releases.full
+Constraints: nanoserver-1809, windowsservercore-1809
+
+Tags: 20.0.2_9-jre-alpine, 20-jre-alpine
+Architectures: amd64
+GitCommit: f308aa1a9dc0ac8775662e4c4d71840088ab076c
+Directory: 20/jre/alpine
+File: Dockerfile.releases.full
+
+Tags: 20.0.2_9-jre-jammy, 20-jre-jammy
+SharedTags: 20.0.2_9-jre, 20-jre
+Architectures: amd64, arm64v8
+GitCommit: f308aa1a9dc0ac8775662e4c4d71840088ab076c
+Directory: 20/jre/ubuntu/jammy
+File: Dockerfile.releases.full
+
+Tags: 20.0.2_9-jre-ubi9-minimal, 20-jre-ubi9-minimal
+Architectures: amd64, arm64v8
+GitCommit: f308aa1a9dc0ac8775662e4c4d71840088ab076c
+Directory: 20/jre/ubi/ubi9-minimal
+File: Dockerfile.releases.full
+
+Tags: 20.0.2_9-jre-windowsservercore-ltsc2022, 20-jre-windowsservercore-ltsc2022
+SharedTags: 20.0.2_9-jre-windowsservercore, 20-jre-windowsservercore, 20.0.2_9-jre, 20-jre
+Architectures: windows-amd64
+GitCommit: 22734cf4688ad791769df55353dfb15bba9abca5
+Directory: 20/jre/windows/windowsservercore-ltsc2022
+File: Dockerfile.releases.full
+Constraints: windowsservercore-ltsc2022
+
+Tags: 20.0.2_9-jre-nanoserver-ltsc2022, 20-jre-nanoserver-ltsc2022
+SharedTags: 20.0.2_9-jre-nanoserver, 20-jre-nanoserver
+Architectures: windows-amd64
+GitCommit: 22734cf4688ad791769df55353dfb15bba9abca5
+Directory: 20/jre/windows/nanoserver-ltsc2022
+File: Dockerfile.releases.full
+Constraints: nanoserver-ltsc2022, windowsservercore-ltsc2022
+
+Tags: 20.0.2_9-jre-windowsservercore-1809, 20-jre-windowsservercore-1809
+SharedTags: 20.0.2_9-jre-windowsservercore, 20-jre-windowsservercore, 20.0.2_9-jre, 20-jre
+Architectures: windows-amd64
+GitCommit: 22734cf4688ad791769df55353dfb15bba9abca5
+Directory: 20/jre/windows/windowsservercore-1809
+File: Dockerfile.releases.full
+Constraints: windowsservercore-1809
+
+Tags: 20.0.2_9-jre-nanoserver-1809, 20-jre-nanoserver-1809
+SharedTags: 20.0.2_9-jre-nanoserver, 20-jre-nanoserver
+Architectures: windows-amd64
+GitCommit: 22734cf4688ad791769df55353dfb15bba9abca5
+Directory: 20/jre/windows/nanoserver-1809
+File: Dockerfile.releases.full
+Constraints: nanoserver-1809, windowsservercore-1809
diff --git a/library/eggdrop b/library/eggdrop
index bbe242091c..961d4d71ae 100644
--- a/library/eggdrop
+++ b/library/eggdrop
@@ -3,15 +3,10 @@ GitRepo: https://github.com/eggheads/eggdrop-docker.git
Tags: develop
Architectures: arm32v6, arm64v8, amd64
-GitCommit: f65a97bc6d85e74d1094f1d75c7979aec53cb4fa
+GitCommit: 80fba087712325adc72a96265d4984c6760aff1a
Directory: develop
-Tags: 1.8, 1.8.4
-Architectures: amd64
-GitCommit: 14411e45f599536a86d9f023c0fa09f3dd2f5454
-Directory: 1.8
-
-Tags: 1.9, 1.9.0, stable, latest
+Tags: 1.9, 1.9.5, stable, latest
Architectures: amd64, arm32v6, arm64v8
-GitCommit: f65a97bc6d85e74d1094f1d75c7979aec53cb4fa
-Directory: 1.9
+GitCommit: 80fba087712325adc72a96265d4984c6760aff1a
+Directory: 1.9
\ No newline at end of file
diff --git a/library/elasticsearch b/library/elasticsearch
index 2c6308a508..02bd0eefa0 100644
--- a/library/elasticsearch
+++ b/library/elasticsearch
@@ -1,15 +1,15 @@
-# this file is generated via https://github.com/docker-library/elasticsearch/blob/551cff2cb19d99d2c76a8717d7d3007bb23c3a7a/generate-stackbrew-library.sh
+# this file is generated via https://github.com/docker-library/elasticsearch/blob/1c213e964445c73ff44e2ed1ff18e28995800d8e/generate-stackbrew-library.sh
Maintainers: Tianon Gravi (@tianon),
Joseph Ferguson (@yosifkit)
GitRepo: https://github.com/docker-library/elasticsearch.git
-Tags: 7.12.1
+Tags: 8.10.2
Architectures: amd64, arm64v8
-GitCommit: 67c05f68cd72dd1660feb24692d044747e472666
-Directory: 7
+GitCommit: e01a04645b0c3f0abd13b9f11a69d7c884d9405a
+Directory: 8
-Tags: 6.8.15
-Architectures: amd64
-GitCommit: e1bc20d3147ba582bfaaf3e289ca1070797736f6
-Directory: 6
+Tags: 7.17.13
+Architectures: amd64, arm64v8
+GitCommit: 91b35e027265ce33d16bb0f88884f5897a11328e
+Directory: 7
diff --git a/library/elixir b/library/elixir
index 6cf122c7f6..529e9b04e1 100644
--- a/library/elixir
+++ b/library/elixir
@@ -1,66 +1,191 @@
-# this file is generated via https://github.com/erlef/docker-elixir/blob/d834e327cadfda82351c41054e57e2710c8aaf84/generate-stackbrew-library.sh
+# this file is generated via https://github.com/erlef/docker-elixir/blob/cf883e1a30a78319e4587f8b002b6cac5796a348/generate-stackbrew-library.sh
Maintainers: . (@c0b),
Tristan Sloughter (@tsloughter)
GitRepo: https://github.com/erlef/docker-elixir.git
-Tags: 1.12.0, 1.12, latest
+Tags: 1.15.6, 1.15, latest
Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
-GitCommit: 48384028d82c791618b094c33663d0b2f44db0d1
+GitCommit: 12358eab8cf67ffaa9ce9a081f8cbbf12a3e4980
+Directory: 1.15
+
+Tags: 1.15.6-slim, 1.15-slim, slim
+Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
+GitCommit: 12358eab8cf67ffaa9ce9a081f8cbbf12a3e4980
+Directory: 1.15/slim
+
+Tags: 1.15.6-alpine, 1.15-alpine, alpine
+Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
+GitCommit: 12358eab8cf67ffaa9ce9a081f8cbbf12a3e4980
+Directory: 1.15/alpine
+
+Tags: 1.15.6-otp-24, 1.15-otp-24, otp-24
+Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
+GitCommit: 12358eab8cf67ffaa9ce9a081f8cbbf12a3e4980
+Directory: 1.15/otp-24
+
+Tags: 1.15.6-otp-24-alpine, 1.15-otp-24-alpine, otp-24-alpine
+Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
+GitCommit: 12358eab8cf67ffaa9ce9a081f8cbbf12a3e4980
+Directory: 1.15/otp-24-alpine
+
+Tags: 1.15.6-otp-24-slim, 1.15-otp-24-slim, otp-24-slim
+Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
+GitCommit: 12358eab8cf67ffaa9ce9a081f8cbbf12a3e4980
+Directory: 1.15/otp-24-slim
+
+Tags: 1.15.6-otp-25, 1.15-otp-25, otp-25
+Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
+GitCommit: 12358eab8cf67ffaa9ce9a081f8cbbf12a3e4980
+Directory: 1.15/otp-25
+
+Tags: 1.15.6-otp-25-alpine, 1.15-otp-25-alpine, otp-25-alpine
+Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
+GitCommit: 12358eab8cf67ffaa9ce9a081f8cbbf12a3e4980
+Directory: 1.15/otp-25-alpine
+
+Tags: 1.15.6-otp-25-slim, 1.15-otp-25-slim, otp-25-slim
+Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
+GitCommit: 12358eab8cf67ffaa9ce9a081f8cbbf12a3e4980
+Directory: 1.15/otp-25-slim
+
+Tags: 1.14.5, 1.14
+Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
+GitCommit: b8a45e284e0032a25e993ff60a8c6ea733848ad1
+Directory: 1.14
+
+Tags: 1.14.5-slim, 1.14-slim
+Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
+GitCommit: b8a45e284e0032a25e993ff60a8c6ea733848ad1
+Directory: 1.14/slim
+
+Tags: 1.14.5-alpine, 1.14-alpine
+Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
+GitCommit: b8a45e284e0032a25e993ff60a8c6ea733848ad1
+Directory: 1.14/alpine
+
+Tags: 1.14.5-otp-24, 1.14-otp-24
+Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
+GitCommit: af8772135e126d906a96b347d83af796c55bd181
+Directory: 1.14/otp-24
+
+Tags: 1.14.5-otp-24-alpine, 1.14-otp-24-alpine
+Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
+GitCommit: af8772135e126d906a96b347d83af796c55bd181
+Directory: 1.14/otp-24-alpine
+
+Tags: 1.14.5-otp-24-slim, 1.14-otp-24-slim
+Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
+GitCommit: af8772135e126d906a96b347d83af796c55bd181
+Directory: 1.14/otp-24-slim
+
+Tags: 1.14.5-otp-25, 1.14-otp-25
+Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
+GitCommit: af8772135e126d906a96b347d83af796c55bd181
+Directory: 1.14/otp-25
+
+Tags: 1.14.5-otp-25-alpine, 1.14-otp-25-alpine
+Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
+GitCommit: af8772135e126d906a96b347d83af796c55bd181
+Directory: 1.14/otp-25-alpine
+
+Tags: 1.14.5-otp-25-slim, 1.14-otp-25-slim
+Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
+GitCommit: af8772135e126d906a96b347d83af796c55bd181
+Directory: 1.14/otp-25-slim
+
+Tags: 1.13.4, 1.13
+Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
+GitCommit: 328f4c09d39b06502a90fa0c5bb30d6972593fac
+Directory: 1.13
+
+Tags: 1.13.4-slim, 1.13-slim
+Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
+GitCommit: 328f4c09d39b06502a90fa0c5bb30d6972593fac
+Directory: 1.13/slim
+
+Tags: 1.13.4-alpine, 1.13-alpine
+Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
+GitCommit: 328f4c09d39b06502a90fa0c5bb30d6972593fac
+Directory: 1.13/alpine
+
+Tags: 1.13.4-otp-23-slim, 1.13-otp-23-slim
+Architectures: amd64, arm32v7, arm64v8, i386
+GitCommit: 2bc3fd2b7218d6958c766c42b86e259949b56b95
+Directory: 1.13/otp-23-slim
+
+Tags: 1.13.4-otp-25, 1.13-otp-25
+Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
+GitCommit: 253f56764ed34d41e4279cb741d84dcb4b284a55
+Directory: 1.13/otp-25
+
+Tags: 1.13.4-otp-25-alpine, 1.13-otp-25-alpine
+Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
+GitCommit: 253f56764ed34d41e4279cb741d84dcb4b284a55
+Directory: 1.13/otp-25-alpine
+
+Tags: 1.13.4-otp-25-slim, 1.13-otp-25-slim
+Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
+GitCommit: 253f56764ed34d41e4279cb741d84dcb4b284a55
+Directory: 1.13/otp-25-slim
+
+Tags: 1.12.3, 1.12
+Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
+GitCommit: a7a9a8ecd02b6e31e93cfa13d8c18de0328f6e1a
Directory: 1.12
-Tags: 1.12.0-slim, 1.12-slim, slim
+Tags: 1.12.3-slim, 1.12-slim
Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
-GitCommit: 48384028d82c791618b094c33663d0b2f44db0d1
+GitCommit: a7a9a8ecd02b6e31e93cfa13d8c18de0328f6e1a
Directory: 1.12/slim
-Tags: 1.12.0-alpine, 1.12-alpine, alpine
+Tags: 1.12.3-alpine, 1.12-alpine
Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
-GitCommit: 48384028d82c791618b094c33663d0b2f44db0d1
+GitCommit: a7a9a8ecd02b6e31e93cfa13d8c18de0328f6e1a
Directory: 1.12/alpine
Tags: 1.11.4, 1.11
-Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
+Architectures: amd64, arm32v7, arm64v8, i386
GitCommit: 045351a425a16578309053fa8f729f046fcd616f
Directory: 1.11
Tags: 1.11.4-slim, 1.11-slim
-Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
+Architectures: amd64, arm32v7, arm64v8, i386
GitCommit: 045351a425a16578309053fa8f729f046fcd616f
Directory: 1.11/slim
Tags: 1.11.4-alpine, 1.11-alpine
-Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
+Architectures: amd64, arm32v7, arm64v8, i386
GitCommit: 045351a425a16578309053fa8f729f046fcd616f
Directory: 1.11/alpine
Tags: 1.10.4, 1.10
-Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
+Architectures: amd64, arm32v7, arm64v8, i386
GitCommit: a8d582c328db5864a4e8e5f869900e3a52265f38
Directory: 1.10
Tags: 1.10.4-slim, 1.10-slim
-Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
+Architectures: amd64, arm32v7, arm64v8, i386
GitCommit: a8d582c328db5864a4e8e5f869900e3a52265f38
Directory: 1.10/slim
Tags: 1.10.4-alpine, 1.10-alpine
-Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
+Architectures: amd64, arm32v7, arm64v8, i386
GitCommit: a8d582c328db5864a4e8e5f869900e3a52265f38
Directory: 1.10/alpine
Tags: 1.9.4, 1.9
-Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
+Architectures: amd64, arm32v7, arm64v8, i386
GitCommit: 0d9f47458468a8bf1407374731cbec077ab6f895
Directory: 1.9
Tags: 1.9.4-slim, 1.9-slim
-Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
+Architectures: amd64, arm32v7, arm64v8, i386
GitCommit: 0d9f47458468a8bf1407374731cbec077ab6f895
Directory: 1.9/slim
Tags: 1.9.4-alpine, 1.9-alpine
-Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
+Architectures: amd64, arm32v7, arm64v8, i386
GitCommit: 0d9f47458468a8bf1407374731cbec077ab6f895
Directory: 1.9/alpine
@@ -74,11 +199,6 @@ Architectures: amd64, arm32v7, arm64v8, i386
GitCommit: 4122b4840bd762d1434424e1ec693929b0198c98
Directory: 1.8/slim
-Tags: 1.8.2-alpine, 1.8-alpine
-Architectures: amd64, arm32v7, arm64v8, i386
-GitCommit: 4122b4840bd762d1434424e1ec693929b0198c98
-Directory: 1.8/alpine
-
Tags: 1.8.2-otp-22, 1.8-otp-22
Architectures: amd64, arm32v7, arm64v8, i386
GitCommit: 6dc5ffd3b4c2915096887b45ba8e71d391ce2398
@@ -98,33 +218,3 @@ Tags: 1.7.4-slim, 1.7-slim
Architectures: amd64, arm32v7, arm64v8, i386
GitCommit: 7c1f05ca3fd47bdc86cab3f0310068646a31dcac
Directory: 1.7/slim
-
-Tags: 1.7.4-alpine, 1.7-alpine
-Architectures: amd64, arm32v7, arm64v8, i386
-GitCommit: 2b7dd2845d27a6dad57bf0047b305375d6182402
-Directory: 1.7/alpine
-
-Tags: 1.6.6, 1.6
-Architectures: amd64, arm32v7, arm64v8, i386
-GitCommit: 0936291249c7e11d4618a17a2b452045c9e6233a
-Directory: 1.6
-
-Tags: 1.6.6-slim, 1.6-slim
-Architectures: amd64, arm32v7, arm64v8, i386
-GitCommit: 0936291249c7e11d4618a17a2b452045c9e6233a
-Directory: 1.6/slim
-
-Tags: 1.6.6-alpine, 1.6-alpine
-Architectures: amd64, arm32v7, arm64v8, i386
-GitCommit: 0936291249c7e11d4618a17a2b452045c9e6233a
-Directory: 1.6/alpine
-
-Tags: 1.6.6-otp-21, 1.6-otp-21
-Architectures: amd64, arm32v7, arm64v8, i386
-GitCommit: b57a72d04ddd1f1b4e2e3f5b70e44e37def4db31
-Directory: 1.6/otp-21
-
-Tags: 1.6.6-otp-21-alpine, 1.6-otp-21-alpine
-Architectures: amd64, arm32v7, arm64v8, i386
-GitCommit: 373b3a8017bd774b7d193818a326de0fde7f6733
-Directory: 1.6/otp-21-alpine
diff --git a/library/emqx b/library/emqx
new file mode 100644
index 0000000000..5b46d6b210
--- /dev/null
+++ b/library/emqx
@@ -0,0 +1,27 @@
+Maintainers: Rory Z (@rory-z), Ivan Dyachkov (@id)
+GitRepo: https://github.com/emqx/emqx-docker.git
+GitFetch: refs/heads/main
+
+Tags: 5.0.26, 5.0
+Architectures: amd64, arm64v8
+GitCommit: 5fa7e9eac34517170ade58660cb65e5a5870c783
+Directory: 5.0
+File: Dockerfile
+
+Tags: 5.1.6, 5.1
+Architectures: amd64, arm64v8
+GitCommit: dfa1507bc031b4f24ffa29f838dbad1868e35d01
+Directory: 5.1
+File: Dockerfile
+
+Tags: 5.2.1, 5.2
+Architectures: amd64, arm64v8
+GitCommit: eb71b6a3cca1505e14d4b0e6fcd50a43330125bb
+Directory: 5.2
+File: Dockerfile
+
+Tags: 5.3.0, 5.3, 5, latest
+Architectures: amd64, arm64v8
+GitCommit: b831255e1b833d4e56110904b1cb6d4eb899efda
+Directory: 5.3
+File: Dockerfile
diff --git a/library/erlang b/library/erlang
index dfd908ecab..83ffa86665 100644
--- a/library/erlang
+++ b/library/erlang
@@ -1,99 +1,99 @@
-# this file is generated via https://github.com/erlang/docker-erlang-otp/blob/974493b1ce4fc3fb4af34306e957629250fa4648/generate-stackbrew-library.sh
+# this file is generated via https://github.com/erlang/docker-erlang-otp/blob/b42d51c5cfd3100a31f1e463dcefe31e815e896f/generate-stackbrew-library.sh
Maintainers: Mr C0B (@c0b)
GitRepo: https://github.com/erlang/docker-erlang-otp.git
-Tags: 24.0.1.0, 24.0.1, 24.0, 24, latest
-Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
-GitCommit: abfd637ea53fff8814eee01f865a88d8b4c21c57
+Tags: 26.1.1.0, 26.1.1, 26.1, 26, latest
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: 4179d71533edb030e76fb18085e6c27a1b838215
+Directory: 26
+
+Tags: 26.1.1.0-slim, 26.1.1-slim, 26.1-slim, 26-slim, slim
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: 4179d71533edb030e76fb18085e6c27a1b838215
+Directory: 26/slim
+
+Tags: 26.1.1.0-alpine, 26.1.1-alpine, 26.1-alpine, 26-alpine, alpine
+Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: 4179d71533edb030e76fb18085e6c27a1b838215
+Directory: 26/alpine
+
+Tags: 25.3.2.6, 25.3.2, 25.3, 25
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: 4179d71533edb030e76fb18085e6c27a1b838215
+Directory: 25
+
+Tags: 25.3.2.6-slim, 25.3.2-slim, 25.3-slim, 25-slim
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: 4179d71533edb030e76fb18085e6c27a1b838215
+Directory: 25/slim
+
+Tags: 25.3.2.6-alpine, 25.3.2-alpine, 25.3-alpine, 25-alpine
+Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: 4179d71533edb030e76fb18085e6c27a1b838215
+Directory: 25/alpine
+
+Tags: 24.3.4.13, 24.3.4, 24.3, 24
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: bdc1fbcb4dc2636db8756af66d878a85e7afd0a7
Directory: 24
-Tags: 24.0.1.0-slim, 24.0.1-slim, 24.0-slim, 24-slim, slim
-Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
-GitCommit: 84d8c156c9b582708c69107131834dc7fc61c0c4
+Tags: 24.3.4.13-slim, 24.3.4-slim, 24.3-slim, 24-slim
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: bdc1fbcb4dc2636db8756af66d878a85e7afd0a7
Directory: 24/slim
-Tags: 24.0.1.0-alpine, 24.0.1-alpine, 24.0-alpine, 24-alpine, alpine
-Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
-GitCommit: abfd637ea53fff8814eee01f865a88d8b4c21c57
+Tags: 24.3.4.13-alpine, 24.3.4-alpine, 24.3-alpine, 24-alpine
+Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: bdc1fbcb4dc2636db8756af66d878a85e7afd0a7
Directory: 24/alpine
-Tags: 23.3.4.1, 23.3.4, 23.3, 23
-Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
-GitCommit: abfd637ea53fff8814eee01f865a88d8b4c21c57
+Tags: 23.3.4.19, 23.3.4, 23.3, 23
+Architectures: amd64, arm32v7, arm64v8, i386
+GitCommit: 91311b4b6e25a98416f87f77004361ce7439fece
Directory: 23
-Tags: 23.3.4.1-slim, 23.3.4-slim, 23.3-slim, 23-slim
-Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
-GitCommit: 84d8c156c9b582708c69107131834dc7fc61c0c4
+Tags: 23.3.4.19-slim, 23.3.4-slim, 23.3-slim, 23-slim
+Architectures: amd64, arm32v7, arm64v8, i386
+GitCommit: 91311b4b6e25a98416f87f77004361ce7439fece
Directory: 23/slim
-Tags: 23.3.4.1-alpine, 23.3.4-alpine, 23.3-alpine, 23-alpine
-Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
-GitCommit: abfd637ea53fff8814eee01f865a88d8b4c21c57
+Tags: 23.3.4.19-alpine, 23.3.4-alpine, 23.3-alpine, 23-alpine
+Architectures: amd64, arm32v7, arm64v8, i386
+GitCommit: 91311b4b6e25a98416f87f77004361ce7439fece
Directory: 23/alpine
-Tags: 22.3.4.19, 22.3.4, 22.3, 22
-Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
-GitCommit: abfd637ea53fff8814eee01f865a88d8b4c21c57
+Tags: 22.3.4.26, 22.3.4, 22.3, 22
+Architectures: amd64, arm32v7, arm64v8, i386
+GitCommit: 33d107cb0428c2eeb9d2c3a5cdbc5a6f83bea897
Directory: 22
-Tags: 22.3.4.19-slim, 22.3.4-slim, 22.3-slim, 22-slim
-Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
-GitCommit: 84d8c156c9b582708c69107131834dc7fc61c0c4
+Tags: 22.3.4.26-slim, 22.3.4-slim, 22.3-slim, 22-slim
+Architectures: amd64, arm32v7, arm64v8, i386
+GitCommit: 33d107cb0428c2eeb9d2c3a5cdbc5a6f83bea897
Directory: 22/slim
-Tags: 22.3.4.19-alpine, 22.3.4-alpine, 22.3-alpine, 22-alpine
-Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
-GitCommit: abfd637ea53fff8814eee01f865a88d8b4c21c57
+Tags: 22.3.4.26-alpine, 22.3.4-alpine, 22.3-alpine, 22-alpine
+Architectures: amd64, arm32v7, arm64v8, i386
+GitCommit: 33d107cb0428c2eeb9d2c3a5cdbc5a6f83bea897
Directory: 22/alpine
-Tags: 21.3.8.23, 21.3.8, 21.3, 21
+Tags: 21.3.8.24, 21.3.8, 21.3, 21
Architectures: amd64, arm32v7, arm64v8, i386
-GitCommit: abfd637ea53fff8814eee01f865a88d8b4c21c57
+GitCommit: fd21a3bf876b240b413d2cd4543d832dca466c5c
Directory: 21
-Tags: 21.3.8.23-slim, 21.3.8-slim, 21.3-slim, 21-slim
+Tags: 21.3.8.24-slim, 21.3.8-slim, 21.3-slim, 21-slim
Architectures: amd64, arm32v7, arm64v8, i386
-GitCommit: 84d8c156c9b582708c69107131834dc7fc61c0c4
+GitCommit: fd21a3bf876b240b413d2cd4543d832dca466c5c
Directory: 21/slim
-Tags: 21.3.8.23-alpine, 21.3.8-alpine, 21.3-alpine, 21-alpine
-Architectures: amd64, arm32v7, arm64v8, i386
-GitCommit: abfd637ea53fff8814eee01f865a88d8b4c21c57
-Directory: 21/alpine
-
Tags: 20.3.8.26, 20.3.8, 20.3, 20
Architectures: amd64, arm32v7, arm64v8, i386
-GitCommit: abfd637ea53fff8814eee01f865a88d8b4c21c57
+GitCommit: fd21a3bf876b240b413d2cd4543d832dca466c5c
Directory: 20
Tags: 20.3.8.26-slim, 20.3.8-slim, 20.3-slim, 20-slim
Architectures: amd64, arm32v7, arm64v8, i386
-GitCommit: 84d8c156c9b582708c69107131834dc7fc61c0c4
+GitCommit: fd21a3bf876b240b413d2cd4543d832dca466c5c
Directory: 20/slim
-
-Tags: 20.3.8.26-alpine, 20.3.8-alpine, 20.3-alpine, 20-alpine
-Architectures: amd64, arm32v7, arm64v8, i386
-GitCommit: abfd637ea53fff8814eee01f865a88d8b4c21c57
-Directory: 20/alpine
-
-Tags: 19.3.6.13, 19.3.6, 19.3, 19
-Architectures: amd64, arm32v7, arm64v8, i386
-GitCommit: abfd637ea53fff8814eee01f865a88d8b4c21c57
-Directory: 19
-
-Tags: 19.3.6.13-slim, 19.3.6-slim, 19.3-slim, 19-slim
-Architectures: amd64, arm32v7, arm64v8, i386
-GitCommit: 84d8c156c9b582708c69107131834dc7fc61c0c4
-Directory: 19/slim
-
-Tags: 18.3.4.11, 18.3.4, 18.3, 18
-Architectures: amd64, arm32v7, arm64v8, i386
-GitCommit: e91894d9d9c3651382834b77978a05fa057338fb
-Directory: 18
-
-Tags: 18.3.4.11-slim, 18.3.4-slim, 18.3-slim, 18-slim
-Architectures: amd64, arm32v7, arm64v8, i386
-GitCommit: e91894d9d9c3651382834b77978a05fa057338fb
-Directory: 18/slim
diff --git a/library/euleros b/library/euleros
deleted file mode 100644
index 75ecaf66d9..0000000000
--- a/library/euleros
+++ /dev/null
@@ -1,44 +0,0 @@
-Maintainers: Li Ruilin (@Kazero0),
- Liu Hua (@liusdu)
-GitRepo: https://github.com/euleros/euleros-docker-images.git
-GitCommit: db22e2c392c3922d2c674110c90667576618f348
-
-Tags: 2.3.1809, latest
-Architectures: arm64v8, amd64
-# https://github.com/euleros/euleros-docker-images/tree/v2.3.1809-arm64
-arm64v8-GitFetch: refs/heads/v2.3.1809-arm64
-arm64v8-GitCommit: 6b013446976a40f497470975238f5d002d9fff30
-arm64v8-Directory: 2.3.1809/aarch64/
-# https://github.com/euleros/euleros-docker-images/tree/v2.3.1809-amd64
-amd64-GitFetch: refs/heads/v2.3.1809-amd64
-amd64-GitCommit: db22e2c392c3922d2c674110c90667576618f348
-amd64-Directory: 2.3.1809/x86_64/
-
-
-Tags: 2.3.1806
-Architectures: arm64v8, amd64
-# https://github.com/euleros/euleros-docker-images/tree/v2.3.1806-arm64
-arm64v8-GitFetch: refs/heads/v2.3.1806-arm64
-arm64v8-GitCommit: 3cc318b6aaaeb3c69c3ee577f06c1a42c20c9ec5
-arm64v8-Directory: 2.3.1806/aarch64/
-# https://github.com/euleros/euleros-docker-images/tree/v2.3.1806-amd64
-amd64-GitFetch: refs/heads/v2.3.1806-amd64
-amd64-GitCommit: e304245f74141e6e856a017c8d204c27300c1da8
-amd64-Directory: 2.3.1806/x86_64/
-
-Tags: 2.3.1803
-Architectures: arm64v8, amd64
-# https://github.com/euleros/euleros-docker-images/tree/v2.3.1803-arm64
-arm64v8-GitFetch: refs/heads/v2.3.1803-arm64
-arm64v8-GitCommit: 319851fa9feead40201cb2a20b6b8b65e0815429
-arm64v8-Directory: 2.3.1803/aarch64/
-# https://github.com/euleros/euleros-docker-images/tree/v2.3.1803-amd64
-amd64-GitFetch: refs/heads/v2.3.1803-amd64
-amd64-GitCommit: 5afd15edcd49671adefb6dff87537f2943ae1107
-amd64-Directory: 2.3.1803/x86_64/
-
-Tags: 2.2
-Architectures: amd64
-GitFetch: refs/heads/v2.2
-GitCommit: 959f378638f222bd1eebe8dccf267cccbc118174
-Directory: 2.2
diff --git a/library/fedora b/library/fedora
index cdee8d20b2..2102674167 100644
--- a/library/fedora
+++ b/library/fedora
@@ -1,40 +1,38 @@
Maintainers: Clement Verna (@cverna), Vipul Siddharth (@siddharthvipul)
GitRepo: https://github.com/fedora-cloud/docker-brew-fedora.git
-Tags: 32
-Architectures: amd64, arm64v8, ppc64le, s390x, arm32v7
-GitFetch: refs/heads/32
-GitCommit: ddec1000ce5ba6f6d48b83092baa0931c71463d2
-amd64-Directory: x86_64/
-arm64v8-Directory: aarch64/
-ppc64le-Directory: ppc64le/
-s390x-Directory: s390x/
-arm32v7-Directory: armhfp/
-
-Tags: 33
-Architectures: amd64, arm64v8, ppc64le, s390x, arm32v7
-GitFetch: refs/heads/33
-GitCommit: 4293f02de052e495f1b1af2d3df355cf18f1727d
-amd64-Directory: x86_64/
-arm64v8-Directory: aarch64/
-ppc64le-Directory: ppc64le/
-s390x-Directory: s390x/
-arm32v7-Directory: armhfp/
-
-Tags: 34, latest
-Architectures: amd64, arm64v8, ppc64le, s390x, arm32v7
-GitFetch: refs/heads/34
-GitCommit: e17c1865f91c27130c0dc2b43b27d1a8c0426b45
+Tags: 37
+Architectures: amd64, arm64v8, ppc64le, s390x
+GitFetch: refs/heads/37
+GitCommit: 92f8d968c2d36860c10f454673a7cc279eeff27e
amd64-Directory: x86_64/
arm64v8-Directory: aarch64/
s390x-Directory: s390x/
-arm32v7-Directory: armhfp/
ppc64le-Directory: ppc64le/
-Tags: rawhide, 35
-Architectures: amd64, arm64v8, arm32v7
-GitFetch: refs/heads/35
-GitCommit: c1c184937d0e9db2ceba54d64084d0ad032eed77
+Tags: 38, latest
+Architectures: amd64, arm64v8, ppc64le, s390x
+GitFetch: refs/heads/38
+GitCommit: 8e90bfda941f51e85c0742f51fb8901f05574a0a
amd64-Directory: x86_64/
arm64v8-Directory: aarch64/
-arm32v7-Directory: armhfp/
+s390x-Directory: s390x/
+ppc64le-Directory: ppc64le/
+
+Tags: 39
+Architectures: amd64, arm64v8, ppc64le, s390x
+GitFetch: refs/heads/39
+GitCommit: 48661c7e79573338c8bf5f0bf203154b77c4e5bc
+amd64-Directory: x86_64/
+arm64v8-Directory: aarch64/
+s390x-Directory: s390x/
+ppc64le-Directory: ppc64le/
+
+Tags: 40, rawhide
+Architectures: amd64, arm64v8, ppc64le, s390x
+GitFetch: refs/heads/40
+GitCommit: 5fe5849c451c8a40a4bd7521792fa2683c93678e
+amd64-Directory: x86_64/
+arm64v8-Directory: aarch64/
+s390x-Directory: s390x/
+ppc64le-Directory: ppc64le/
diff --git a/library/flink b/library/flink
index b376a2c371..b311655cb5 100644
--- a/library/flink
+++ b/library/flink
@@ -1,44 +1,33 @@
# this file is generated via https://github.com/apache/flink-docker/blob/187238c6b444457d9b57279715fa16b37fe59e45/generate-stackbrew-library.sh
-
Maintainers: The Apache Flink Project (@ApacheFlink)
GitRepo: https://github.com/apache/flink-docker.git
-Tags: 1.13.0-scala_2.12-java8, 1.13-scala_2.12-java8, scala_2.12-java8, 1.13.0-scala_2.12, 1.13-scala_2.12, scala_2.12, 1.13.0-java8, 1.13-java8, java8, 1.13.0, 1.13, latest
-Architectures: amd64
-GitCommit: b4075f035bad482e132be6709efd004827162acb
-Directory: ./1.13/scala_2.12-java8-debian
+Tags: 1.17.1-scala_2.12-java8, 1.17-scala_2.12-java8, scala_2.12-java8, 1.17.1-java8, 1.17-java8, java8
+Architectures: amd64,arm64v8
+GitCommit: abc36dd88483a221c0f5495c742bd95c349e9ac2
+Directory: ./1.17/scala_2.12-java8-ubuntu
-Tags: 1.13.0-scala_2.12-java11, 1.13-scala_2.12-java11, scala_2.12-java11, 1.13.0-java11, 1.13-java11, java11
-Architectures: amd64
-GitCommit: b4075f035bad482e132be6709efd004827162acb
-Directory: ./1.13/scala_2.12-java11-debian
+Tags: 1.17.1-scala_2.12-java11, 1.17-scala_2.12-java11, scala_2.12-java11, 1.17.1-scala_2.12, 1.17-scala_2.12, scala_2.12, 1.17.1-java11, 1.17-java11, java11, 1.17.1, 1.17, latest
+Architectures: amd64,arm64v8
+GitCommit: abc36dd88483a221c0f5495c742bd95c349e9ac2
+Directory: ./1.17/scala_2.12-java11-ubuntu
-Tags: 1.13.0-scala_2.11-java8, 1.13-scala_2.11-java8, scala_2.11-java8, 1.13.0-scala_2.11, 1.13-scala_2.11, scala_2.11
-Architectures: amd64
-GitCommit: b4075f035bad482e132be6709efd004827162acb
-Directory: ./1.13/scala_2.11-java8-debian
+Tags: 1.16.2-scala_2.12-java8, 1.16-scala_2.12-java8, 1.16.2-java8, 1.16-java8
+Architectures: amd64,arm64v8
+GitCommit: 45c6d230407d89aa83b0d170dd056d6868cf808e
+Directory: ./1.16/scala_2.12-java8-ubuntu
-Tags: 1.13.0-scala_2.11-java11, 1.13-scala_2.11-java11, scala_2.11-java11
-Architectures: amd64
-GitCommit: b4075f035bad482e132be6709efd004827162acb
-Directory: ./1.13/scala_2.11-java11-debian
+Tags: 1.16.2-scala_2.12-java11, 1.16-scala_2.12-java11, 1.16.2-scala_2.12, 1.16-scala_2.12, 1.16.2-java11, 1.16-java11, 1.16.2, 1.16
+Architectures: amd64,arm64v8
+GitCommit: 45c6d230407d89aa83b0d170dd056d6868cf808e
+Directory: ./1.16/scala_2.12-java11-ubuntu
-Tags: 1.12.4-scala_2.12-java8, 1.12-scala_2.12-java8, 1.12.4-scala_2.12, 1.12-scala_2.12, 1.12.4-java8, 1.12-java8, 1.12.4, 1.12
-Architectures: amd64
-GitCommit: c2002d4fd452d3254a21e8972f46b322ce12f9ef
-Directory: ./1.12/scala_2.12-java8-debian
+Tags: 1.15.4-scala_2.12-java8, 1.15-scala_2.12-java8, 1.15.4-java8, 1.15-java8
+Architectures: amd64,arm64v8
+GitCommit: c9754889a57fad2d8fff2a1975f076a0caebb28c
+Directory: ./1.15/scala_2.12-java8-ubuntu
-Tags: 1.12.4-scala_2.12-java11, 1.12-scala_2.12-java11, 1.12.4-java11, 1.12-java11
-Architectures: amd64
-GitCommit: c2002d4fd452d3254a21e8972f46b322ce12f9ef
-Directory: ./1.12/scala_2.12-java11-debian
-
-Tags: 1.12.4-scala_2.11-java8, 1.12-scala_2.11-java8, 1.12.4-scala_2.11, 1.12-scala_2.11
-Architectures: amd64
-GitCommit: c2002d4fd452d3254a21e8972f46b322ce12f9ef
-Directory: ./1.12/scala_2.11-java8-debian
-
-Tags: 1.12.4-scala_2.11-java11, 1.12-scala_2.11-java11
-Architectures: amd64
-GitCommit: c2002d4fd452d3254a21e8972f46b322ce12f9ef
-Directory: ./1.12/scala_2.11-java11-debian
\ No newline at end of file
+Tags: 1.15.4-scala_2.12-java11, 1.15-scala_2.12-java11, 1.15.4-scala_2.12, 1.15-scala_2.12, 1.15.4-java11, 1.15-java11, 1.15.4, 1.15
+Architectures: amd64,arm64v8
+GitCommit: c9754889a57fad2d8fff2a1975f076a0caebb28c
+Directory: ./1.15/scala_2.12-java11-ubuntu
diff --git a/library/fluentd b/library/fluentd
index 4ae7049a55..b9741295e1 100644
--- a/library/fluentd
+++ b/library/fluentd
@@ -3,13 +3,13 @@ Maintainers: Masahiro Nakagawa (@repeatedly),
GitRepo: https://github.com/fluent/fluentd-docker-image.git
# Alpine images
-Tags: v1.9.1-1.0, v1.9-1, latest
+Tags: v1.16.2-1.1, v1.16-1, latest
Architectures: amd64, arm32v6, arm64v8, i386, ppc64le, s390x
-GitCommit: b9cb2826b85900f960e256b2426a033e7cacfd6c
-Directory: v1.9/alpine
+GitCommit: a4dd65768ec1819574e570716955276c9089326a
+Directory: v1.16/alpine
# Debian images
-Tags: v1.9.1-debian-1.0, v1.9-debian-1
+Tags: v1.16.2-debian-1.1, v1.16-debian-1
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: b9cb2826b85900f960e256b2426a033e7cacfd6c
-Directory: v1.9/debian
+GitCommit: a4dd65768ec1819574e570716955276c9089326a
+Directory: v1.16/debian
diff --git a/library/friendica b/library/friendica
index 89bfc03f9e..4bb534074c 100644
--- a/library/friendica
+++ b/library/friendica
@@ -1,79 +1,50 @@
-# This file is generated via https://github.com/friendica/docker/blob/3dc6dc004b8824dd1cd31ada78894cbb3ee66133/generate-stackbrew-library.sh
+# This file is generated via https://github.com/friendica/docker/blob/d4e093ff0623994154320e6b4d9ea906ec5a580d/generate-stackbrew-library.sh
Maintainers: Friendica (@friendica), Philipp Holzer (@nupplaphil)
GitRepo: https://github.com/friendica/docker.git
+GitFetch: refs/heads/stable
-Tags: 2020.09-apache, 2020.09
+Tags: 2023.05-apache, apache, stable-apache, 2023.05, latest, stable
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: 88db303a9ad22024d505b28390af384e28a5a624
-Directory: 2020.09/apache
+GitCommit: 74b970887dc7bd2f9127282c86fc6133728cbd71
+Directory: 2023.05/apache
-Tags: 2020.09-fpm
+Tags: 2023.05-fpm, fpm, stable-fpm
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: 88db303a9ad22024d505b28390af384e28a5a624
-Directory: 2020.09/fpm
+GitCommit: 74b970887dc7bd2f9127282c86fc6133728cbd71
+Directory: 2023.05/fpm
-Tags: 2020.09-fpm-alpine
+Tags: 2023.05-fpm-alpine, fpm-alpine, stable-fpm-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 88db303a9ad22024d505b28390af384e28a5a624
-Directory: 2020.09/fpm-alpine
+GitCommit: 74b970887dc7bd2f9127282c86fc6133728cbd71
+Directory: 2023.05/fpm-alpine
-Tags: 2021.01-apache, 2021.01
+Tags: 2023.09-dev-apache, dev-apache, 2023.09-dev, dev
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: 88db303a9ad22024d505b28390af384e28a5a624
-Directory: 2021.01/apache
+GitCommit: 74b970887dc7bd2f9127282c86fc6133728cbd71
+Directory: 2023.09-dev/apache
-Tags: 2021.01-fpm
+Tags: 2023.09-dev-fpm, dev-fpm
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: 88db303a9ad22024d505b28390af384e28a5a624
-Directory: 2021.01/fpm
+GitCommit: 74b970887dc7bd2f9127282c86fc6133728cbd71
+Directory: 2023.09-dev/fpm
-Tags: 2021.01-fpm-alpine
+Tags: 2023.09-dev-fpm-alpine, dev-fpm-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 88db303a9ad22024d505b28390af384e28a5a624
-Directory: 2021.01/fpm-alpine
+GitCommit: 74b970887dc7bd2f9127282c86fc6133728cbd71
+Directory: 2023.09-dev/fpm-alpine
-Tags: 2021.04-apache, apache, stable-apache, 2021.04, latest, stable
+Tags: 2023.09-rc-apache, rc-apache, 2023.09-rc, rc
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: 9e22de455afc8ba9a39b3b17316f613e2b4d0df8
-Directory: 2021.04/apache
+GitCommit: 19498098d2b4cf7e3849cfa62b5143a4201000b4
+Directory: 2023.09-rc/apache
-Tags: 2021.04-fpm, fpm, stable-fpm
+Tags: 2023.09-rc-fpm, rc-fpm
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: 9e22de455afc8ba9a39b3b17316f613e2b4d0df8
-Directory: 2021.04/fpm
+GitCommit: 19498098d2b4cf7e3849cfa62b5143a4201000b4
+Directory: 2023.09-rc/fpm
-Tags: 2021.04-fpm-alpine, fpm-alpine, stable-fpm-alpine
+Tags: 2023.09-rc-fpm-alpine, rc-fpm-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 9e22de455afc8ba9a39b3b17316f613e2b4d0df8
-Directory: 2021.04/fpm-alpine
-
-Tags: 2021.06-dev-apache, dev-apache, 2021.06-dev, dev
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: 9e22de455afc8ba9a39b3b17316f613e2b4d0df8
-Directory: 2021.06-dev/apache
-
-Tags: 2021.06-dev-fpm, dev-fpm
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: 9e22de455afc8ba9a39b3b17316f613e2b4d0df8
-Directory: 2021.06-dev/fpm
-
-Tags: 2021.06-dev-fpm-alpine, dev-fpm-alpine
-Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 9e22de455afc8ba9a39b3b17316f613e2b4d0df8
-Directory: 2021.06-dev/fpm-alpine
-
-Tags: 2021.06-rc-apache, rc-apache, 2021.06-rc, rc
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: 0efa3647e8b4efa2994501c5470345f29faa5bc5
-Directory: 2021.06-rc/apache
-
-Tags: 2021.06-rc-fpm, rc-fpm
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: 0efa3647e8b4efa2994501c5470345f29faa5bc5
-Directory: 2021.06-rc/fpm
-
-Tags: 2021.06-rc-fpm-alpine, rc-fpm-alpine
-Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 0efa3647e8b4efa2994501c5470345f29faa5bc5
-Directory: 2021.06-rc/fpm-alpine
+GitCommit: 19498098d2b4cf7e3849cfa62b5143a4201000b4
+Directory: 2023.09-rc/fpm-alpine
diff --git a/library/fsharp b/library/fsharp
deleted file mode 100644
index 19696b5213..0000000000
--- a/library/fsharp
+++ /dev/null
@@ -1,14 +0,0 @@
-Maintainers: Dave Curylo (@ninjarobot),
- Steve Desmond (@stevedesmond-ca)
-GitRepo: https://github.com/fsprojects/docker-fsharp.git
-GitCommit: a47a73b4b99d85720e191680e29f1bd1d62724ea
-
-Tags: latest, 10, 10.10, 10.10.0
-Architectures: amd64, arm64v8
-Directory: 10.10.0/mono
-
-Tags: 4, 4.1, 4.1.34
-Directory: 4.1.34/mono
-
-Tags: netcore, 10-netcore, 10.10-netcore, 10.10.0-netcore
-Directory: 10.10.0/netcore
diff --git a/library/gazebo b/library/gazebo
index 2623a16927..b0a98bfe6e 100644
--- a/library/gazebo
+++ b/library/gazebo
@@ -1,62 +1,19 @@
Maintainers: Tully Foote (@tfoote)
GitRepo: https://github.com/osrf/docker_images.git
-################################################################################
-# Release: 9
-
-########################################
-# Distro: ubuntu:xenial
-
-Tags: gzserver9-xenial
-Architectures: amd64
-GitCommit: c1a6cab08c9a8b85c869d24b31f6243ad4646cee
-Directory: gazebo/9/ubuntu/xenial/gzserver9
-
-Tags: libgazebo9-xenial
-Architectures: amd64
-GitCommit: c1a6cab08c9a8b85c869d24b31f6243ad4646cee
-Directory: gazebo/9/ubuntu/xenial/libgazebo9
-
-########################################
-# Distro: ubuntu:bionic
-
-Tags: gzserver9, gzserver9-bionic
-Architectures: amd64
-GitCommit: 7178a9d0d509c8c222fffa6edff4d84124fb46ee
-Directory: gazebo/9/ubuntu/bionic/gzserver9
-
-Tags: libgazebo9, libgazebo9-bionic
-Architectures: amd64
-GitCommit: 7178a9d0d509c8c222fffa6edff4d84124fb46ee
-Directory: gazebo/9/ubuntu/bionic/libgazebo9
-
-
################################################################################
# Release: 11
-########################################
-# Distro: ubuntu:bionic
-
-Tags: gzserver11-bionic
-Architectures: amd64
-GitCommit: 48051c3f57c5c632407920a4beec2c2953f1b6f5
-Directory: gazebo/11/ubuntu/bionic/gzserver11
-
-Tags: libgazebo11-bionic
-Architectures: amd64
-GitCommit: 48051c3f57c5c632407920a4beec2c2953f1b6f5
-Directory: gazebo/11/ubuntu/bionic/libgazebo11
-
########################################
# Distro: ubuntu:focal
Tags: gzserver11, gzserver11-focal
Architectures: amd64
-GitCommit: 163a37c8a124c3e46872f7904c0fddf251d81160
+GitCommit: 99ff497288ca42e33d777a0d04fb8c026aca2f40
Directory: gazebo/11/ubuntu/focal/gzserver11
Tags: libgazebo11, libgazebo11-focal, latest
Architectures: amd64
-GitCommit: 163a37c8a124c3e46872f7904c0fddf251d81160
+GitCommit: 99ff497288ca42e33d777a0d04fb8c026aca2f40
Directory: gazebo/11/ubuntu/focal/libgazebo11
diff --git a/library/gcc b/library/gcc
index 400a0d0dfe..2c75e49add 100644
--- a/library/gcc
+++ b/library/gcc
@@ -1,33 +1,40 @@
-# this file is generated via https://github.com/docker-library/gcc/blob/bb63178b4a0781555d904c3ac3897c9b81d922c8/generate-stackbrew-library.sh
+# this file is generated via https://github.com/docker-library/gcc/blob/00b26e718cb2a42fca77676383917c1e5c15b6ca/generate-stackbrew-library.sh
Maintainers: Tianon Gravi (@tianon),
Joseph Ferguson (@yosifkit)
GitRepo: https://github.com/docker-library/gcc.git
-# Last Modified: 2021-04-27
-Tags: 11.1.0, 11.1, 11, latest, 11.1.0-bullseye, 11.1-bullseye, 11-bullseye, bullseye
+# Last Modified: 2023-07-27
+Tags: 13.2.0, 13.2, 13, latest, 13.2.0-bookworm, 13.2-bookworm, 13-bookworm, bookworm
Architectures: amd64, arm32v5, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: a5937a0b39e55c174007c2b9c2f363cdd2142818
+GitCommit: af458ec8254ef7ca3344f12631e2356b20b4a7f1
+Directory: 13
+# Docker EOL: 2025-01-27
+
+# Last Modified: 2023-05-08
+Tags: 12.3.0, 12.3, 12, 12.3.0-bookworm, 12.3-bookworm, 12-bookworm
+Architectures: amd64, arm32v5, arm32v7, arm64v8, ppc64le, s390x
+GitCommit: e7e43ba8177ce15f473d9a799c9e69735e4dbab4
+Directory: 12
+# Docker EOL: 2024-11-08
+
+# Last Modified: 2023-05-29
+Tags: 11.4.0, 11.4, 11, 11.4.0-bullseye, 11.4-bullseye, 11-bullseye
+Architectures: amd64, arm32v5, arm32v7, arm64v8, ppc64le, s390x
+GitCommit: e7e43ba8177ce15f473d9a799c9e69735e4dbab4
Directory: 11
-# Docker EOL: 2022-10-27
+# Docker EOL: 2024-11-29
-# Last Modified: 2021-04-08
-Tags: 10.3.0, 10.3, 10, 10.3.0-buster, 10.3-buster, 10-buster
+# Last Modified: 2023-07-07
+Tags: 10.5.0, 10.5, 10, 10.5.0-bullseye, 10.5-bullseye, 10-bullseye
Architectures: amd64, arm32v5, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: a5937a0b39e55c174007c2b9c2f363cdd2142818
+GitCommit: 82cd9a2f8eb0da43f9b938b92ee78d8747eb16d1
Directory: 10
-# Docker EOL: 2022-10-08
+# Docker EOL: 2025-01-07
-# Last Modified: 2020-03-12
-Tags: 9.3.0, 9.3, 9, 9.3.0-buster, 9.3-buster, 9-buster
+# Last Modified: 2022-05-27
+Tags: 9.5.0, 9.5, 9, 9.5.0-bullseye, 9.5-bullseye, 9-bullseye
Architectures: amd64, arm32v5, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: a5937a0b39e55c174007c2b9c2f363cdd2142818
+GitCommit: e7e43ba8177ce15f473d9a799c9e69735e4dbab4
Directory: 9
-# Docker EOL: 2021-09-12
-
-# Last Modified: 2021-05-14
-Tags: 8.5.0, 8.5, 8, 8.5.0-buster, 8.5-buster, 8-buster
-Architectures: amd64, arm32v5, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: 93a66921c867fd54e7672e852a8aec4619fbc6de
-Directory: 8
-# Docker EOL: 2022-11-14
+# Docker EOL: 2023-11-27
diff --git a/library/geonetwork b/library/geonetwork
index d705524a9a..97435db786 100644
--- a/library/geonetwork
+++ b/library/geonetwork
@@ -1,30 +1,26 @@
-# this file is generated via https://github.com/geonetwork/docker-geonetwork/blob/2569285483fb984c55bb8952958ec60025d38c3b/generate-stackbrew-library.sh
+# this file is generated via https://github.com/geonetwork/docker-geonetwork/blob/3dd8a6f569eb7755235e770f06c0f6e9659a4277/generate-stackbrew-library.sh
Maintainers: Joana Simoes (@doublebyte1),
Juan Luis Rodriguez (@juanluisrp)
GitRepo: https://github.com/geonetwork/docker-geonetwork
+GitFetch: refs/heads/main
-Tags: 3.10.6, 3.10
+Tags: 3.12.11, 3.12, 3
+Architectures: amd64, arm32v7, arm64v8, ppc64le
+GitCommit: de27e28bd62ce359bae1940caf83fadc8d5108ac
+Directory: 3.12.11
+
+Tags: 3.12.11-postgres, 3.12-postgres, 3-postgres
+Architectures: amd64, arm32v7, arm64v8, ppc64le
+GitCommit: de27e28bd62ce359bae1940caf83fadc8d5108ac
+Directory: 3.12.11/postgres
+
+Tags: 4.0.6, 4.0
Architectures: amd64, arm64v8
-GitCommit: a737bd2c96b3d960ba6c9cade863d2330386847a
-Directory: 3.10.6
+GitCommit: 00936dcf7dbb2399405c53aa05c670fa4bb79736
+Directory: 4.0.6
-Tags: 3.10.6-postgres, 3.10-postgres
+Tags: 4.2.6, 4.2, 4, latest
Architectures: amd64, arm64v8
-GitCommit: a737bd2c96b3d960ba6c9cade863d2330386847a
-Directory: 3.10.6/postgres
-
-Tags: 3.12.0, 3.12, 3
-Architectures: amd64, arm64v8
-GitCommit: 2569285483fb984c55bb8952958ec60025d38c3b
-Directory: 3.12.0
-
-Tags: 3.12.0-postgres, 3.12-postgres, 3-postgres
-Architectures: amd64, arm64v8
-GitCommit: 2569285483fb984c55bb8952958ec60025d38c3b
-Directory: 3.12.0/postgres
-
-Tags: 4.0.4, 4.0, 4, latest
-Architectures: amd64
-GitCommit: 4c0be361accedb96a1a96b4689c7eb133ddca5b7
-Directory: 4.0.4
+GitCommit: 3dd8a6f569eb7755235e770f06c0f6e9659a4277
+Directory: 4.2.6
diff --git a/library/ghost b/library/ghost
index 4f9f5c8788..a0655fc350 100644
--- a/library/ghost
+++ b/library/ghost
@@ -1,25 +1,16 @@
-# this file is generated via https://github.com/docker-library/ghost/blob/50c6e6bc5e38a96f48cf1033b86223212803418f/generate-stackbrew-library.sh
+# this file is generated via https://github.com/docker-library/ghost/blob/ded836149ec5086738eaba49d4c5c31568e8a466/generate-stackbrew-library.sh
Maintainers: Tianon Gravi (@tianon),
- Joseph Ferguson (@yosifkit)
+ Joseph Ferguson (@yosifkit),
+ Austin Burdine (@acburdine)
GitRepo: https://github.com/docker-library/ghost.git
-Tags: 4.6.4, 4.6, 4, latest
+Tags: 5.67.0, 5.67, 5, latest
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: 032682c19f94179427d593c19e451e63aaa4c550
-Directory: 4/debian
+GitCommit: fae9e5a5222553c1a2746dd31779df1ea1277785
+Directory: 5/debian
-Tags: 4.6.4-alpine, 4.6-alpine, 4-alpine, alpine
+Tags: 5.67.0-alpine, 5.67-alpine, 5-alpine, alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8
-GitCommit: 032682c19f94179427d593c19e451e63aaa4c550
-Directory: 4/alpine
-
-Tags: 3.42.5, 3.42, 3
-Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: 5f8c4895e23dc9ee4281aea85ee7f1093a4fbf0c
-Directory: 3/debian
-
-Tags: 3.42.5-alpine, 3.42-alpine, 3-alpine
-Architectures: amd64, arm32v6, arm32v7, arm64v8
-GitCommit: 5f8c4895e23dc9ee4281aea85ee7f1093a4fbf0c
-Directory: 3/alpine
+GitCommit: fae9e5a5222553c1a2746dd31779df1ea1277785
+Directory: 5/alpine
diff --git a/library/golang b/library/golang
index fda803e173..0824356deb 100644
--- a/library/golang
+++ b/library/golang
@@ -1,90 +1,104 @@
-# this file is generated via https://github.com/docker-library/golang/blob/0a17cd3bee09788bc9b24c505e12b2d11788564e/generate-stackbrew-library.sh
+# this file is generated via https://github.com/docker-library/golang/blob/b637fdd34c14d0629dfb632f57b1d177d5dc40f0/generate-stackbrew-library.sh
Maintainers: Tianon Gravi (@tianon),
Joseph Ferguson (@yosifkit),
Johan Euphrosine (@proppy)
GitRepo: https://github.com/docker-library/golang.git
-Tags: 1.16.4-buster, 1.16-buster, 1-buster, buster
-SharedTags: 1.16.4, 1.16, 1, latest
+Tags: 1.21.2-bookworm, 1.21-bookworm, 1-bookworm, bookworm
+SharedTags: 1.21.2, 1.21, 1, latest
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: ad65a7b21b2689de3a15334a7db2917a3b9216ec
-Directory: 1.16/buster
+GitCommit: f0d301c385958888968d6ab8f8510c3cd5cce704
+Directory: 1.21/bookworm
-Tags: 1.16.4-stretch, 1.16-stretch, 1-stretch, stretch
-Architectures: amd64, arm32v7, arm64v8, i386
-GitCommit: ad65a7b21b2689de3a15334a7db2917a3b9216ec
-Directory: 1.16/stretch
+Tags: 1.21.2-bullseye, 1.21-bullseye, 1-bullseye, bullseye
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: f0d301c385958888968d6ab8f8510c3cd5cce704
+Directory: 1.21/bullseye
-Tags: 1.16.4-alpine3.13, 1.16-alpine3.13, 1-alpine3.13, alpine3.13, 1.16.4-alpine, 1.16-alpine, 1-alpine, alpine
+Tags: 1.21.2-alpine3.18, 1.21-alpine3.18, 1-alpine3.18, alpine3.18, 1.21.2-alpine, 1.21-alpine, 1-alpine, alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: ad65a7b21b2689de3a15334a7db2917a3b9216ec
-Directory: 1.16/alpine3.13
+GitCommit: f0d301c385958888968d6ab8f8510c3cd5cce704
+Directory: 1.21/alpine3.18
-Tags: 1.16.4-alpine3.12, 1.16-alpine3.12, 1-alpine3.12, alpine3.12
+Tags: 1.21.2-alpine3.17, 1.21-alpine3.17, 1-alpine3.17, alpine3.17
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: ad65a7b21b2689de3a15334a7db2917a3b9216ec
-Directory: 1.16/alpine3.12
+GitCommit: f0d301c385958888968d6ab8f8510c3cd5cce704
+Directory: 1.21/alpine3.17
-Tags: 1.16.4-windowsservercore-1809, 1.16-windowsservercore-1809, 1-windowsservercore-1809, windowsservercore-1809
-SharedTags: 1.16.4-windowsservercore, 1.16-windowsservercore, 1-windowsservercore, windowsservercore, 1.16.4, 1.16, 1, latest
+Tags: 1.21.2-windowsservercore-ltsc2022, 1.21-windowsservercore-ltsc2022, 1-windowsservercore-ltsc2022, windowsservercore-ltsc2022
+SharedTags: 1.21.2-windowsservercore, 1.21-windowsservercore, 1-windowsservercore, windowsservercore, 1.21.2, 1.21, 1, latest
Architectures: windows-amd64
-GitCommit: ad65a7b21b2689de3a15334a7db2917a3b9216ec
-Directory: 1.16/windows/windowsservercore-1809
+GitCommit: f0d301c385958888968d6ab8f8510c3cd5cce704
+Directory: 1.21/windows/windowsservercore-ltsc2022
+Constraints: windowsservercore-ltsc2022
+
+Tags: 1.21.2-windowsservercore-1809, 1.21-windowsservercore-1809, 1-windowsservercore-1809, windowsservercore-1809
+SharedTags: 1.21.2-windowsservercore, 1.21-windowsservercore, 1-windowsservercore, windowsservercore, 1.21.2, 1.21, 1, latest
+Architectures: windows-amd64
+GitCommit: f0d301c385958888968d6ab8f8510c3cd5cce704
+Directory: 1.21/windows/windowsservercore-1809
Constraints: windowsservercore-1809
-Tags: 1.16.4-windowsservercore-ltsc2016, 1.16-windowsservercore-ltsc2016, 1-windowsservercore-ltsc2016, windowsservercore-ltsc2016
-SharedTags: 1.16.4-windowsservercore, 1.16-windowsservercore, 1-windowsservercore, windowsservercore, 1.16.4, 1.16, 1, latest
+Tags: 1.21.2-nanoserver-ltsc2022, 1.21-nanoserver-ltsc2022, 1-nanoserver-ltsc2022, nanoserver-ltsc2022
+SharedTags: 1.21.2-nanoserver, 1.21-nanoserver, 1-nanoserver, nanoserver
Architectures: windows-amd64
-GitCommit: ad65a7b21b2689de3a15334a7db2917a3b9216ec
-Directory: 1.16/windows/windowsservercore-ltsc2016
-Constraints: windowsservercore-ltsc2016
+GitCommit: f0d301c385958888968d6ab8f8510c3cd5cce704
+Directory: 1.21/windows/nanoserver-ltsc2022
+Constraints: nanoserver-ltsc2022, windowsservercore-ltsc2022
-Tags: 1.16.4-nanoserver-1809, 1.16-nanoserver-1809, 1-nanoserver-1809, nanoserver-1809
-SharedTags: 1.16.4-nanoserver, 1.16-nanoserver, 1-nanoserver, nanoserver
+Tags: 1.21.2-nanoserver-1809, 1.21-nanoserver-1809, 1-nanoserver-1809, nanoserver-1809
+SharedTags: 1.21.2-nanoserver, 1.21-nanoserver, 1-nanoserver, nanoserver
Architectures: windows-amd64
-GitCommit: ad65a7b21b2689de3a15334a7db2917a3b9216ec
-Directory: 1.16/windows/nanoserver-1809
+GitCommit: f0d301c385958888968d6ab8f8510c3cd5cce704
+Directory: 1.21/windows/nanoserver-1809
Constraints: nanoserver-1809, windowsservercore-1809
-Tags: 1.15.12-buster, 1.15-buster
-SharedTags: 1.15.12, 1.15
+Tags: 1.20.9-bookworm, 1.20-bookworm
+SharedTags: 1.20.9, 1.20
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: 35c42a11279b92365d376997fcfbfbdde756ea01
-Directory: 1.15/buster
+GitCommit: d47076e3070196e128f769ca0720009aacc86e65
+Directory: 1.20/bookworm
-Tags: 1.15.12-stretch, 1.15-stretch
-Architectures: amd64, arm32v7, arm64v8, i386
-GitCommit: 35c42a11279b92365d376997fcfbfbdde756ea01
-Directory: 1.15/stretch
+Tags: 1.20.9-bullseye, 1.20-bullseye
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: d47076e3070196e128f769ca0720009aacc86e65
+Directory: 1.20/bullseye
-Tags: 1.15.12-alpine3.13, 1.15-alpine3.13, 1.15.12-alpine, 1.15-alpine
+Tags: 1.20.9-alpine3.18, 1.20-alpine3.18, 1.20.9-alpine, 1.20-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 35c42a11279b92365d376997fcfbfbdde756ea01
-Directory: 1.15/alpine3.13
+GitCommit: d47076e3070196e128f769ca0720009aacc86e65
+Directory: 1.20/alpine3.18
-Tags: 1.15.12-alpine3.12, 1.15-alpine3.12
+Tags: 1.20.9-alpine3.17, 1.20-alpine3.17
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 35c42a11279b92365d376997fcfbfbdde756ea01
-Directory: 1.15/alpine3.12
+GitCommit: d47076e3070196e128f769ca0720009aacc86e65
+Directory: 1.20/alpine3.17
-Tags: 1.15.12-windowsservercore-1809, 1.15-windowsservercore-1809
-SharedTags: 1.15.12-windowsservercore, 1.15-windowsservercore, 1.15.12, 1.15
+Tags: 1.20.9-windowsservercore-ltsc2022, 1.20-windowsservercore-ltsc2022
+SharedTags: 1.20.9-windowsservercore, 1.20-windowsservercore, 1.20.9, 1.20
Architectures: windows-amd64
-GitCommit: 35c42a11279b92365d376997fcfbfbdde756ea01
-Directory: 1.15/windows/windowsservercore-1809
+GitCommit: d47076e3070196e128f769ca0720009aacc86e65
+Directory: 1.20/windows/windowsservercore-ltsc2022
+Constraints: windowsservercore-ltsc2022
+
+Tags: 1.20.9-windowsservercore-1809, 1.20-windowsservercore-1809
+SharedTags: 1.20.9-windowsservercore, 1.20-windowsservercore, 1.20.9, 1.20
+Architectures: windows-amd64
+GitCommit: d47076e3070196e128f769ca0720009aacc86e65
+Directory: 1.20/windows/windowsservercore-1809
Constraints: windowsservercore-1809
-Tags: 1.15.12-windowsservercore-ltsc2016, 1.15-windowsservercore-ltsc2016
-SharedTags: 1.15.12-windowsservercore, 1.15-windowsservercore, 1.15.12, 1.15
+Tags: 1.20.9-nanoserver-ltsc2022, 1.20-nanoserver-ltsc2022
+SharedTags: 1.20.9-nanoserver, 1.20-nanoserver
Architectures: windows-amd64
-GitCommit: 35c42a11279b92365d376997fcfbfbdde756ea01
-Directory: 1.15/windows/windowsservercore-ltsc2016
-Constraints: windowsservercore-ltsc2016
+GitCommit: d47076e3070196e128f769ca0720009aacc86e65
+Directory: 1.20/windows/nanoserver-ltsc2022
+Constraints: nanoserver-ltsc2022, windowsservercore-ltsc2022
-Tags: 1.15.12-nanoserver-1809, 1.15-nanoserver-1809
-SharedTags: 1.15.12-nanoserver, 1.15-nanoserver
+Tags: 1.20.9-nanoserver-1809, 1.20-nanoserver-1809
+SharedTags: 1.20.9-nanoserver, 1.20-nanoserver
Architectures: windows-amd64
-GitCommit: 35c42a11279b92365d376997fcfbfbdde756ea01
-Directory: 1.15/windows/nanoserver-1809
+GitCommit: d47076e3070196e128f769ca0720009aacc86e65
+Directory: 1.20/windows/nanoserver-1809
Constraints: nanoserver-1809, windowsservercore-1809
diff --git a/library/gradle b/library/gradle
index 7ae2a33540..43ad54ad63 100644
--- a/library/gradle
+++ b/library/gradle
@@ -1,121 +1,167 @@
Maintainers: Keegan Witt (@keeganwitt)
GitRepo: https://github.com/keeganwitt/docker-gradle.git
-# Hotspot
-Tags: 7.0.2-jdk8, 7.0.2-jdk8-hotspot, 7.0-jdk8, 7.0-jdk8-hotspot, 7-jdk8, 7-jdk8-hotspot, jdk8, jdk8-hotspot, 7.0.2-jdk, 7.0.2-jdk-hotspot, 7.0-jdk, 7.0-jdk-hotspot, 7-jdk, 7-jdk-hotspot, jdk, jdk-hotspot, 7.0.2, 7.0.2-hotspot, 7.0, 7.0-hotspot, 7, 7-hotspot, latest, hotspot
+# Gradle 8.x
+
+Tags: 8.4.0-jdk8, 8.4-jdk8, 8-jdk8, jdk8, 8.4.0-jdk8-jammy, 8.4-jdk8-jammy, 8-jdk8-jammy, jdk8-jammy
+Architectures: amd64, arm32v7, arm64v8, ppc64le
+GitCommit: ae8311e2e41fbd2837f7a39df7e4b24e00f9b905
+Directory: jdk8
+
+Tags: 8.4.0-jdk8-focal, 8.4-jdk8-focal, 8-jdk8-focal, jdk8-focal
+Architectures: amd64, arm32v7, arm64v8, ppc64le
+GitCommit: ae8311e2e41fbd2837f7a39df7e4b24e00f9b905
+Directory: jdk8-focal
+
+Tags: 8.4.0-jdk11, 8.4-jdk11, 8-jdk11, jdk11, 8.4.0-jdk11-jammy, 8.4-jdk11-jammy, 8-jdk11-jammy, jdk11-jammy
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: f7b336763b0bc658605154d322ab4a99e2549b64
-Directory: hotspot/jdk8
+GitCommit: ae8311e2e41fbd2837f7a39df7e4b24e00f9b905
+Directory: jdk11
-Tags: 7.0.2-jre8, 7.0.2-jre8-hotspot, 7.0-jre8, 7.0-jre8-hotspot, 7-jre8, 7-jre8-hotspot, jre8, jre8-hotspot, 7.0.2-jre, 7.0.2-jre-hotspot, 7.0-jre, 7.0-jre-hotspot, 7-jre, 7-jre-hotspot, jre, jre-hotspot
+Tags: 8.4.0-jdk11-focal, 8.4-jdk11-focal, 8-jdk11-focal, jdk11-focal
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: f7b336763b0bc658605154d322ab4a99e2549b64
-Directory: hotspot/jre8
+GitCommit: ae8311e2e41fbd2837f7a39df7e4b24e00f9b905
+Directory: jdk11-focal
-Tags: 7.0.2-jdk11, 7.0.2-jdk11-hotspot, 7.0-jdk11, 7.0-jdk11-hotspot, 7-jdk11, 7-jdk11-hotspot, jdk11, jdk11-hotspot
+Tags: 8.4.0-jdk11-alpine, 8.4-jdk11-alpine, 8-jdk11-alpine, jdk11-alpine
+Architectures: amd64
+GitCommit: ae8311e2e41fbd2837f7a39df7e4b24e00f9b905
+Directory: jdk11-alpine
+
+Tags: 8.4.0-jdk17, 8.4-jdk17, 8-jdk17, jdk17, 8.4.0-jdk, 8.4-jdk, 8-jdk, jdk, 8.4.0, 8.4, 8, latest, 8.4.0-jdk17-jammy, 8.4-jdk17-jammy, 8-jdk17-jammy, jdk17-jammy, 8.4.0-jdk-jammy, 8.4-jdk-jammy, 8-jdk-jammy, jdk-jammy, 8.4.0-jammy, 8.4-jammy, 8-jammy, jammy
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: f7b336763b0bc658605154d322ab4a99e2549b64
-Directory: hotspot/jdk11
+GitCommit: ae8311e2e41fbd2837f7a39df7e4b24e00f9b905
+Directory: jdk17
-Tags: 7.0.2-jre11, 7.0.2-jre11-hotspot, 7.0-jre11, 7.0-jre11-hotspot, 7-jre11, 7-jre11-hotspot, jre11, jre11-hotspot
+Tags: 8.4.0-jdk17-focal, 8.4-jdk17-focal, 8-jdk17-focal, jdk17-focal, 8.4.0-jdk-focal, 8.4-jdk-focal, 8-jdk-focal, jdk-focal, 8.4.0-focal, 8.4-focal, 8-focal, focal
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: f7b336763b0bc658605154d322ab4a99e2549b64
-Directory: hotspot/jre11
+GitCommit: ae8311e2e41fbd2837f7a39df7e4b24e00f9b905
+Directory: jdk17-focal
-Tags: 7.0.2-jdk16, 7.0.2-jdk16-hotspot, 7.0-jdk16, 7.0-jdk16-hotspot, 7-jdk16, 7-jdk16-hotspot, jdk16, jdk16-hotspot
+Tags: 8.4.0-jdk17-alpine, 8.4-jdk17-alpine, 8-jdk17-alpine, jdk17-alpine, 8.4.0-jdk-alpine, 8.4-jdk-alpine, 8-jdk-alpine, jdk-alpine, 8.4.0-alpine, 8.4-alpine, 8-alpine, alpine
+Architectures: amd64
+GitCommit: ae8311e2e41fbd2837f7a39df7e4b24e00f9b905
+Directory: jdk17-alpine
+
+Tags: 8.4.0-jdk17-graal, 8.4-jdk17-graal, 8-jdk17-graal, jdk17-graal, 8.4.0-jdk-graal, 8.4-jdk-graal, 8-jdk-graal, jdk-graal, 8.4.0-graal, 8.4-graal, 8-graal, graal, 8.4.0-jdk17-graal-jammy, 8.4-jdk17-graal-jammy, 8-jdk17-graal-jammy, jdk17-graal-jammy, 8.4.0-jdk-graal-jammy, 8.4-jdk-graal-jammy, 8-jdk-graal-jammy, jdk-graal-jammy, 8.4.0-graal-jammy, 8.4-graal-jammy, 8-graal-jammy, graal-jammy
+Architectures: amd64, arm64v8
+GitCommit: ae8311e2e41fbd2837f7a39df7e4b24e00f9b905
+Directory: jdk17-graal
+
+Tags: 8.4.0-jdk20, 8.4-jdk20, 8-jdk20, jdk20, 8.4.0-jdk20-jammy, 8.4-jdk20-jammy, 8-jdk20-jammy, jdk20-jammy
+Architectures: amd64, arm64v8
+GitCommit: ae8311e2e41fbd2837f7a39df7e4b24e00f9b905
+Directory: jdk20
+
+Tags: 8.4.0-jdk20-alpine, 8.4-jdk20-alpine, 8-jdk20-alpine, jdk20-alpine
+Architectures: amd64
+GitCommit: ae8311e2e41fbd2837f7a39df7e4b24e00f9b905
+Directory: jdk20-alpine
+
+Tags: 8.4.0-jdk20-graal, 8.4-jdk20-graal, 8-jdk20-graal, jdk20-graal, 8.4.0-jdk20-graal-jammy, 8.4-jdk20-graal-jammy, 8-jdk20-graal-jammy, jdk20-graal-jammy
+Architectures: amd64, arm64v8
+GitCommit: ae8311e2e41fbd2837f7a39df7e4b24e00f9b905
+Directory: jdk20-graal
+
+
+# Gradle 7.x
+
+Tags: 7.6.3-jdk8, 7.6-jdk8, 7-jdk8, 7.6.3-jdk8-jammy, 7.6-jdk8-jammy, 7-jdk8-jammy
+GitFetch: refs/heads/7
+Architectures: amd64, arm32v7, arm64v8, ppc64le
+GitCommit: 318da3df050a9a05ae13c8b1481194c6ee056692
+Directory: jdk8
+
+Tags: 7.6.3-jdk8-focal, 7.6-jdk8-focal, 7-jdk8-focal
+GitFetch: refs/heads/7
+Architectures: amd64, arm32v7, arm64v8, ppc64le
+GitCommit: 318da3df050a9a05ae13c8b1481194c6ee056692
+Directory: jdk8-focal
+
+Tags: 7.6.3-jdk11, 7.6-jdk11, 7-jdk11, 7.6.3-jdk11-jammy, 7.6-jdk11-jammy, 7-jdk11-jammy
+GitFetch: refs/heads/7
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: f7b336763b0bc658605154d322ab4a99e2549b64
-Directory: hotspot/jdk16
+GitCommit: 318da3df050a9a05ae13c8b1481194c6ee056692
+Directory: jdk11
-Tags: 7.0.2-jre16, 7.0.2-jre16-hotspot, 7.0-jre16, 7.0-jre16-hotspot, 7-jre16, 7-jre16-hotspot, jre16, jre16-hotspot
+Tags: 7.6.3-jdk11-focal, 7.6-jdk11-focal, 7-jdk11-focal
+GitFetch: refs/heads/7
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: f7b336763b0bc658605154d322ab4a99e2549b64
-Directory: hotspot/jre16
+GitCommit: 318da3df050a9a05ae13c8b1481194c6ee056692
+Directory: jdk11-focal
+
+Tags: 7.6.3-jdk11-alpine, 7.6-jdk11-alpine, 7-jdk11-alpine
+GitFetch: refs/heads/7
+Architectures: amd64
+GitCommit: 318da3df050a9a05ae13c8b1481194c6ee056692
+Directory: jdk11-alpine
+
+Tags: 7.6.3-jdk17, 7.6-jdk17, 7-jdk17, 7.6.3-jdk, 7.6-jdk, 7-jdk, 7.6.3, 7.6, 7, 7.6.3-jdk17-jammy, 7.6-jdk17-jammy, 7-jdk17-jammy, 7.6.3-jdk-jammy, 7.6-jdk-jammy, 7-jdk-jammy, 7.6.3-jammy, 7.6-jammy, 7-jammy
+GitFetch: refs/heads/7
+Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
+GitCommit: 318da3df050a9a05ae13c8b1481194c6ee056692
+Directory: jdk17
+
+Tags: 7.6.3-jdk17-focal, 7.6-jdk17-focal, 7-jdk17-focal, 7.6.3-jdk-focal, 7.6-jdk-focal, 7-jdk-focal, 7.6.3-focal, 7.6-focal, 7-focal
+GitFetch: refs/heads/7
+Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
+GitCommit: 318da3df050a9a05ae13c8b1481194c6ee056692
+Directory: jdk17-focal
+
+Tags: 7.6.3-jdk17-alpine, 7.6-jdk17-alpine, 7-jdk17-alpine, 7.6.3-jdk-alpine, 7.6-jdk-alpine, 7-jdk-alpine, 7.6.3-alpine, 7.6-alpine, 7-alpine
+GitFetch: refs/heads/7
+Architectures: amd64
+GitCommit: 318da3df050a9a05ae13c8b1481194c6ee056692
+Directory: jdk17-alpine
-# OpenJ9
+# Gradle 6.x
-Tags: 7.0.2-jdk8-openj9, 7.0-jdk8-openj9, 7-jdk8-openj9, jdk8-openj9, 7.0.2-jdk-openj9, 7.0-jdk-openj9, 7-jdk-openj9, jdk-openj9, 7.0.2-openj9, 7.0-openj9, 7-openj9, openj9
-Architectures: amd64, arm64v8, ppc64le, s390x
-GitCommit: f7b336763b0bc658605154d322ab4a99e2549b64
-Directory: openj9/jdk8
+Tags: 6.9.4-jdk8, 6.9-jdk8, 6-jdk8, 6.9.4-jdk8-jammy, 6.9-jdk8-jammy, 6-jdk8-jammy
+GitFetch: refs/heads/6
+Architectures: amd64, arm32v7, arm64v8, ppc64le
+GitCommit: 06672bd7ca729b51ef850b51306882c61a8ca606
+Directory: jdk8
-Tags: 7.0.2-jre8-openj9, 7.0-jre8-openj9, 7-jre8-openj9, jre8-openj9, 7.0.2-jre-openj9, 7.0-jre-openj9, 7-jre-openj9, jre-openj9
-Architectures: amd64, arm64v8, ppc64le, s390x
-GitCommit: f7b336763b0bc658605154d322ab4a99e2549b64
-Directory: openj9/jre8
+Tags: 6.9.4-jdk8-focal, 6.9-jdk8-focal, 6-jdk8-focal
+GitFetch: refs/heads/6
+Architectures: amd64, arm32v7, arm64v8, ppc64le
+GitCommit: 06672bd7ca729b51ef850b51306882c61a8ca606
+Directory: jdk8-focal
-Tags: 7.0.2-jdk11-openj9, 7.0-jdk11-openj9, 7-jdk11-openj9, jdk11-openj9
-Architectures: amd64, arm64v8, ppc64le, s390x
-GitCommit: f7b336763b0bc658605154d322ab4a99e2549b64
-Directory: openj9/jdk11
-
-Tags: 7.0.2-jre11-openj9, 7.0-jre11-openj9, 7-jre11-openj9, jre11-openj9
-Architectures: amd64, arm64v8, ppc64le, s390x
-GitCommit: f7b336763b0bc658605154d322ab4a99e2549b64
-Directory: openj9/jre11
-
-Tags: 7.0.2-jdk16-openj9, 7.0-jdk16-openj9, 7-jdk16-openj9, jdk16-openj9
-Architectures: amd64, arm64v8, ppc64le, s390x
-GitCommit: f7b336763b0bc658605154d322ab4a99e2549b64
-Directory: openj9/jdk16
-
-Tags: 7.0.2-jre16-openj9, 7.0-jre16-openj9, 7-jre16-openj9, jre16-openj9
-Architectures: amd64, arm64v8, ppc64le, s390x
-GitCommit: f7b336763b0bc658605154d322ab4a99e2549b64
-Directory: openj9/jre16
-
-
-# Gradle 6.x Hotspot
-
-Tags: 6.9.0-jdk8, 6.9.0-jdk8-hotspot, 6.9-jdk8, 6.9-jdk8-hotspot, 6-jdk8, 6-jdk8-hotspot, 6.9.0-jdk, 6.9.0-jdk-hotspot, 6.9-jdk, 6.9-jdk-hotspot, 6-jdk, 6-jdk-hotspot, 6.9.0, 6.9.0-hotspot, 6.9, 6.9-hotspot, 6, 6-hotspot
+Tags: 6.9.4-jdk11, 6.9-jdk11, 6-jdk11, 6.9.4-jdk11-jammy, 6.9-jdk11-jammy, 6-jdk11-jammy
GitFetch: refs/heads/6
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: 337ce758ae6c3b0c6ebe2e00f5eef2743d34c165
-Directory: hotspot/jdk8
+GitCommit: 06672bd7ca729b51ef850b51306882c61a8ca606
+Directory: jdk11
-Tags: 6.9.0-jre8, 6.9.0-jre8-hotspot, 6.9-jre8, 6.9-jre8-hotspot, 6-jre8, 6-jre8-hotspot, 6.9.0-jre, 6.9.0-jre-hotspot, 6.9-jre, 6.9-jre-hotspot, 6-jre, 6-jre-hotspot
+Tags: 6.9.4-jdk11-focal, 6.9-jdk11-focal, 6-jdk11-focal
GitFetch: refs/heads/6
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: 337ce758ae6c3b0c6ebe2e00f5eef2743d34c165
-Directory: hotspot/jre8
+GitCommit: 06672bd7ca729b51ef850b51306882c61a8ca606
+Directory: jdk11-focal
-Tags: 6.9.0-jdk11, 6.9.0-jdk11-hotspot, 6.9-jdk11, 6.9-jdk11-hotspot, 6-jdk11, 6-jdk11-hotspot
+Tags: 6.9.4-jdk11-alpine, 6.9-jdk11-alpine, 6-jdk11-alpine
+GitFetch: refs/heads/6
+Architectures: amd64
+GitCommit: 06672bd7ca729b51ef850b51306882c61a8ca606
+Directory: jdk11-alpine
+
+Tags: 6.9.4-jdk17, 6.9-jdk17, 6-jdk17, 6.9.4-jdk, 6.9-jdk, 6-jdk, 6.9.4, 6.9, 6, 6.9.4-jdk17-jammy, 6.9-jdk17-jammy, 6-jdk17-jammy, 6.9.4-jdk-jammy, 6.9-jdk-jammy, 6-jdk-jammy, 6.9.4-jammy, 6.9-jammy, 6-jammy
GitFetch: refs/heads/6
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: 337ce758ae6c3b0c6ebe2e00f5eef2743d34c165
-Directory: hotspot/jdk11
+GitCommit: 06672bd7ca729b51ef850b51306882c61a8ca606
+Directory: jdk17
-Tags: 6.9.0-jre11, 6.9.0-jre11-hotspot, 6.9-jre11, 6.9-jre11-hotspot, 6-jre11, 6-jre11-hotspot
+Tags: 6.9.4-jdk17-focal, 6.9-jdk17-focal, 6-jdk17-focal, 6.9.4-jdk-focal, 6.9-jdk-focal, 6-jdk-focal, 6.9.4-focal, 6.9-focal, 6-focal
GitFetch: refs/heads/6
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: 337ce758ae6c3b0c6ebe2e00f5eef2743d34c165
-Directory: hotspot/jre11
+GitCommit: 06672bd7ca729b51ef850b51306882c61a8ca606
+Directory: jdk17-focal
-
-# Gradle 6.x OpenJ9
-
-Tags: 6.9.0-jdk8-openj9, 6.9-jdk8-openj9, 6-jdk8-openj9, 6.9.0-jdk-openj9, 6.9-jdk-openj9, 6-jdk-openj9, 6.9.0-openj9, 6.9-openj9, 6-openj9
+Tags: 6.9.4-jdk17-alpine, 6.9-jdk17-alpine, 6-jdk17-alpine, 6.9.4-jdk-alpine, 6.9-jdk-alpine, 6-jdk-alpine, 6.9.4-alpine, 6.9-alpine, 6-alpine
GitFetch: refs/heads/6
-Architectures: amd64, arm64v8, ppc64le, s390x
-GitCommit: 337ce758ae6c3b0c6ebe2e00f5eef2743d34c165
-Directory: openj9/jdk8
-
-Tags: 6.9.0-jre8-openj9, 6.9-jre8-openj9, 6-jre8-openj9, 6.9.0-jre-openj9, 6.9-jre-openj9, 6-jre-openj9
-GitFetch: refs/heads/6
-Architectures: amd64, arm64v8, ppc64le, s390x
-GitCommit: 337ce758ae6c3b0c6ebe2e00f5eef2743d34c165
-Directory: openj9/jre8
-
-Tags: 6.9.0-jdk11-openj9, 6.9-jdk11-openj9, 6-jdk11-openj9
-GitFetch: refs/heads/6
-Architectures: amd64, arm64v8, ppc64le, s390x
-GitCommit: 337ce758ae6c3b0c6ebe2e00f5eef2743d34c165
-Directory: openj9/jdk11
-
-Tags: 6.9.0-jre11-openj9, 6.9-jre11-openj9, 6-jre11-openj9
-GitFetch: refs/heads/6
-Architectures: amd64, arm64v8, ppc64le, s390x
-GitCommit: 337ce758ae6c3b0c6ebe2e00f5eef2743d34c165
-Directory: openj9/jre11
+Architectures: amd64
+GitCommit: 06672bd7ca729b51ef850b51306882c61a8ca606
+Directory: jdk17-alpine
diff --git a/library/groovy b/library/groovy
index 403deac8e9..a279d49210 100644
--- a/library/groovy
+++ b/library/groovy
@@ -1,74 +1,31 @@
Maintainers: Keegan Witt (@keeganwitt)
GitRepo: https://github.com/groovy/docker-groovy.git
-
-# Groovy 3
-
-Tags: 3.0.8-jdk8, 3.0-jdk8, 3.0.8-jdk, 3.0-jdk, jdk8, jdk
-Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: fc758151cb38024e32f2bf1d05d672eb589d5872
+Tags: 4.0.15-jdk8, 4.0-jdk8, jdk8, 4.0.15-jdk8-jammy, 4.0-jdk8-jammy, jdk8-jammy
+GitFetch: refs/heads/master
+Architectures: amd64, arm32v7, arm64v8, ppc64le
+GitCommit: 66c1c4133dadcd3db4d320cf6680838f7d91e92b
Directory: jdk8
-Tags: 3.0.8-jre8, 3.0-jre8, 3.0.8-jre, 3.0-jre, 3.0.8, 3.0, jre8, jre, latest
+Tags: 4.0.15-jdk11, 4.0-jdk11, jdk11, 4.0.15-jdk11-jammy, 4.0-jdk11-jammy, jdk11-jammy
+GitFetch: refs/heads/master
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: fc758151cb38024e32f2bf1d05d672eb589d5872
-Directory: jre8
-
-Tags: 3.0.8-jdk11, 3.0-jdk11, jdk11
-Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: fc758151cb38024e32f2bf1d05d672eb589d5872
+GitCommit: 66c1c4133dadcd3db4d320cf6680838f7d91e92b
Directory: jdk11
-Tags: 3.0.8-jre11, 3.0-jre11, jre11
+Tags: 4.0.15-jdk11-alpine, 4.0-jdk11-alpine, jdk11-alpine
+GitFetch: refs/heads/master
+Architectures: amd64
+GitCommit: 66c1c4133dadcd3db4d320cf6680838f7d91e92b
+Directory: jdk11-alpine
+
+Tags: 4.0.15-jdk17, 4.0-jdk17, jdk17, 4.0.15-jdk, 4.0-jdk, 4.0.15, 4.0, 4, jdk, latest, 4.0.15-jdk17-jammy, 4.0-jdk17-jammy, jdk17-jammy, 4.0.15-jdk-jammy, 4.0-jdk-jammy, 4.0.15-jammy, 4.0-jammy, 4-jammy, jdk-jammy, jammy
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: fc758151cb38024e32f2bf1d05d672eb589d5872
-Directory: jre11
+GitCommit: 66c1c4133dadcd3db4d320cf6680838f7d91e92b
+Directory: jdk17
-Tags: 3.0.8-jdk16, 3.0-jdk16, jdk16
-Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: fc758151cb38024e32f2bf1d05d672eb589d5872
-Directory: jdk16
-
-Tags: 3.0.8-jre16, 3.0-jre16, jre16
-Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: fc758151cb38024e32f2bf1d05d672eb589d5872
-Directory: jre16
-
-
-# Groovy 4
-
-Tags: 4.0.0-alpha-3-jdk8, 4.0-jdk8, 4.0.0-alpha-3-jdk, 4.0-jdk
-GitFetch: refs/heads/4.0
-Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: ad50fefc1fc19511003471541a68eba490642bd8
-Directory: jdk8
-
-Tags: 4.0.0-alpha-3-jre8, 4.0-jre8, 4.0.0-alpha-3-jre, 4.0-jre, 4.0.0-alpha-3, 4.0
-GitFetch: refs/heads/4.0
-Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: ad50fefc1fc19511003471541a68eba490642bd8
-Directory: jre8
-
-Tags: 4.0.0-alpha-3-jdk11, 4.0-jdk11
-GitFetch: refs/heads/4.0
-Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: ad50fefc1fc19511003471541a68eba490642bd8
-Directory: jdk11
-
-Tags: 4.0.0-alpha-3-jre11, 4.0-jre11
-GitFetch: refs/heads/4.0
-Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: ad50fefc1fc19511003471541a68eba490642bd8
-Directory: jre11
-
-Tags: 4.0.0-alpha-3-jdk16, 4.0-jdk16
-GitFetch: refs/heads/4.0
-Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: ad50fefc1fc19511003471541a68eba490642bd8
-Directory: jdk16
-
-Tags: 4.0.0-alpha-3-jre16, 4.0-jre16
-GitFetch: refs/heads/4.0
-Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: ad50fefc1fc19511003471541a68eba490642bd8
-Directory: jre16
+Tags: 4.0.15-jdk17-alpine, 4.0-jdk17-alpine, jdk17-alpine, 4.0.15-jdk-alpine, 4.0-jdk-alpine, 4.0.15-alpine, 4.0-alpine, 4-alpine, jdk-alpine, alpine
+GitFetch: refs/heads/master
+Architectures: amd64
+GitCommit: 66c1c4133dadcd3db4d320cf6680838f7d91e92b
+Directory: jdk17-alpine
diff --git a/library/haproxy b/library/haproxy
index 75d5651440..75483df129 100644
--- a/library/haproxy
+++ b/library/haproxy
@@ -1,75 +1,75 @@
-# this file is generated via https://github.com/docker-library/haproxy/blob/ae10fbf9bae067e11222c34344c9032060ffa997/generate-stackbrew-library.sh
+# this file is generated via https://github.com/docker-library/haproxy/blob/2d7b121a1dda3f7844ae094f17346be7252e2ad6/generate-stackbrew-library.sh
Maintainers: Tianon Gravi (@tianon),
Joseph Ferguson (@yosifkit)
GitRepo: https://github.com/docker-library/haproxy.git
-Tags: 2.5-dev0, 2.5-dev
+Tags: 2.9-dev6, 2.9-dev, 2.9-dev6-bullseye, 2.9-dev-bullseye
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: ae10fbf9bae067e11222c34344c9032060ffa997
-Directory: 2.5-rc
+GitCommit: 40db7d102d0b5ac819985b7c7ee68e7dd4edd21a
+Directory: 2.9
-Tags: 2.5-dev0-alpine, 2.5-dev-alpine
+Tags: 2.9-dev6-alpine, 2.9-dev-alpine, 2.9-dev6-alpine3.18, 2.9-dev-alpine3.18
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: ae10fbf9bae067e11222c34344c9032060ffa997
-Directory: 2.5-rc/alpine
+GitCommit: 40db7d102d0b5ac819985b7c7ee68e7dd4edd21a
+Directory: 2.9/alpine
-Tags: 2.4.0, 2.4, lts, latest
+Tags: 2.8.3, 2.8, lts, latest, 2.8.3-bullseye, 2.8-bullseye, lts-bullseye, bullseye
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: ae10fbf9bae067e11222c34344c9032060ffa997
+GitCommit: 97bab51de2c27f86ce61bf5ef3f605997a7b98a6
+Directory: 2.8
+
+Tags: 2.8.3-alpine, 2.8-alpine, lts-alpine, alpine, 2.8.3-alpine3.18, 2.8-alpine3.18, lts-alpine3.18, alpine3.18
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: 97bab51de2c27f86ce61bf5ef3f605997a7b98a6
+Directory: 2.8/alpine
+
+Tags: 2.7.10, 2.7, 2.7.10-bullseye, 2.7-bullseye
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: 6ac34139426d79e07ec76ff9a8b9948dc85e34b3
+Directory: 2.7
+
+Tags: 2.7.10-alpine, 2.7-alpine, 2.7.10-alpine3.18, 2.7-alpine3.18
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: 6ac34139426d79e07ec76ff9a8b9948dc85e34b3
+Directory: 2.7/alpine
+
+Tags: 2.6.15, 2.6, 2.6.15-bullseye, 2.6-bullseye
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: fc50ce81390257a9702f3ea74237a73c658a1789
+Directory: 2.6
+
+Tags: 2.6.15-alpine, 2.6-alpine, 2.6.15-alpine3.18, 2.6-alpine3.18
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: fc50ce81390257a9702f3ea74237a73c658a1789
+Directory: 2.6/alpine
+
+Tags: 2.4.24, 2.4, 2.4.24-bullseye, 2.4-bullseye
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: 4c041fe042121e9f30046440f12cf0d2747a5061
Directory: 2.4
-Tags: 2.4.0-alpine, 2.4-alpine, lts-alpine, alpine
+Tags: 2.4.24-alpine, 2.4-alpine, 2.4.24-alpine3.18, 2.4-alpine3.18
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: ae10fbf9bae067e11222c34344c9032060ffa997
+GitCommit: 4c041fe042121e9f30046440f12cf0d2747a5061
Directory: 2.4/alpine
-Tags: 2.3.10, 2.3
+Tags: 2.2.31, 2.2, 2.2.31-bullseye, 2.2-bullseye
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: db9335048c43b78fb4daec1ac9d7d171fc209d78
-Directory: 2.3
-
-Tags: 2.3.10-alpine, 2.3-alpine
-Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: db9335048c43b78fb4daec1ac9d7d171fc209d78
-Directory: 2.3/alpine
-
-Tags: 2.2.14, 2.2
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: 99d68b7d5b3ec68cdfcb7e0cef173e054d491bcb
+GitCommit: ad34487167b0bb727cb56000f26d8ea37449c590
Directory: 2.2
-Tags: 2.2.14-alpine, 2.2-alpine
+Tags: 2.2.31-alpine, 2.2-alpine, 2.2.31-alpine3.18, 2.2-alpine3.18
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 99d68b7d5b3ec68cdfcb7e0cef173e054d491bcb
+GitCommit: ad34487167b0bb727cb56000f26d8ea37449c590
Directory: 2.2/alpine
-Tags: 2.0.22, 2.0
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: a67c29391a51f0fa90c0256b35b5c27d8bc598ce
+Tags: 2.0.33, 2.0, 2.0.33-buster, 2.0-buster
+Architectures: amd64, arm32v7, arm64v8, i386
+GitCommit: 9c85db58f62beefbcbc4fabc5697ddaeb9ff3ff2
Directory: 2.0
-Tags: 2.0.22-alpine, 2.0-alpine
+Tags: 2.0.33-alpine, 2.0-alpine, 2.0.33-alpine3.16, 2.0-alpine3.16
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: a67c29391a51f0fa90c0256b35b5c27d8bc598ce
+GitCommit: 9c85db58f62beefbcbc4fabc5697ddaeb9ff3ff2
Directory: 2.0/alpine
-
-Tags: 1.8.30, 1.8
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: 0e7b078d5ff2ed9f29e4223a5d3d38d191818505
-Directory: 1.8
-
-Tags: 1.8.30-alpine, 1.8-alpine
-Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 0e7b078d5ff2ed9f29e4223a5d3d38d191818505
-Directory: 1.8/alpine
-
-Tags: 1.7.14, 1.7
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: 2991130ba47e26edd1e0eb32239c3a4a7b579aa6
-Directory: 1.7
-
-Tags: 1.7.14-alpine, 1.7-alpine
-Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 2991130ba47e26edd1e0eb32239c3a4a7b579aa6
-Directory: 1.7/alpine
diff --git a/library/haskell b/library/haskell
index 38fc9a6327..5951efd444 100644
--- a/library/haskell
+++ b/library/haskell
@@ -1,20 +1,43 @@
-Maintainers: Peter Salvatore (@psftw),
- Herbert Valerio Riedel (@hvr),
- Alistair Burrowes (@AlistairB)
+Maintainers: Albert Krewinkel (@tarleb),
+ Andrei Dziahel (@develop7)
GitRepo: https://github.com/haskell/docker-haskell
-Tags: 9.0.1-buster, 9.0-buster, 9-buster, buster, 9.0.1, 9.0, 9, latest
-GitCommit: af0dc736060a89e40b87cf11af37e434d52bc10b
+Tags: 9.6.3-buster, 9.6-buster, 9-buster, buster, 9.6.3, 9.6, 9, latest
+Architectures: amd64, arm64v8
+GitCommit: 9bf57e9b736ce1d32fbccbc30f88a48c9e221225
+Directory: 9.6/buster
+
+Tags: 9.6.3-slim-buster, 9.6-slim-buster, 9-slim-buster, slim-buster, 9.6.3-slim, 9.6-slim, 9-slim, slim
+Architectures: amd64, arm64v8
+GitCommit: 9bf57e9b736ce1d32fbccbc30f88a48c9e221225
+Directory: 9.6/slim-buster
+
+Tags: 9.4.7-buster, 9.4-buster, 9.4.7, 9.4
+Architectures: amd64, arm64v8
+GitCommit: 7bb1b4d1f855249d50056a69f071a2f50ad2987d
+Directory: 9.4/buster
+
+Tags: 9.4.7-slim-buster, 9.4-slim-buster, 9.4.7-slim, 9.4-slim
+Architectures: amd64, arm64v8
+GitCommit: 7bb1b4d1f855249d50056a69f071a2f50ad2987d
+Directory: 9.4/slim-buster
+
+Tags: 9.2.8-buster, 9.2-buster, 9.2.8, 9.2
+Architectures: amd64, arm64v8
+GitCommit: 13262afb82e457645a9b9f3f3eadb8e5acd4b5c1
+Directory: 9.2/buster
+
+Tags: 9.2.8-slim-buster, 9.2-slim-buster, 9.2.8-slim, 9.2-slim
+Architectures: amd64, arm64v8
+GitCommit: 13262afb82e457645a9b9f3f3eadb8e5acd4b5c1
+Directory: 9.2/slim-buster
+
+Tags: 9.0.2-buster, 9.0-buster, 9.0.2, 9.0
+Architectures: amd64, arm64v8
+GitCommit: 13262afb82e457645a9b9f3f3eadb8e5acd4b5c1
Directory: 9.0/buster
-Tags: 9.0.1-stretch, 9.0-stretch, 9-stretch, stretch
-GitCommit: af0dc736060a89e40b87cf11af37e434d52bc10b
-Directory: 9.0/stretch
-
-Tags: 8.10.4-buster, 8.10-buster, 8-buster, 8.10.4, 8.10, 8
-GitCommit: af0dc736060a89e40b87cf11af37e434d52bc10b
-Directory: 8.10/buster
-
-Tags: 8.10.4-stretch, 8.10-stretch, 8-stretch
-GitCommit: af0dc736060a89e40b87cf11af37e434d52bc10b
-Directory: 8.10/stretch
+Tags: 9.0.2-slim-buster, 9.0-slim-buster, 9.0.2-slim, 9.0-slim
+Architectures: amd64, arm64v8
+GitCommit: 13262afb82e457645a9b9f3f3eadb8e5acd4b5c1
+Directory: 9.0/slim-buster
diff --git a/library/haxe b/library/haxe
index 1454fb8513..99d69a4d84 100644
--- a/library/haxe
+++ b/library/haxe
@@ -1,282 +1,257 @@
Maintainers: Andy Li (@andyli)
GitRepo: https://github.com/HaxeFoundation/docker-library-haxe.git
-Tags: 4.2.2-buster, 4.2-buster
-SharedTags: 4.2.2, 4.2, latest
+Tags: 4.3.2-bullseye, 4.3-bullseye
+SharedTags: 4.3.2, 4.3, latest
Architectures: amd64, arm32v7, arm64v8
-GitCommit: 317bfa78c53ca0e754a3b81bb53d134dc5c0ea96
+GitCommit: 12949401927fc48a0ba058986fe17f759d0b637e
+Directory: 4.3/bullseye
+
+Tags: 4.3.2-buster, 4.3-buster
+Architectures: amd64, arm32v7, arm64v8
+GitCommit: 12949401927fc48a0ba058986fe17f759d0b637e
+Directory: 4.3/buster
+
+Tags: 4.3.2-windowsservercore-ltsc2022, 4.3-windowsservercore-ltsc2022
+SharedTags: 4.3.2-windowsservercore, 4.3-windowsservercore, 4.3.2, 4.3, latest
+Architectures: windows-amd64
+GitCommit: 12949401927fc48a0ba058986fe17f759d0b637e
+Directory: 4.3/windowsservercore-ltsc2022
+Constraints: windowsservercore-ltsc2022
+
+Tags: 4.3.2-windowsservercore-1809, 4.3-windowsservercore-1809
+SharedTags: 4.3.2-windowsservercore, 4.3-windowsservercore, 4.3.2, 4.3, latest
+Architectures: windows-amd64
+GitCommit: 12949401927fc48a0ba058986fe17f759d0b637e
+Directory: 4.3/windowsservercore-1809
+Constraints: windowsservercore-1809
+
+Tags: 4.3.2-alpine3.18, 4.3-alpine3.18, 4.3.2-alpine, 4.3-alpine
+Architectures: amd64, arm64v8
+GitCommit: 12949401927fc48a0ba058986fe17f759d0b637e
+Directory: 4.3/alpine3.18
+
+Tags: 4.3.2-alpine3.17, 4.3-alpine3.17
+Architectures: amd64, arm64v8
+GitCommit: 12949401927fc48a0ba058986fe17f759d0b637e
+Directory: 4.3/alpine3.17
+
+Tags: 4.3.2-alpine3.16, 4.3-alpine3.16
+Architectures: amd64, arm64v8
+GitCommit: 12949401927fc48a0ba058986fe17f759d0b637e
+Directory: 4.3/alpine3.16
+
+Tags: 4.3.2-alpine3.15, 4.3-alpine3.15
+Architectures: amd64, arm64v8
+GitCommit: 12949401927fc48a0ba058986fe17f759d0b637e
+Directory: 4.3/alpine3.15
+
+Tags: 4.2.5-bullseye, 4.2-bullseye
+SharedTags: 4.2.5, 4.2
+Architectures: amd64, arm32v7, arm64v8
+GitCommit: 4e55b2953c28c448f92aaf265168c1bf85b4867f
+Directory: 4.2/bullseye
+
+Tags: 4.2.5-buster, 4.2-buster
+Architectures: amd64, arm32v7, arm64v8
+GitCommit: 4e55b2953c28c448f92aaf265168c1bf85b4867f
Directory: 4.2/buster
-Tags: 4.2.2-windowsservercore-1809, 4.2-windowsservercore-1809
-SharedTags: 4.2.2-windowsservercore, 4.2-windowsservercore, 4.2.2, 4.2, latest
+Tags: 4.2.5-windowsservercore-ltsc2022, 4.2-windowsservercore-ltsc2022
+SharedTags: 4.2.5-windowsservercore, 4.2-windowsservercore, 4.2.5, 4.2
Architectures: windows-amd64
-GitCommit: 317bfa78c53ca0e754a3b81bb53d134dc5c0ea96
+GitCommit: c0367972017a7b87845bf33477e29b1fe64ccc4a
+Directory: 4.2/windowsservercore-ltsc2022
+Constraints: windowsservercore-ltsc2022
+
+Tags: 4.2.5-windowsservercore-1809, 4.2-windowsservercore-1809
+SharedTags: 4.2.5-windowsservercore, 4.2-windowsservercore, 4.2.5, 4.2
+Architectures: windows-amd64
+GitCommit: c0367972017a7b87845bf33477e29b1fe64ccc4a
Directory: 4.2/windowsservercore-1809
Constraints: windowsservercore-1809
-Tags: 4.2.2-windowsservercore-ltsc2016, 4.2-windowsservercore-ltsc2016
-SharedTags: 4.2.2-windowsservercore, 4.2-windowsservercore, 4.2.2, 4.2, latest
-Architectures: windows-amd64
-GitCommit: 317bfa78c53ca0e754a3b81bb53d134dc5c0ea96
-Directory: 4.2/windowsservercore-ltsc2016
-Constraints: windowsservercore-ltsc2016
-
-Tags: 4.2.2-alpine3.13, 4.2-alpine3.13, 4.2.2-alpine, 4.2-alpine
+Tags: 4.2.5-alpine3.18, 4.2-alpine3.18, 4.2.5-alpine, 4.2-alpine
Architectures: amd64, arm64v8
-GitCommit: 317bfa78c53ca0e754a3b81bb53d134dc5c0ea96
-Directory: 4.2/alpine3.13
+GitCommit: b7003bc3280e69dc057ef0e6e8dfb8fd44ce4741
+Directory: 4.2/alpine3.18
-Tags: 4.2.2-alpine3.12, 4.2-alpine3.12
+Tags: 4.2.5-alpine3.17, 4.2-alpine3.17
Architectures: amd64, arm64v8
-GitCommit: 317bfa78c53ca0e754a3b81bb53d134dc5c0ea96
-Directory: 4.2/alpine3.12
+GitCommit: 40bf9156af6f198cd7a57dbfd452e24dc1ceb94e
+Directory: 4.2/alpine3.17
-Tags: 4.2.2-alpine3.11, 4.2-alpine3.11
+Tags: 4.2.5-alpine3.16, 4.2-alpine3.16
Architectures: amd64, arm64v8
-GitCommit: 317bfa78c53ca0e754a3b81bb53d134dc5c0ea96
-Directory: 4.2/alpine3.11
+GitCommit: 5f520ca3ba5942ab581369bab2cbda2b8c4ab992
+Directory: 4.2/alpine3.16
-Tags: 4.2.2-alpine3.10, 4.2-alpine3.10
+Tags: 4.2.5-alpine3.15, 4.2-alpine3.15
Architectures: amd64, arm64v8
-GitCommit: 317bfa78c53ca0e754a3b81bb53d134dc5c0ea96
-Directory: 4.2/alpine3.10
+GitCommit: 83789c10dc601064a234fd559206d1ec252228d7
+Directory: 4.2/alpine3.15
-Tags: 4.1.5-buster, 4.1-buster
+Tags: 4.1.5-bullseye, 4.1-bullseye
SharedTags: 4.1.5, 4.1
Architectures: amd64, arm32v7, arm64v8
-GitCommit: adf0e23e460a657c77c44f2502e5fa8cf820d020
+GitCommit: 4e55b2953c28c448f92aaf265168c1bf85b4867f
+Directory: 4.1/bullseye
+
+Tags: 4.1.5-buster, 4.1-buster
+Architectures: amd64, arm32v7, arm64v8
+GitCommit: 4e55b2953c28c448f92aaf265168c1bf85b4867f
Directory: 4.1/buster
+Tags: 4.1.5-windowsservercore-ltsc2022, 4.1-windowsservercore-ltsc2022
+SharedTags: 4.1.5-windowsservercore, 4.1-windowsservercore, 4.1.5, 4.1
+Architectures: windows-amd64
+GitCommit: c0367972017a7b87845bf33477e29b1fe64ccc4a
+Directory: 4.1/windowsservercore-ltsc2022
+Constraints: windowsservercore-ltsc2022
+
Tags: 4.1.5-windowsservercore-1809, 4.1-windowsservercore-1809
SharedTags: 4.1.5-windowsservercore, 4.1-windowsservercore, 4.1.5, 4.1
Architectures: windows-amd64
-GitCommit: c01eea28361debd68bc2e1f5318aa0bf28ebb05a
+GitCommit: c0367972017a7b87845bf33477e29b1fe64ccc4a
Directory: 4.1/windowsservercore-1809
Constraints: windowsservercore-1809
-Tags: 4.1.5-windowsservercore-ltsc2016, 4.1-windowsservercore-ltsc2016
-SharedTags: 4.1.5-windowsservercore, 4.1-windowsservercore, 4.1.5, 4.1
-Architectures: windows-amd64
-GitCommit: c01eea28361debd68bc2e1f5318aa0bf28ebb05a
-Directory: 4.1/windowsservercore-ltsc2016
-Constraints: windowsservercore-ltsc2016
-
-Tags: 4.1.5-alpine3.13, 4.1-alpine3.13, 4.1.5-alpine, 4.1-alpine
+Tags: 4.1.5-alpine3.18, 4.1-alpine3.18, 4.1.5-alpine, 4.1-alpine
Architectures: amd64, arm64v8
-GitCommit: c195ebc0755b9debcfacbd6edc977a8ad1cd450e
-Directory: 4.1/alpine3.13
+GitCommit: b7003bc3280e69dc057ef0e6e8dfb8fd44ce4741
+Directory: 4.1/alpine3.18
-Tags: 4.1.5-alpine3.12, 4.1-alpine3.12
+Tags: 4.1.5-alpine3.17, 4.1-alpine3.17
Architectures: amd64, arm64v8
-GitCommit: adf0e23e460a657c77c44f2502e5fa8cf820d020
-Directory: 4.1/alpine3.12
+GitCommit: 40bf9156af6f198cd7a57dbfd452e24dc1ceb94e
+Directory: 4.1/alpine3.17
-Tags: 4.1.5-alpine3.11, 4.1-alpine3.11
+Tags: 4.1.5-alpine3.16, 4.1-alpine3.16
Architectures: amd64, arm64v8
-GitCommit: adf0e23e460a657c77c44f2502e5fa8cf820d020
-Directory: 4.1/alpine3.11
+GitCommit: 5f520ca3ba5942ab581369bab2cbda2b8c4ab992
+Directory: 4.1/alpine3.16
-Tags: 4.1.5-alpine3.10, 4.1-alpine3.10
+Tags: 4.1.5-alpine3.15, 4.1-alpine3.15
Architectures: amd64, arm64v8
-GitCommit: adf0e23e460a657c77c44f2502e5fa8cf820d020
-Directory: 4.1/alpine3.10
+GitCommit: b0098b4b730d0d9ff21dbf3d543464228d6b7e99
+Directory: 4.1/alpine3.15
-Tags: 4.0.5-buster, 4.0-buster
+Tags: 4.0.5-bullseye, 4.0-bullseye
SharedTags: 4.0.5, 4.0
Architectures: amd64, arm32v7, arm64v8
-GitCommit: adf0e23e460a657c77c44f2502e5fa8cf820d020
+GitCommit: 4e55b2953c28c448f92aaf265168c1bf85b4867f
+Directory: 4.0/bullseye
+
+Tags: 4.0.5-buster, 4.0-buster
+Architectures: amd64, arm32v7, arm64v8
+GitCommit: 4e55b2953c28c448f92aaf265168c1bf85b4867f
Directory: 4.0/buster
-Tags: 4.0.5-stretch, 4.0-stretch
-Architectures: amd64, arm32v7, arm64v8
-GitCommit: adf0e23e460a657c77c44f2502e5fa8cf820d020
-Directory: 4.0/stretch
+Tags: 4.0.5-windowsservercore-ltsc2022, 4.0-windowsservercore-ltsc2022
+SharedTags: 4.0.5-windowsservercore, 4.0-windowsservercore, 4.0.5, 4.0
+Architectures: windows-amd64
+GitCommit: c0367972017a7b87845bf33477e29b1fe64ccc4a
+Directory: 4.0/windowsservercore-ltsc2022
+Constraints: windowsservercore-ltsc2022
Tags: 4.0.5-windowsservercore-1809, 4.0-windowsservercore-1809
SharedTags: 4.0.5-windowsservercore, 4.0-windowsservercore, 4.0.5, 4.0
Architectures: windows-amd64
-GitCommit: 38b1ceb14a5692ae2c655c056baaff79d963da33
+GitCommit: c0367972017a7b87845bf33477e29b1fe64ccc4a
Directory: 4.0/windowsservercore-1809
Constraints: windowsservercore-1809
-Tags: 4.0.5-windowsservercore-ltsc2016, 4.0-windowsservercore-ltsc2016
-SharedTags: 4.0.5-windowsservercore, 4.0-windowsservercore, 4.0.5, 4.0
-Architectures: windows-amd64
-GitCommit: 38b1ceb14a5692ae2c655c056baaff79d963da33
-Directory: 4.0/windowsservercore-ltsc2016
-Constraints: windowsservercore-ltsc2016
-
-Tags: 4.0.5-alpine3.13, 4.0-alpine3.13, 4.0.5-alpine, 4.0-alpine
+Tags: 4.0.5-alpine3.18, 4.0-alpine3.18, 4.0.5-alpine, 4.0-alpine
Architectures: amd64, arm64v8
-GitCommit: c195ebc0755b9debcfacbd6edc977a8ad1cd450e
-Directory: 4.0/alpine3.13
+GitCommit: b7003bc3280e69dc057ef0e6e8dfb8fd44ce4741
+Directory: 4.0/alpine3.18
-Tags: 4.0.5-alpine3.12, 4.0-alpine3.12
+Tags: 4.0.5-alpine3.17, 4.0-alpine3.17
Architectures: amd64, arm64v8
-GitCommit: adf0e23e460a657c77c44f2502e5fa8cf820d020
-Directory: 4.0/alpine3.12
+GitCommit: 40bf9156af6f198cd7a57dbfd452e24dc1ceb94e
+Directory: 4.0/alpine3.17
-Tags: 4.0.5-alpine3.11, 4.0-alpine3.11
+Tags: 4.0.5-alpine3.16, 4.0-alpine3.16
Architectures: amd64, arm64v8
-GitCommit: adf0e23e460a657c77c44f2502e5fa8cf820d020
-Directory: 4.0/alpine3.11
+GitCommit: 5f520ca3ba5942ab581369bab2cbda2b8c4ab992
+Directory: 4.0/alpine3.16
-Tags: 4.0.5-alpine3.10, 4.0-alpine3.10
+Tags: 4.0.5-alpine3.15, 4.0-alpine3.15
Architectures: amd64, arm64v8
-GitCommit: adf0e23e460a657c77c44f2502e5fa8cf820d020
-Directory: 4.0/alpine3.10
+GitCommit: b0098b4b730d0d9ff21dbf3d543464228d6b7e99
+Directory: 4.0/alpine3.15
Tags: 3.4.7-buster, 3.4-buster
SharedTags: 3.4.7, 3.4
Architectures: amd64, arm32v7, arm64v8
-GitCommit: 1f586bf85c12ce5c9300f24079912b94c73bc3f7
+GitCommit: 4e55b2953c28c448f92aaf265168c1bf85b4867f
Directory: 3.4/buster
-Tags: 3.4.7-stretch, 3.4-stretch
-Architectures: amd64, arm32v7, arm64v8
-GitCommit: e57329c158b19f881c57a0496afbaf4446895fca
-Directory: 3.4/stretch
+Tags: 3.4.7-windowsservercore-ltsc2022, 3.4-windowsservercore-ltsc2022
+SharedTags: 3.4.7-windowsservercore, 3.4-windowsservercore, 3.4.7, 3.4
+Architectures: windows-amd64
+GitCommit: c0367972017a7b87845bf33477e29b1fe64ccc4a
+Directory: 3.4/windowsservercore-ltsc2022
+Constraints: windowsservercore-ltsc2022
Tags: 3.4.7-windowsservercore-1809, 3.4-windowsservercore-1809
SharedTags: 3.4.7-windowsservercore, 3.4-windowsservercore, 3.4.7, 3.4
Architectures: windows-amd64
-GitCommit: 7df74d220cce33998dde7623f8c9176d7fa938f7
+GitCommit: c0367972017a7b87845bf33477e29b1fe64ccc4a
Directory: 3.4/windowsservercore-1809
Constraints: windowsservercore-1809
-Tags: 3.4.7-windowsservercore-ltsc2016, 3.4-windowsservercore-ltsc2016
-SharedTags: 3.4.7-windowsservercore, 3.4-windowsservercore, 3.4.7, 3.4
-Architectures: windows-amd64
-GitCommit: 7df74d220cce33998dde7623f8c9176d7fa938f7
-Directory: 3.4/windowsservercore-ltsc2016
-Constraints: windowsservercore-ltsc2016
-
-Tags: 3.4.7-alpine3.13, 3.4-alpine3.13, 3.4.7-alpine, 3.4-alpine
-Architectures: amd64, arm64v8
-GitCommit: c195ebc0755b9debcfacbd6edc977a8ad1cd450e
-Directory: 3.4/alpine3.13
-
-Tags: 3.4.7-alpine3.12, 3.4-alpine3.12
-Architectures: amd64, arm64v8
-GitCommit: d902612570437c75dc21b83b6fe0afd39a8c260d
-Directory: 3.4/alpine3.12
-
-Tags: 3.4.7-alpine3.11, 3.4-alpine3.11
-Architectures: amd64, arm64v8
-GitCommit: e57329c158b19f881c57a0496afbaf4446895fca
-Directory: 3.4/alpine3.11
-
-Tags: 3.4.7-alpine3.10, 3.4-alpine3.10
-Architectures: amd64, arm64v8
-GitCommit: e57329c158b19f881c57a0496afbaf4446895fca
-Directory: 3.4/alpine3.10
-
Tags: 3.3.0-rc.1-buster, 3.3.0-buster, 3.3-buster
SharedTags: 3.3.0-rc.1, 3.3.0, 3.3
Architectures: amd64, arm32v7, arm64v8
-GitCommit: 1f586bf85c12ce5c9300f24079912b94c73bc3f7
+GitCommit: 4e55b2953c28c448f92aaf265168c1bf85b4867f
Directory: 3.3/buster
-Tags: 3.3.0-rc.1-stretch, 3.3.0-stretch, 3.3-stretch
-Architectures: amd64, arm32v7, arm64v8
-GitCommit: e57329c158b19f881c57a0496afbaf4446895fca
-Directory: 3.3/stretch
+Tags: 3.3.0-rc.1-windowsservercore-ltsc2022, 3.3.0-windowsservercore-ltsc2022, 3.3-windowsservercore-ltsc2022
+SharedTags: 3.3.0-rc.1-windowsservercore, 3.3.0-windowsservercore, 3.3-windowsservercore, 3.3.0-rc.1, 3.3.0, 3.3
+Architectures: windows-amd64
+GitCommit: c0367972017a7b87845bf33477e29b1fe64ccc4a
+Directory: 3.3/windowsservercore-ltsc2022
+Constraints: windowsservercore-ltsc2022
Tags: 3.3.0-rc.1-windowsservercore-1809, 3.3.0-windowsservercore-1809, 3.3-windowsservercore-1809
SharedTags: 3.3.0-rc.1-windowsservercore, 3.3.0-windowsservercore, 3.3-windowsservercore, 3.3.0-rc.1, 3.3.0, 3.3
Architectures: windows-amd64
-GitCommit: 7df74d220cce33998dde7623f8c9176d7fa938f7
+GitCommit: c0367972017a7b87845bf33477e29b1fe64ccc4a
Directory: 3.3/windowsservercore-1809
Constraints: windowsservercore-1809
-Tags: 3.3.0-rc.1-windowsservercore-ltsc2016, 3.3.0-windowsservercore-ltsc2016, 3.3-windowsservercore-ltsc2016
-SharedTags: 3.3.0-rc.1-windowsservercore, 3.3.0-windowsservercore, 3.3-windowsservercore, 3.3.0-rc.1, 3.3.0, 3.3
-Architectures: windows-amd64
-GitCommit: 7df74d220cce33998dde7623f8c9176d7fa938f7
-Directory: 3.3/windowsservercore-ltsc2016
-Constraints: windowsservercore-ltsc2016
-
-Tags: 3.3.0-rc.1-alpine3.13, 3.3.0-rc.1-alpine, 3.3.0-alpine3.13, 3.3-alpine3.13, 3.3.0-alpine, 3.3-alpine
-Architectures: amd64, arm64v8
-GitCommit: c195ebc0755b9debcfacbd6edc977a8ad1cd450e
-Directory: 3.3/alpine3.13
-
-Tags: 3.3.0-rc.1-alpine3.12, 3.3.0-alpine3.12, 3.3-alpine3.12
-Architectures: amd64, arm64v8
-GitCommit: d902612570437c75dc21b83b6fe0afd39a8c260d
-Directory: 3.3/alpine3.12
-
-Tags: 3.3.0-rc.1-alpine3.11, 3.3.0-alpine3.11, 3.3-alpine3.11
-Architectures: amd64, arm64v8
-GitCommit: e57329c158b19f881c57a0496afbaf4446895fca
-Directory: 3.3/alpine3.11
-
-Tags: 3.3.0-rc.1-alpine3.10, 3.3.0-alpine3.10, 3.3-alpine3.10
-Architectures: amd64, arm64v8
-GitCommit: e57329c158b19f881c57a0496afbaf4446895fca
-Directory: 3.3/alpine3.10
-
Tags: 3.2.1-buster, 3.2-buster
SharedTags: 3.2.1, 3.2
Architectures: amd64, arm32v7, arm64v8
-GitCommit: 1f586bf85c12ce5c9300f24079912b94c73bc3f7
+GitCommit: 4e55b2953c28c448f92aaf265168c1bf85b4867f
Directory: 3.2/buster
-Tags: 3.2.1-stretch, 3.2-stretch
-Architectures: amd64, arm32v7, arm64v8
-GitCommit: e57329c158b19f881c57a0496afbaf4446895fca
-Directory: 3.2/stretch
+Tags: 3.2.1-windowsservercore-ltsc2022, 3.2-windowsservercore-ltsc2022
+SharedTags: 3.2.1-windowsservercore, 3.2-windowsservercore, 3.2.1, 3.2
+Architectures: windows-amd64
+GitCommit: c0367972017a7b87845bf33477e29b1fe64ccc4a
+Directory: 3.2/windowsservercore-ltsc2022
+Constraints: windowsservercore-ltsc2022
Tags: 3.2.1-windowsservercore-1809, 3.2-windowsservercore-1809
SharedTags: 3.2.1-windowsservercore, 3.2-windowsservercore, 3.2.1, 3.2
Architectures: windows-amd64
-GitCommit: 7df74d220cce33998dde7623f8c9176d7fa938f7
+GitCommit: c0367972017a7b87845bf33477e29b1fe64ccc4a
Directory: 3.2/windowsservercore-1809
Constraints: windowsservercore-1809
-Tags: 3.2.1-windowsservercore-ltsc2016, 3.2-windowsservercore-ltsc2016
-SharedTags: 3.2.1-windowsservercore, 3.2-windowsservercore, 3.2.1, 3.2
+Tags: 3.1.3-windowsservercore-ltsc2022, 3.1-windowsservercore-ltsc2022
+SharedTags: 3.1.3-windowsservercore, 3.1-windowsservercore, 3.1.3, 3.1
Architectures: windows-amd64
-GitCommit: 7df74d220cce33998dde7623f8c9176d7fa938f7
-Directory: 3.2/windowsservercore-ltsc2016
-Constraints: windowsservercore-ltsc2016
-
-Tags: 3.2.1-alpine3.13, 3.2-alpine3.13, 3.2.1-alpine, 3.2-alpine
-Architectures: amd64, arm64v8
-GitCommit: c195ebc0755b9debcfacbd6edc977a8ad1cd450e
-Directory: 3.2/alpine3.13
-
-Tags: 3.2.1-alpine3.12, 3.2-alpine3.12
-Architectures: amd64, arm64v8
-GitCommit: d902612570437c75dc21b83b6fe0afd39a8c260d
-Directory: 3.2/alpine3.12
-
-Tags: 3.2.1-alpine3.11, 3.2-alpine3.11
-Architectures: amd64, arm64v8
-GitCommit: e57329c158b19f881c57a0496afbaf4446895fca
-Directory: 3.2/alpine3.11
-
-Tags: 3.2.1-alpine3.10, 3.2-alpine3.10
-Architectures: amd64, arm64v8
-GitCommit: e57329c158b19f881c57a0496afbaf4446895fca
-Directory: 3.2/alpine3.10
-
-Tags: 3.1.3-stretch, 3.1-stretch
-Architectures: amd64, arm32v7, arm64v8
-GitCommit: e57329c158b19f881c57a0496afbaf4446895fca
-Directory: 3.1/stretch
+GitCommit: c0367972017a7b87845bf33477e29b1fe64ccc4a
+Directory: 3.1/windowsservercore-ltsc2022
+Constraints: windowsservercore-ltsc2022
Tags: 3.1.3-windowsservercore-1809, 3.1-windowsservercore-1809
SharedTags: 3.1.3-windowsservercore, 3.1-windowsservercore, 3.1.3, 3.1
Architectures: windows-amd64
-GitCommit: 7df74d220cce33998dde7623f8c9176d7fa938f7
+GitCommit: c0367972017a7b87845bf33477e29b1fe64ccc4a
Directory: 3.1/windowsservercore-1809
Constraints: windowsservercore-1809
-Tags: 3.1.3-windowsservercore-ltsc2016, 3.1-windowsservercore-ltsc2016
-SharedTags: 3.1.3-windowsservercore, 3.1-windowsservercore, 3.1.3, 3.1
-Architectures: windows-amd64
-GitCommit: 7df74d220cce33998dde7623f8c9176d7fa938f7
-Directory: 3.1/windowsservercore-ltsc2016
-Constraints: windowsservercore-ltsc2016
-
diff --git a/library/hello-world b/library/hello-world
index b18707e59e..26fdc19e59 100644
--- a/library/hello-world
+++ b/library/hello-world
@@ -1,33 +1,42 @@
-# this file is generated via https://github.com/docker-library/hello-world/blob/837f63a4a9cc1e06320f47abb98965b6c5672b30/generate-stackbrew-library.sh
+# this file is generated via https://github.com/docker-library/hello-world/blob/c6676f682a833388a087758d8789b43fbe003397/generate-stackbrew-library.sh
Maintainers: Tianon Gravi (@tianon),
Joseph Ferguson (@yosifkit)
GitRepo: https://github.com/docker-library/hello-world.git
-GitCommit: 837f63a4a9cc1e06320f47abb98965b6c5672b30
+GitCommit: c6676f682a833388a087758d8789b43fbe003397
Tags: linux
SharedTags: latest
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-amd64-GitCommit: 7ecae6978055d2fb6960e2a29d24a2af612e2716
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, riscv64, s390x
+amd64-GitCommit: 3fb6ebca4163bf5b9cc496ac3e8f11cb1e754aee
amd64-Directory: amd64/hello-world
-arm32v5-GitCommit: 7ecae6978055d2fb6960e2a29d24a2af612e2716
+arm32v5-GitCommit: 3fb6ebca4163bf5b9cc496ac3e8f11cb1e754aee
arm32v5-Directory: arm32v5/hello-world
-arm32v7-GitCommit: 7ecae6978055d2fb6960e2a29d24a2af612e2716
+arm32v7-GitCommit: 3fb6ebca4163bf5b9cc496ac3e8f11cb1e754aee
arm32v7-Directory: arm32v7/hello-world
-arm64v8-GitCommit: 7ecae6978055d2fb6960e2a29d24a2af612e2716
+arm64v8-GitCommit: 3fb6ebca4163bf5b9cc496ac3e8f11cb1e754aee
arm64v8-Directory: arm64v8/hello-world
-i386-GitCommit: 7ecae6978055d2fb6960e2a29d24a2af612e2716
+i386-GitCommit: 3fb6ebca4163bf5b9cc496ac3e8f11cb1e754aee
i386-Directory: i386/hello-world
-mips64le-GitCommit: 1b6581761dbcc3925f73a87214ec2c8cba06aec6
+mips64le-GitCommit: 3fb6ebca4163bf5b9cc496ac3e8f11cb1e754aee
mips64le-Directory: mips64le/hello-world
-ppc64le-GitCommit: 7ecae6978055d2fb6960e2a29d24a2af612e2716
+ppc64le-GitCommit: 3fb6ebca4163bf5b9cc496ac3e8f11cb1e754aee
ppc64le-Directory: ppc64le/hello-world
-s390x-GitCommit: 7ecae6978055d2fb6960e2a29d24a2af612e2716
+riscv64-GitCommit: 3fb6ebca4163bf5b9cc496ac3e8f11cb1e754aee
+riscv64-Directory: riscv64/hello-world
+s390x-GitCommit: 3fb6ebca4163bf5b9cc496ac3e8f11cb1e754aee
s390x-Directory: s390x/hello-world
+Tags: nanoserver-ltsc2022
+SharedTags: nanoserver, latest
+Architectures: windows-amd64
+windows-amd64-GitCommit: c816763efda4774cc0c628dca3c7dbd93c099928
+windows-amd64-Directory: amd64/hello-world/nanoserver-ltsc2022
+Constraints: nanoserver-ltsc2022
+
Tags: nanoserver-1809
SharedTags: nanoserver, latest
Architectures: windows-amd64
-windows-amd64-GitCommit: a6fdcbffb08c09e63c48cda1878e15fefcb6460a
+windows-amd64-GitCommit: c816763efda4774cc0c628dca3c7dbd93c099928
windows-amd64-Directory: amd64/hello-world/nanoserver-1809
Constraints: nanoserver-1809
diff --git a/library/hitch b/library/hitch
index 175a288bc9..9439b7b60e 100644
--- a/library/hitch
+++ b/library/hitch
@@ -1,8 +1,8 @@
-# this file was generated using https://github.com/varnish/docker-hitch/blob/d2feb9f1a1a3426da633383c2bac4a31559248bd/populate.sh
+# this file was generated using https://github.com/varnish/docker-hitch/blob/3fe55c4296018b04c7e1d2efdfcadce9c4017e0a/populate.sh
Maintainers: Thijs Feryn (@thijsferyn),
Guillaume Quintard (@gquintard)
GitRepo: https://github.com/varnish/docker-hitch.git
-Tags: 1, 1.7, 1.7.0, 1.7.0-1, latest
-Architectures: amd64
-GitCommit: d2feb9f1a1a3426da633383c2bac4a31559248bd
+Tags: 1, 1.8, 1.8.0, 1.8.0-1, latest
+Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: 3fe55c4296018b04c7e1d2efdfcadce9c4017e0a
diff --git a/library/httpd b/library/httpd
index d3d68e39a1..997929e0dc 100644
--- a/library/httpd
+++ b/library/httpd
@@ -1,15 +1,15 @@
-# this file is generated via https://github.com/docker-library/httpd/blob/b3146c0dc0d3831077a28df82348c5afed4d9ea7/generate-stackbrew-library.sh
+# this file is generated via https://github.com/docker-library/httpd/blob/c87146e71508462f0ebd5de9890a0f8bb3b98c8f/generate-stackbrew-library.sh
Maintainers: Tianon Gravi (@tianon),
Joseph Ferguson (@yosifkit)
GitRepo: https://github.com/docker-library/httpd.git
-Tags: 2.4.48, 2.4, 2, latest
+Tags: 2.4.57, 2.4, 2, latest, 2.4.57-bookworm, 2.4-bookworm, 2-bookworm, bookworm
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: 8835b23f748f80bcec510c14b68c84bc37767cdb
+GitCommit: 242f3c62ba1ceee0a3633045fc4fd9277cb86cd3
Directory: 2.4
-Tags: 2.4.48-alpine, 2.4-alpine, 2-alpine, alpine
+Tags: 2.4.57-alpine, 2.4-alpine, 2-alpine, alpine, 2.4.57-alpine3.18, 2.4-alpine3.18, 2-alpine3.18, alpine3.18
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 8835b23f748f80bcec510c14b68c84bc37767cdb
+GitCommit: c87146e71508462f0ebd5de9890a0f8bb3b98c8f
Directory: 2.4/alpine
diff --git a/library/hylang b/library/hylang
index e2da1aed39..ec30041419 100644
--- a/library/hylang
+++ b/library/hylang
@@ -1,124 +1,119 @@
Maintainers: Paul Tagliamonte (@paultag), Hy Docker Team (@hylang/docker)
GitRepo: https://github.com/hylang/docker-hylang.git
-GitCommit: a9b44f188690a2d07590dde5e46499b58e42b6a3
+GitCommit: 7b900c57b77653b284292f1b1c0fcdd2e42ef57a
Directory: dockerfiles-generated
-Tags: 1.0a1-python3.9-buster, python3.9-buster, 1.0a1-buster, buster
-SharedTags: 1.0a1-python3.9, python3.9, 1.0a1, latest
+Tags: 0.27.0-python3.12-bookworm, 0.27-python3.12-bookworm, 0-python3.12-bookworm, python3.12-bookworm, 0.27.0-bookworm, 0.27-bookworm, 0-bookworm, bookworm
+SharedTags: 0.27.0-python3.12, 0.27-python3.12, 0-python3.12, python3.12, 0.27.0, 0.27, 0, latest
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
+File: Dockerfile.python3.12-bookworm
+
+Tags: 0.27.0-python3.12-bullseye, 0.27-python3.12-bullseye, 0-python3.12-bullseye, python3.12-bullseye, 0.27.0-bullseye, 0.27-bullseye, 0-bullseye, bullseye
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
+File: Dockerfile.python3.12-bullseye
+
+Tags: 0.27.0-python3.12-alpine3.18, 0.27-python3.12-alpine3.18, 0-python3.12-alpine3.18, python3.12-alpine3.18, 0.27.0-alpine3.18, 0.27-alpine3.18, 0-alpine3.18, alpine3.18, 0.27.0-python3.12-alpine, 0.27-python3.12-alpine, 0-python3.12-alpine, python3.12-alpine, 0.27.0-alpine, 0.27-alpine, 0-alpine, alpine
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+File: Dockerfile.python3.12-alpine3.18
+
+Tags: 0.27.0-python3.12-alpine3.17, 0.27-python3.12-alpine3.17, 0-python3.12-alpine3.17, python3.12-alpine3.17, 0.27.0-alpine3.17, 0.27-alpine3.17, 0-alpine3.17, alpine3.17
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+File: Dockerfile.python3.12-alpine3.17
+
+Tags: 0.27.0-python3.11-bookworm, 0.27-python3.11-bookworm, 0-python3.11-bookworm, python3.11-bookworm
+SharedTags: 0.27.0-python3.11, 0.27-python3.11, 0-python3.11, python3.11
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
+File: Dockerfile.python3.11-bookworm
+
+Tags: 0.27.0-python3.11-bullseye, 0.27-python3.11-bullseye, 0-python3.11-bullseye, python3.11-bullseye
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
+File: Dockerfile.python3.11-bullseye
+
+Tags: 0.27.0-python3.11-alpine3.18, 0.27-python3.11-alpine3.18, 0-python3.11-alpine3.18, python3.11-alpine3.18, 0.27.0-python3.11-alpine, 0.27-python3.11-alpine, 0-python3.11-alpine, python3.11-alpine
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+File: Dockerfile.python3.11-alpine3.18
+
+Tags: 0.27.0-python3.11-alpine3.17, 0.27-python3.11-alpine3.17, 0-python3.11-alpine3.17, python3.11-alpine3.17
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+File: Dockerfile.python3.11-alpine3.17
+
+Tags: 0.27.0-python3.10-bookworm, 0.27-python3.10-bookworm, 0-python3.10-bookworm, python3.10-bookworm
+SharedTags: 0.27.0-python3.10, 0.27-python3.10, 0-python3.10, python3.10
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
+File: Dockerfile.python3.10-bookworm
+
+Tags: 0.27.0-python3.10-bullseye, 0.27-python3.10-bullseye, 0-python3.10-bullseye, python3.10-bullseye
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
+File: Dockerfile.python3.10-bullseye
+
+Tags: 0.27.0-python3.10-alpine3.18, 0.27-python3.10-alpine3.18, 0-python3.10-alpine3.18, python3.10-alpine3.18, 0.27.0-python3.10-alpine, 0.27-python3.10-alpine, 0-python3.10-alpine, python3.10-alpine
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+File: Dockerfile.python3.10-alpine3.18
+
+Tags: 0.27.0-python3.10-alpine3.17, 0.27-python3.10-alpine3.17, 0-python3.10-alpine3.17, python3.10-alpine3.17
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+File: Dockerfile.python3.10-alpine3.17
+
+Tags: 0.27.0-python3.9-bookworm, 0.27-python3.9-bookworm, 0-python3.9-bookworm, python3.9-bookworm
+SharedTags: 0.27.0-python3.9, 0.27-python3.9, 0-python3.9, python3.9
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-File: Dockerfile.python3.9-buster
+File: Dockerfile.python3.9-bookworm
-Tags: 1.0a1-python3.9-alpine3.13, python3.9-alpine3.13, 1.0a1-alpine3.13, alpine3.13, 1.0a1-python3.9-alpine, python3.9-alpine, 1.0a1-alpine, alpine
+Tags: 0.27.0-python3.9-bullseye, 0.27-python3.9-bullseye, 0-python3.9-bullseye, python3.9-bullseye
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+File: Dockerfile.python3.9-bullseye
+
+Tags: 0.27.0-python3.9-alpine3.18, 0.27-python3.9-alpine3.18, 0-python3.9-alpine3.18, python3.9-alpine3.18, 0.27.0-python3.9-alpine, 0.27-python3.9-alpine, 0-python3.9-alpine, python3.9-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-File: Dockerfile.python3.9-alpine3.13
+File: Dockerfile.python3.9-alpine3.18
-Tags: 1.0a1-python3.9-alpine3.12, python3.9-alpine3.12, 1.0a1-alpine3.12, alpine3.12
+Tags: 0.27.0-python3.9-alpine3.17, 0.27-python3.9-alpine3.17, 0-python3.9-alpine3.17, python3.9-alpine3.17
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-File: Dockerfile.python3.9-alpine3.12
+File: Dockerfile.python3.9-alpine3.17
-Tags: 1.0a1-python3.9-windowsservercore-1809, python3.9-windowsservercore-1809, 1.0a1-windowsservercore-1809, windowsservercore-1809
-SharedTags: 1.0a1-python3.9, python3.9, 1.0a1, latest
+Tags: 0.27.0-python3.8-bookworm, 0.27-python3.8-bookworm, 0-python3.8-bookworm, python3.8-bookworm
+SharedTags: 0.27.0-python3.8, 0.27-python3.8, 0-python3.8, python3.8
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+File: Dockerfile.python3.8-bookworm
+
+Tags: 0.27.0-python3.8-bullseye, 0.27-python3.8-bullseye, 0-python3.8-bullseye, python3.8-bullseye
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+File: Dockerfile.python3.8-bullseye
+
+Tags: 0.27.0-python3.8-alpine3.18, 0.27-python3.8-alpine3.18, 0-python3.8-alpine3.18, python3.8-alpine3.18, 0.27.0-python3.8-alpine, 0.27-python3.8-alpine, 0-python3.8-alpine, python3.8-alpine
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+File: Dockerfile.python3.8-alpine3.18
+
+Tags: 0.27.0-python3.8-alpine3.17, 0.27-python3.8-alpine3.17, 0-python3.8-alpine3.17, python3.8-alpine3.17
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+File: Dockerfile.python3.8-alpine3.17
+
+Tags: 0.27.0-pypy3.10-bookworm, 0.27-pypy3.10-bookworm, 0-pypy3.10-bookworm, pypy3.10-bookworm, 0.27.0-pypy-bookworm, 0.27-pypy-bookworm, 0-pypy-bookworm, pypy-bookworm
+SharedTags: 0.27.0-pypy3.10, 0.27-pypy3.10, 0-pypy3.10, pypy3.10, 0.27.0-pypy, 0.27-pypy, 0-pypy, pypy
+Architectures: amd64, arm64v8, i386
+File: Dockerfile.pypy3.10-bookworm
+
+Tags: 0.27.0-pypy3.10-bullseye, 0.27-pypy3.10-bullseye, 0-pypy3.10-bullseye, pypy3.10-bullseye, 0.27.0-pypy-bullseye, 0.27-pypy-bullseye, 0-pypy-bullseye, pypy-bullseye
+Architectures: amd64, arm64v8, i386
+File: Dockerfile.pypy3.10-bullseye
+
+Tags: 0.27.0-pypy3.9-bookworm, 0.27-pypy3.9-bookworm, 0-pypy3.9-bookworm, pypy3.9-bookworm
+SharedTags: 0.27.0-pypy3.9, 0.27-pypy3.9, 0-pypy3.9, pypy3.9
+Architectures: amd64, arm64v8, i386
+File: Dockerfile.pypy3.9-bookworm
+
+Tags: 0.27.0-pypy3.9-bullseye, 0.27-pypy3.9-bullseye, 0-pypy3.9-bullseye, pypy3.9-bullseye
+Architectures: amd64, arm64v8, i386
+File: Dockerfile.pypy3.9-bullseye
+
+Tags: 0.27.0-pypy3.9-windowsservercore-ltsc2022, 0.27-pypy3.9-windowsservercore-ltsc2022, 0-pypy3.9-windowsservercore-ltsc2022, pypy3.9-windowsservercore-ltsc2022
+SharedTags: 0.27.0-pypy3.9, 0.27-pypy3.9, 0-pypy3.9, pypy3.9
+Architectures: windows-amd64
+Constraints: windowsservercore-ltsc2022
+File: Dockerfile.pypy3.9-windowsservercore-ltsc2022
+
+Tags: 0.27.0-pypy3.9-windowsservercore-1809, 0.27-pypy3.9-windowsservercore-1809, 0-pypy3.9-windowsservercore-1809, pypy3.9-windowsservercore-1809
+SharedTags: 0.27.0-pypy3.9, 0.27-pypy3.9, 0-pypy3.9, pypy3.9
Architectures: windows-amd64
Constraints: windowsservercore-1809
-File: Dockerfile.python3.9-windowsservercore-1809
-
-Tags: 1.0a1-python3.9-windowsservercore-ltsc2016, python3.9-windowsservercore-ltsc2016, 1.0a1-windowsservercore-ltsc2016, windowsservercore-ltsc2016
-SharedTags: 1.0a1-python3.9, python3.9, 1.0a1, latest
-Architectures: windows-amd64
-Constraints: windowsservercore-ltsc2016
-File: Dockerfile.python3.9-windowsservercore-ltsc2016
-
-Tags: 1.0a1-python3.8-buster, python3.8-buster
-SharedTags: 1.0a1-python3.8, python3.8
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-File: Dockerfile.python3.8-buster
-
-Tags: 1.0a1-python3.8-alpine3.13, python3.8-alpine3.13, 1.0a1-python3.8-alpine, python3.8-alpine
-Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-File: Dockerfile.python3.8-alpine3.13
-
-Tags: 1.0a1-python3.8-alpine3.12, python3.8-alpine3.12
-Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-File: Dockerfile.python3.8-alpine3.12
-
-Tags: 1.0a1-python3.8-windowsservercore-1809, python3.8-windowsservercore-1809
-SharedTags: 1.0a1-python3.8, python3.8
-Architectures: windows-amd64
-Constraints: windowsservercore-1809
-File: Dockerfile.python3.8-windowsservercore-1809
-
-Tags: 1.0a1-python3.8-windowsservercore-ltsc2016, python3.8-windowsservercore-ltsc2016
-SharedTags: 1.0a1-python3.8, python3.8
-Architectures: windows-amd64
-Constraints: windowsservercore-ltsc2016
-File: Dockerfile.python3.8-windowsservercore-ltsc2016
-
-Tags: 1.0a1-python3.7-buster, python3.7-buster
-SharedTags: 1.0a1-python3.7, python3.7
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-File: Dockerfile.python3.7-buster
-
-Tags: 1.0a1-python3.7-stretch, python3.7-stretch
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386
-File: Dockerfile.python3.7-stretch
-
-Tags: 1.0a1-python3.7-alpine3.13, python3.7-alpine3.13, 1.0a1-python3.7-alpine, python3.7-alpine
-Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-File: Dockerfile.python3.7-alpine3.13
-
-Tags: 1.0a1-python3.7-alpine3.12, python3.7-alpine3.12
-Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-File: Dockerfile.python3.7-alpine3.12
-
-Tags: 1.0a1-python3.6-buster, python3.6-buster
-SharedTags: 1.0a1-python3.6, python3.6
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-File: Dockerfile.python3.6-buster
-
-Tags: 1.0a1-python3.6-stretch, python3.6-stretch
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386
-File: Dockerfile.python3.6-stretch
-
-Tags: 1.0a1-python3.6-alpine3.13, python3.6-alpine3.13, 1.0a1-python3.6-alpine, python3.6-alpine
-Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-File: Dockerfile.python3.6-alpine3.13
-
-Tags: 1.0a1-python3.6-alpine3.12, python3.6-alpine3.12
-Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-File: Dockerfile.python3.6-alpine3.12
-
-Tags: 1.0a1-python3.10-rc-buster, python3.10-rc-buster
-SharedTags: 1.0a1-python3.10-rc, python3.10-rc
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-File: Dockerfile.python3.10-rc-buster
-
-Tags: 1.0a1-python3.10-rc-alpine3.13, python3.10-rc-alpine3.13, 1.0a1-python3.10-rc-alpine, python3.10-rc-alpine
-Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-File: Dockerfile.python3.10-rc-alpine3.13
-
-Tags: 1.0a1-python3.10-rc-alpine3.12, python3.10-rc-alpine3.12
-Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-File: Dockerfile.python3.10-rc-alpine3.12
-
-Tags: 1.0a1-python3.10-rc-windowsservercore-1809, python3.10-rc-windowsservercore-1809
-SharedTags: 1.0a1-python3.10-rc, python3.10-rc
-Architectures: windows-amd64
-Constraints: windowsservercore-1809
-File: Dockerfile.python3.10-rc-windowsservercore-1809
-
-Tags: 1.0a1-python3.10-rc-windowsservercore-ltsc2016, python3.10-rc-windowsservercore-ltsc2016
-SharedTags: 1.0a1-python3.10-rc, python3.10-rc
-Architectures: windows-amd64
-Constraints: windowsservercore-ltsc2016
-File: Dockerfile.python3.10-rc-windowsservercore-ltsc2016
-
-Tags: 1.0a1-pypy3.7-buster, pypy3.7-buster, 1.0a1-pypy-buster, pypy-buster
-SharedTags: 1.0a1-pypy3.7, pypy3.7, 1.0a1-pypy, pypy
-Architectures: amd64, arm64v8, i386, s390x
-File: Dockerfile.pypy3.7-buster
-
-Tags: 1.0a1-pypy3.7-windowsservercore-1809, pypy3.7-windowsservercore-1809, 1.0a1-pypy-windowsservercore-1809, pypy-windowsservercore-1809
-SharedTags: 1.0a1-pypy3.7, pypy3.7, 1.0a1-pypy, pypy
-Architectures: windows-amd64
-Constraints: windowsservercore-1809
-File: Dockerfile.pypy3.7-windowsservercore-1809
+File: Dockerfile.pypy3.9-windowsservercore-1809
diff --git a/library/ibm-semeru-runtimes b/library/ibm-semeru-runtimes
new file mode 100644
index 0000000000..7b6f8a68f2
--- /dev/null
+++ b/library/ibm-semeru-runtimes
@@ -0,0 +1,163 @@
+# IBM Semeru Runtimes official Docker images.
+
+Maintainers: Surya Narkedimilli (@narkedi)
+GitRepo: https://github.com/ibmruntimes/semeru-containers.git
+GitFetch: refs/heads/ibm
+
+#-----------------------------openj9 v8 images---------------------------------
+Tags: open-8u382-b05-jdk-focal, open-8-jdk-focal
+Architectures: amd64, ppc64le, s390x, arm64v8
+GitCommit: b82ce32c38a0c6c56158818960e041ca3871b46a
+Directory: 8/jdk/ubuntu/focal
+File: Dockerfile.open.releases.full
+
+Tags: open-8u382-b05-jdk-jammy, open-8-jdk-jammy
+SharedTags: open-8u382-b05-jdk, open-8-jdk
+Architectures: amd64, ppc64le, s390x, arm64v8
+GitCommit: b82ce32c38a0c6c56158818960e041ca3871b46a
+Directory: 8/jdk/ubuntu/jammy
+File: Dockerfile.open.releases.full
+
+Tags: open-8u382-b05-jdk-centos7, open-8-jdk-centos7
+Architectures: amd64, ppc64le, arm64v8
+GitCommit: b82ce32c38a0c6c56158818960e041ca3871b46a
+Directory: 8/jdk/centos
+File: Dockerfile.open.releases.full
+
+Tags: open-8u382-b05-jre-focal, open-8-jre-focal
+Architectures: amd64, ppc64le, s390x, arm64v8
+GitCommit: b82ce32c38a0c6c56158818960e041ca3871b46a
+Directory: 8/jre/ubuntu/focal
+File: Dockerfile.open.releases.full
+
+Tags: open-8u382-b05-jre-jammy, open-8-jre-jammy
+SharedTags: open-8u382-b05-jre, open-8-jre
+Architectures: amd64, ppc64le, s390x, arm64v8
+GitCommit: b82ce32c38a0c6c56158818960e041ca3871b46a
+Directory: 8/jre/ubuntu/jammy
+File: Dockerfile.open.releases.full
+
+Tags: open-8u382-b05-jre-centos7, open-8-jre-centos7
+Architectures: amd64, ppc64le, arm64v8
+GitCommit: b82ce32c38a0c6c56158818960e041ca3871b46a
+Directory: 8/jre/centos
+File: Dockerfile.open.releases.full
+
+#-----------------------------openj9 v11 images---------------------------------
+Tags: open-11.0.20.1_1-jdk-focal, open-11-jdk-focal
+Architectures: amd64, ppc64le, s390x, arm64v8
+GitCommit: b82ce32c38a0c6c56158818960e041ca3871b46a
+Directory: 11/jdk/ubuntu/focal
+File: Dockerfile.open.releases.full
+
+Tags: open-11.0.20.1_1-jdk-jammy, open-11-jdk-jammy
+SharedTags: open-11.0.20.1_1-jdk, open-11-jdk
+Architectures: amd64, ppc64le, s390x, arm64v8
+GitCommit: b82ce32c38a0c6c56158818960e041ca3871b46a
+Directory: 11/jdk/ubuntu/jammy
+File: Dockerfile.open.releases.full
+
+Tags: open-11.0.20.1_1-jdk-centos7, open-11-jdk-centos7
+Architectures: amd64, ppc64le, arm64v8
+GitCommit: b82ce32c38a0c6c56158818960e041ca3871b46a
+Directory: 11/jdk/centos
+File: Dockerfile.open.releases.full
+
+Tags: open-11.0.20.1_1-jre-focal, open-11-jre-focal
+Architectures: amd64, ppc64le, s390x, arm64v8
+GitCommit: b82ce32c38a0c6c56158818960e041ca3871b46a
+Directory: 11/jre/ubuntu/focal
+File: Dockerfile.open.releases.full
+
+Tags: open-11.0.20.1_1-jre-jammy, open-11-jre-jammy
+SharedTags: open-11.0.20.1_1-jre, open-11-jre
+Architectures: amd64, ppc64le, s390x, arm64v8
+GitCommit: b82ce32c38a0c6c56158818960e041ca3871b46a
+Directory: 11/jre/ubuntu/jammy
+File: Dockerfile.open.releases.full
+
+Tags: open-11.0.20.1_1-jre-centos7, open-11-jre-centos7
+Architectures: amd64, ppc64le, arm64v8
+GitCommit: b82ce32c38a0c6c56158818960e041ca3871b46a
+Directory: 11/jre/centos
+File: Dockerfile.open.releases.full
+
+#-----------------------------openj9 v17 images---------------------------------
+Tags: open-17.0.8.1_1-jdk-focal, open-17-jdk-focal
+Architectures: amd64, ppc64le, s390x, arm64v8
+GitCommit: b82ce32c38a0c6c56158818960e041ca3871b46a
+Directory: 17/jdk/ubuntu/focal
+File: Dockerfile.open.releases.full
+
+Tags: open-17.0.8.1_1-jdk-jammy, open-17-jdk-jammy
+SharedTags: open-17.0.8.1_1-jdk, open-17-jdk
+Architectures: amd64, ppc64le, s390x, arm64v8
+GitCommit: b82ce32c38a0c6c56158818960e041ca3871b46a
+Directory: 17/jdk/ubuntu/jammy
+File: Dockerfile.open.releases.full
+
+Tags: open-17.0.8.1_1-jdk-centos7, open-17-jdk-centos7
+Architectures: amd64, ppc64le, arm64v8
+GitCommit: b82ce32c38a0c6c56158818960e041ca3871b46a
+Directory: 17/jdk/centos
+File: Dockerfile.open.releases.full
+
+Tags: open-17.0.8.1_1-jre-focal, open-17-jre-focal
+Architectures: amd64, ppc64le, s390x, arm64v8
+GitCommit: b82ce32c38a0c6c56158818960e041ca3871b46a
+Directory: 17/jre/ubuntu/focal
+File: Dockerfile.open.releases.full
+
+Tags: open-17.0.8.1_1-jre-jammy, open-17-jre-jammy
+SharedTags: open-17.0.8.1_1-jre, open-17-jre
+Architectures: amd64, ppc64le, s390x, arm64v8
+GitCommit: b82ce32c38a0c6c56158818960e041ca3871b46a
+Directory: 17/jre/ubuntu/jammy
+File: Dockerfile.open.releases.full
+
+Tags: open-17.0.8.1_1-jre-centos7, open-17-jre-centos7
+Architectures: amd64, ppc64le, arm64v8
+GitCommit: b82ce32c38a0c6c56158818960e041ca3871b46a
+Directory: 17/jre/centos
+File: Dockerfile.open.releases.full
+
+#-----------------------------openj9 v20 images---------------------------------
+Tags: open-20.0.2_9-jdk-focal, open-20-jdk-focal
+Architectures: amd64, ppc64le, s390x, arm64v8
+GitCommit: b82ce32c38a0c6c56158818960e041ca3871b46a
+Directory: 20/jdk/ubuntu/focal
+File: Dockerfile.open.releases.full
+
+Tags: open-20.0.2_9-jdk-jammy, open-20-jdk-jammy
+SharedTags: open-20.0.2_9-jdk, open-20-jdk
+Architectures: amd64, ppc64le, s390x, arm64v8
+GitCommit: b82ce32c38a0c6c56158818960e041ca3871b46a
+Directory: 20/jdk/ubuntu/jammy
+File: Dockerfile.open.releases.full
+
+Tags: open-20.0.2_9-jdk-centos7, open-20-jdk-centos7
+Architectures: amd64, ppc64le, arm64v8
+GitCommit: b82ce32c38a0c6c56158818960e041ca3871b46a
+Directory: 20/jdk/centos
+File: Dockerfile.open.releases.full
+
+Tags: open-20.0.2_9-jre-focal, open-20-jre-focal
+Architectures: amd64, ppc64le, s390x, arm64v8
+GitCommit: b82ce32c38a0c6c56158818960e041ca3871b46a
+Directory: 20/jre/ubuntu/focal
+File: Dockerfile.open.releases.full
+
+Tags: open-20.0.2_9-jre-jammy, open-20-jre-jammy
+SharedTags: open-20.0.2_9-jre, open-20-jre
+Architectures: amd64, ppc64le, s390x, arm64v8
+GitCommit: b82ce32c38a0c6c56158818960e041ca3871b46a
+Directory: 20/jre/ubuntu/jammy
+File: Dockerfile.open.releases.full
+
+Tags: open-20.0.2_9-jre-centos7, open-20-jre-centos7
+Architectures: amd64, ppc64le, arm64v8
+GitCommit: b82ce32c38a0c6c56158818960e041ca3871b46a
+Directory: 20/jre/centos
+File: Dockerfile.open.releases.full
+
+
diff --git a/library/ibmjava b/library/ibmjava
index 5e8da2c003..9b1de8941e 100644
--- a/library/ibmjava
+++ b/library/ibmjava
@@ -1,34 +1,21 @@
-# ibmjava official images
+#ibmjava official images
-Maintainers: Dinakar Guniguntala (@dinogun)
+Maintainers: Jayashree Gopi (@jayasg12)
GitRepo: https://github.com/ibmruntimes/ci.docker.git
+GitFetch: refs/heads/main
Tags: 8-jre, jre, 8, latest
-Architectures: amd64, i386, ppc64le, s390x
-GitCommit: aff3011c004014a16a5416549fe7ee4a911ef3e7
+Architectures: amd64, ppc64le, s390x
+GitCommit: 4d75307c2faab96cd8a3b1c91fa0d8e59dcfa4b6
Directory: ibmjava/8/jre/ubuntu
-Tags: 8-jre-alpine, jre-alpine
-Architectures: amd64
-GitCommit: aff3011c004014a16a5416549fe7ee4a911ef3e7
-Directory: ibmjava/8/jre/alpine
-
Tags: 8-sfj, sfj
-Architectures: amd64, i386, ppc64le, s390x
-GitCommit: aff3011c004014a16a5416549fe7ee4a911ef3e7
+Architectures: amd64, ppc64le, s390x
+GitCommit: 4d75307c2faab96cd8a3b1c91fa0d8e59dcfa4b6
Directory: ibmjava/8/sfj/ubuntu
-Tags: 8-sfj-alpine, sfj-alpine
-Architectures: amd64
-GitCommit: aff3011c004014a16a5416549fe7ee4a911ef3e7
-Directory: ibmjava/8/sfj/alpine
-
Tags: 8-sdk, sdk
-Architectures: amd64, i386, ppc64le, s390x
-GitCommit: aff3011c004014a16a5416549fe7ee4a911ef3e7
+Architectures: amd64, ppc64le, s390x
+GitCommit: 4d75307c2faab96cd8a3b1c91fa0d8e59dcfa4b6
Directory: ibmjava/8/sdk/ubuntu
-Tags: 8-sdk-alpine, sdk-alpine
-Architectures: amd64
-GitCommit: aff3011c004014a16a5416549fe7ee4a911ef3e7
-Directory: ibmjava/8/sdk/alpine
diff --git a/library/influxdb b/library/influxdb
index 3e8a5d5d27..f6bc0dd0e5 100644
--- a/library/influxdb
+++ b/library/influxdb
@@ -1,49 +1,55 @@
-Maintainers: Cody Shepherd (@codyshepherd), Daniel Moran (@danxmoran)
-GitRepo: git://github.com/influxdata/influxdata-docker
-GitCommit: 8d81b0d850949889038cd8652a9b2a32088ec3c3
+Maintainers: Brandon Pfeifer (@bnpfeife),
+ Jeffrey Smith (@jeffreyssmith2nd)
+GitRepo: https://github.com/influxdata/influxdata-docker
+GitCommit: 46221770aa619e97553bc95443954f6c4690e1ce
-Tags: 1.7, 1.7.11
-Architectures: amd64, arm32v7, arm64v8
-Directory: influxdb/1.7
-
-Tags: 1.7-alpine, 1.7.11-alpine
-Directory: influxdb/1.7/alpine
-
-Tags: 1.7-data, 1.7.11-data
-Directory: influxdb/1.7/data
-
-Tags: 1.7-data-alpine, 1.7.11-data-alpine
-Directory: influxdb/1.7/data/alpine
-
-Tags: 1.7-meta, 1.7.11-meta
-Directory: influxdb/1.7/meta
-
-Tags: 1.7-meta-alpine, 1.7.11-meta-alpine
-Directory: influxdb/1.7/meta/alpine
-
-Tags: 1.8, 1.8.6
+Tags: 1.8, 1.8.10
Architectures: amd64, arm32v7, arm64v8
Directory: influxdb/1.8
-Tags: 1.8-alpine, 1.8.6-alpine
+Tags: 1.8-alpine, 1.8.10-alpine
Directory: influxdb/1.8/alpine
-Tags: 1.8-data, 1.8.6-data, data
-Directory: influxdb/1.8/data
+Tags: 1.9-data, 1.9.12-data
+Directory: influxdb/1.9/data
-Tags: 1.8-data-alpine, 1.8.6-data-alpine, data-alpine
-Directory: influxdb/1.8/data/alpine
+Tags: 1.9-data-alpine, 1.9.12-data-alpine
+Directory: influxdb/1.9/data/alpine
-Tags: 1.8-meta, 1.8.6-meta, meta
-Directory: influxdb/1.8/meta
+Tags: 1.9-meta, 1.9.12-meta
+Directory: influxdb/1.9/meta
-Tags: 1.8-meta-alpine, 1.8.6-meta-alpine, meta-alpine
-Directory: influxdb/1.8/meta/alpine
+Tags: 1.9-meta-alpine, 1.9.12-meta-alpine
+Directory: influxdb/1.9/meta/alpine
-Tags: 2.0, 2.0.6, latest
+Tags: 1.10-data, 1.10.4-data
+Directory: influxdb/1.10/data
+
+Tags: 1.10-data-alpine, 1.10.4-data-alpine
+Directory: influxdb/1.10/data/alpine
+
+Tags: 1.10-meta, 1.10.4-meta
+Directory: influxdb/1.10/meta
+
+Tags: 1.10-meta-alpine, 1.10.4-meta-alpine
+Directory: influxdb/1.10/meta/alpine
+
+Tags: 1.11-data, 1.11.1-data
+Directory: influxdb/1.11/data
+
+Tags: 1.11-data-alpine, 1.11.1-data-alpine
+Directory: influxdb/1.11/data/alpine
+
+Tags: 1.11-meta, 1.11.1-meta
+Directory: influxdb/1.11/meta
+
+Tags: 1.11-meta-alpine, 1.11.1-meta-alpine
+Directory: influxdb/1.11/meta/alpine
+
+Tags: 2.7, 2.7.1, latest
Architectures: amd64, arm64v8
-Directory: influxdb/2.0
+Directory: influxdb/2.7
-Tags: 2.0-alpine, 2.0.6-alpine, alpine
+Tags: 2.7-alpine, 2.7.1-alpine, alpine
Architectures: amd64, arm64v8
-Directory: influxdb/2.0/alpine
+Directory: influxdb/2.7/alpine
diff --git a/library/irssi b/library/irssi
index b937a97a51..b467556f84 100644
--- a/library/irssi
+++ b/library/irssi
@@ -1,15 +1,15 @@
-# this file is generated via https://github.com/jessfraz/irssi/blob/2bdee8662a663da5d53553023df12e2b43d74fc2/generate-stackbrew-library.sh
+# this file is generated via https://github.com/jessfraz/irssi/blob/0643d4116d06af815d92aba78eaf1278ce49364a/generate-stackbrew-library.sh
Maintainers: Jessie Frazelle (@jessfraz),
Tianon Gravi (@tianon)
GitRepo: https://github.com/jessfraz/irssi.git
-Tags: 1.2.3, 1.2, 1, latest
+Tags: 1.4.5, 1.4, 1, latest, 1.4.5-bookworm, 1.4-bookworm, 1-bookworm, bookworm
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: 1828e23a4b14600e1194c911bbdab6e927748351
+GitCommit: a3a3f65ed35b33c791a86af4383b5129ab7b7721
Directory: debian
-Tags: 1.2.3-alpine, 1.2-alpine, 1-alpine, alpine
+Tags: 1.4.5-alpine, 1.4-alpine, 1-alpine, alpine, 1.4.5-alpine3.18, 1.4-alpine3.18, 1-alpine3.18, alpine3.18
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 1828e23a4b14600e1194c911bbdab6e927748351
+GitCommit: a3a3f65ed35b33c791a86af4383b5129ab7b7721
Directory: alpine
diff --git a/library/jetty b/library/jetty
index d3fb89e989..3665e9ab3f 100644
--- a/library/jetty
+++ b/library/jetty
@@ -4,122 +4,237 @@ Maintainers: Greg Wilkins (@gregw),
Joakim Erdfelt (@joakime)
GitRepo: https://github.com/eclipse/jetty.docker.git
-Tags: 11.0.3-jre11-slim
+Tags: 9.4.52-jre8-alpine, 9.4-jre8-alpine, 9-jre8-alpine, 9.4.52-jre8-alpine-eclipse-temurin, 9.4-jre8-alpine-eclipse-temurin, 9-jre8-alpine-eclipse-temurin
Architectures: amd64
-Directory: 11.0-jre11-slim
-GitCommit: 148a24a5538e28a50a04ed818957880f1a828093
+Directory: eclipse-temurin/9.4/jre8-alpine
+GitCommit: 70761e505bb94130d5175cc22cbd93bff3ccc31c
-Tags: 11.0.3-jre11
-Architectures: amd64
-Directory: 11.0-jre11
-GitCommit: 148a24a5538e28a50a04ed818957880f1a828093
-
-Tags: 11.0.3-jdk16-slim
-Architectures: amd64
-Directory: 11.0-jdk16-slim
-GitCommit: 1856c997d08e587a43cacde525627015250b44e0
-
-Tags: 11.0.3, 11.0.3-jdk16
-Architectures: amd64
-Directory: 11.0-jdk16
-GitCommit: 1856c997d08e587a43cacde525627015250b44e0
-
-Tags: 11.0.3-jdk11-slim
-Architectures: amd64
-Directory: 11.0-jdk11-slim
-GitCommit: 148a24a5538e28a50a04ed818957880f1a828093
-
-Tags: 11.0.3-jdk11
-Architectures: amd64
-Directory: 11.0-jdk11
-GitCommit: 148a24a5538e28a50a04ed818957880f1a828093
-
-Tags: 10.0.3-jre11-slim
-Architectures: amd64
-Directory: 10.0-jre11-slim
-GitCommit: 148a24a5538e28a50a04ed818957880f1a828093
-
-Tags: 10.0.3-jre11
-Architectures: amd64
-Directory: 10.0-jre11
-GitCommit: 148a24a5538e28a50a04ed818957880f1a828093
-
-Tags: 10.0.3-jdk16-slim
-Architectures: amd64
-Directory: 10.0-jdk16-slim
-GitCommit: 1856c997d08e587a43cacde525627015250b44e0
-
-Tags: 10.0.3, 10.0.3-jdk16
-Architectures: amd64
-Directory: 10.0-jdk16
-GitCommit: 1856c997d08e587a43cacde525627015250b44e0
-
-Tags: 10.0.3-jdk11-slim
-Architectures: amd64
-Directory: 10.0-jdk11-slim
-GitCommit: 148a24a5538e28a50a04ed818957880f1a828093
-
-Tags: 10.0.3-jdk11
-Architectures: amd64
-Directory: 10.0-jdk11
-GitCommit: 148a24a5538e28a50a04ed818957880f1a828093
-
-Tags: 9.4.41-jre11-slim, 9.4-jre11-slim, 9-jre11-slim
+Tags: 9.4.52-jre8, 9.4-jre8, 9-jre8, 9.4.52-jre8-eclipse-temurin, 9.4-jre8-eclipse-temurin, 9-jre8-eclipse-temurin
Architectures: amd64, arm64v8
-Directory: 9.4-jre11-slim
-GitCommit: 148a24a5538e28a50a04ed818957880f1a828093
+Directory: eclipse-temurin/9.4/jre8
+GitCommit: 70761e505bb94130d5175cc22cbd93bff3ccc31c
-Tags: 9.4.41-jre11, 9.4-jre11, 9-jre11
+Tags: 9.4.52-jre17-alpine, 9.4-jre17-alpine, 9-jre17-alpine, 9.4.52-jre17-alpine-eclipse-temurin, 9.4-jre17-alpine-eclipse-temurin, 9-jre17-alpine-eclipse-temurin
+Architectures: amd64
+Directory: eclipse-temurin/9.4/jre17-alpine
+GitCommit: 70761e505bb94130d5175cc22cbd93bff3ccc31c
+
+Tags: 9.4.52-jre17, 9.4-jre17, 9-jre17, 9.4.52-jre17-eclipse-temurin, 9.4-jre17-eclipse-temurin, 9-jre17-eclipse-temurin
Architectures: amd64, arm64v8
-Directory: 9.4-jre11
-GitCommit: 148a24a5538e28a50a04ed818957880f1a828093
+Directory: eclipse-temurin/9.4/jre17
+GitCommit: 70761e505bb94130d5175cc22cbd93bff3ccc31c
-Tags: 9.4.41-jre8-slim, 9.4-jre8-slim, 9-jre8-slim
+Tags: 9.4.52-jre11-alpine, 9.4-jre11-alpine, 9-jre11-alpine, 9.4.52-jre11-alpine-eclipse-temurin, 9.4-jre11-alpine-eclipse-temurin, 9-jre11-alpine-eclipse-temurin
Architectures: amd64
-Directory: 9.4-jre8-slim
-GitCommit: 148a24a5538e28a50a04ed818957880f1a828093
+Directory: eclipse-temurin/9.4/jre11-alpine
+GitCommit: 70761e505bb94130d5175cc22cbd93bff3ccc31c
-Tags: 9.4.41-jre8, 9.4-jre8, 9-jre8
-Architectures: amd64
-Directory: 9.4-jre8
-GitCommit: 148a24a5538e28a50a04ed818957880f1a828093
+Tags: 9.4.52-jre11, 9.4-jre11, 9-jre11, 9.4.52-jre11-eclipse-temurin, 9.4-jre11-eclipse-temurin, 9-jre11-eclipse-temurin
+Architectures: amd64, arm64v8
+Directory: eclipse-temurin/9.4/jre11
+GitCommit: 70761e505bb94130d5175cc22cbd93bff3ccc31c
-Tags: 9.4.41-jdk16-slim, 9.4-jdk16-slim, 9-jdk16-slim
-Architectures: amd64
-Directory: 9.4-jdk16-slim
-GitCommit: 1856c997d08e587a43cacde525627015250b44e0
+Tags: 9.4.52-jdk8, 9.4-jdk8, 9-jdk8, 9.4.52-jdk8-eclipse-temurin, 9.4-jdk8-eclipse-temurin, 9-jdk8-eclipse-temurin
+Architectures: amd64, arm64v8
+Directory: eclipse-temurin/9.4/jdk8
+GitCommit: 70761e505bb94130d5175cc22cbd93bff3ccc31c
-Tags: 9.4.41, 9.4, 9, 9.4.41-jdk16, 9.4-jdk16, 9-jdk16, latest, jdk16
+Tags: 9.4.52-jdk17-alpine, 9.4-jdk17-alpine, 9-jdk17-alpine, 9.4.52-jdk17-alpine-eclipse-temurin, 9.4-jdk17-alpine-eclipse-temurin, 9-jdk17-alpine-eclipse-temurin
Architectures: amd64
-Directory: 9.4-jdk16
-GitCommit: 1856c997d08e587a43cacde525627015250b44e0
+Directory: eclipse-temurin/9.4/jdk17-alpine
+GitCommit: 70761e505bb94130d5175cc22cbd93bff3ccc31c
-Tags: 9.4.41-jdk11-slim, 9.4-jdk11-slim, 9-jdk11-slim
-Architectures: amd64
-Directory: 9.4-jdk11-slim
-GitCommit: 148a24a5538e28a50a04ed818957880f1a828093
+Tags: 9.4.52, 9.4, 9, 9.4.52-jdk17, 9.4-jdk17, 9-jdk17, 9.4.52-eclipse-temurin, 9.4-eclipse-temurin, 9-eclipse-temurin, 9.4.52-jdk17-eclipse-temurin, 9.4-jdk17-eclipse-temurin, 9-jdk17-eclipse-temurin
+Architectures: amd64, arm64v8
+Directory: eclipse-temurin/9.4/jdk17
+GitCommit: 70761e505bb94130d5175cc22cbd93bff3ccc31c
-Tags: 9.4.41-jdk11, 9.4-jdk11, 9-jdk11
+Tags: 9.4.52-jdk11-alpine, 9.4-jdk11-alpine, 9-jdk11-alpine, 9.4.52-jdk11-alpine-eclipse-temurin, 9.4-jdk11-alpine-eclipse-temurin, 9-jdk11-alpine-eclipse-temurin
Architectures: amd64
-Directory: 9.4-jdk11
-GitCommit: 148a24a5538e28a50a04ed818957880f1a828093
+Directory: eclipse-temurin/9.4/jdk11-alpine
+GitCommit: 70761e505bb94130d5175cc22cbd93bff3ccc31c
-Tags: 9.4.41-jdk8-slim, 9.4-jdk8-slim, 9-jdk8-slim
-Architectures: amd64
-Directory: 9.4-jdk8-slim
-GitCommit: 148a24a5538e28a50a04ed818957880f1a828093
+Tags: 9.4.52-jdk11, 9.4-jdk11, 9-jdk11, 9.4.52-jdk11-eclipse-temurin, 9.4-jdk11-eclipse-temurin, 9-jdk11-eclipse-temurin
+Architectures: amd64, arm64v8
+Directory: eclipse-temurin/9.4/jdk11
+GitCommit: 70761e505bb94130d5175cc22cbd93bff3ccc31c
-Tags: 9.4.41-jdk8, 9.4-jdk8, 9-jdk8
+Tags: 12.0.1-jre17-alpine, 12.0-jre17-alpine, 12.0.1-jre17-alpine-eclipse-temurin, 12.0-jre17-alpine-eclipse-temurin
Architectures: amd64
-Directory: 9.4-jdk8
-GitCommit: 148a24a5538e28a50a04ed818957880f1a828093
+Directory: eclipse-temurin/12.0/jre17-alpine
+GitCommit: 70761e505bb94130d5175cc22cbd93bff3ccc31c
-Tags: 9.3.29-jre8, 9.3-jre8
-Architectures: amd64
-Directory: 9.3-jre8
-GitCommit: c47212fa6db5547a5090fa409c4ee3913bcc18ce
+Tags: 12.0.1-jre17, 12.0-jre17, 12.0.1-jre17-eclipse-temurin, 12.0-jre17-eclipse-temurin
+Architectures: amd64, arm64v8
+Directory: eclipse-temurin/12.0/jre17
+GitCommit: 70761e505bb94130d5175cc22cbd93bff3ccc31c
-Tags: 9.2.30-jre8, 9.2-jre8
+Tags: 12.0.1-jdk17-alpine, 12.0-jdk17-alpine, 12.0.1-jdk17-alpine-eclipse-temurin, 12.0-jdk17-alpine-eclipse-temurin
Architectures: amd64
-Directory: 9.2-jre8
-GitCommit: 481a3bcb16a8bf0ee11a4b67a4710050e5403064
+Directory: eclipse-temurin/12.0/jdk17-alpine
+GitCommit: 70761e505bb94130d5175cc22cbd93bff3ccc31c
+
+Tags: 12.0.1, 12.0, 12.0.1-jdk17, 12.0-jdk17, 12.0.1-eclipse-temurin, 12.0-eclipse-temurin, 12.0.1-jdk17-eclipse-temurin, 12.0-jdk17-eclipse-temurin
+Architectures: amd64, arm64v8
+Directory: eclipse-temurin/12.0/jdk17
+GitCommit: 70761e505bb94130d5175cc22cbd93bff3ccc31c
+
+Tags: 11.0.16-jre17-alpine, 11.0-jre17-alpine, 11-jre17-alpine, 11.0.16-jre17-alpine-eclipse-temurin, 11.0-jre17-alpine-eclipse-temurin, 11-jre17-alpine-eclipse-temurin
+Architectures: amd64
+Directory: eclipse-temurin/11.0/jre17-alpine
+GitCommit: 70761e505bb94130d5175cc22cbd93bff3ccc31c
+
+Tags: 11.0.16-jre17, 11.0-jre17, 11-jre17, 11.0.16-jre17-eclipse-temurin, 11.0-jre17-eclipse-temurin, 11-jre17-eclipse-temurin
+Architectures: amd64, arm64v8
+Directory: eclipse-temurin/11.0/jre17
+GitCommit: 70761e505bb94130d5175cc22cbd93bff3ccc31c
+
+Tags: 11.0.16-jre11-alpine, 11.0-jre11-alpine, 11-jre11-alpine, 11.0.16-jre11-alpine-eclipse-temurin, 11.0-jre11-alpine-eclipse-temurin, 11-jre11-alpine-eclipse-temurin
+Architectures: amd64
+Directory: eclipse-temurin/11.0/jre11-alpine
+GitCommit: 70761e505bb94130d5175cc22cbd93bff3ccc31c
+
+Tags: 11.0.16-jre11, 11.0-jre11, 11-jre11, 11.0.16-jre11-eclipse-temurin, 11.0-jre11-eclipse-temurin, 11-jre11-eclipse-temurin
+Architectures: amd64, arm64v8
+Directory: eclipse-temurin/11.0/jre11
+GitCommit: 70761e505bb94130d5175cc22cbd93bff3ccc31c
+
+Tags: 11.0.16-jdk17-alpine, 11.0-jdk17-alpine, 11-jdk17-alpine, 11.0.16-jdk17-alpine-eclipse-temurin, 11.0-jdk17-alpine-eclipse-temurin, 11-jdk17-alpine-eclipse-temurin
+Architectures: amd64
+Directory: eclipse-temurin/11.0/jdk17-alpine
+GitCommit: 70761e505bb94130d5175cc22cbd93bff3ccc31c
+
+Tags: 11.0.16, 11.0, 11, 11.0.16-jdk17, 11.0-jdk17, 11-jdk17, 11.0.16-eclipse-temurin, 11.0-eclipse-temurin, 11-eclipse-temurin, 11.0.16-jdk17-eclipse-temurin, 11.0-jdk17-eclipse-temurin, 11-jdk17-eclipse-temurin, latest, jdk17
+Architectures: amd64, arm64v8
+Directory: eclipse-temurin/11.0/jdk17
+GitCommit: 70761e505bb94130d5175cc22cbd93bff3ccc31c
+
+Tags: 11.0.16-jdk11-alpine, 11.0-jdk11-alpine, 11-jdk11-alpine, 11.0.16-jdk11-alpine-eclipse-temurin, 11.0-jdk11-alpine-eclipse-temurin, 11-jdk11-alpine-eclipse-temurin
+Architectures: amd64
+Directory: eclipse-temurin/11.0/jdk11-alpine
+GitCommit: 70761e505bb94130d5175cc22cbd93bff3ccc31c
+
+Tags: 11.0.16-jdk11, 11.0-jdk11, 11-jdk11, 11.0.16-jdk11-eclipse-temurin, 11.0-jdk11-eclipse-temurin, 11-jdk11-eclipse-temurin
+Architectures: amd64, arm64v8
+Directory: eclipse-temurin/11.0/jdk11
+GitCommit: 70761e505bb94130d5175cc22cbd93bff3ccc31c
+
+Tags: 10.0.16-jre17-alpine, 10.0-jre17-alpine, 10-jre17-alpine, 10.0.16-jre17-alpine-eclipse-temurin, 10.0-jre17-alpine-eclipse-temurin, 10-jre17-alpine-eclipse-temurin
+Architectures: amd64
+Directory: eclipse-temurin/10.0/jre17-alpine
+GitCommit: 70761e505bb94130d5175cc22cbd93bff3ccc31c
+
+Tags: 10.0.16-jre17, 10.0-jre17, 10-jre17, 10.0.16-jre17-eclipse-temurin, 10.0-jre17-eclipse-temurin, 10-jre17-eclipse-temurin
+Architectures: amd64, arm64v8
+Directory: eclipse-temurin/10.0/jre17
+GitCommit: 70761e505bb94130d5175cc22cbd93bff3ccc31c
+
+Tags: 10.0.16-jre11-alpine, 10.0-jre11-alpine, 10-jre11-alpine, 10.0.16-jre11-alpine-eclipse-temurin, 10.0-jre11-alpine-eclipse-temurin, 10-jre11-alpine-eclipse-temurin
+Architectures: amd64
+Directory: eclipse-temurin/10.0/jre11-alpine
+GitCommit: 70761e505bb94130d5175cc22cbd93bff3ccc31c
+
+Tags: 10.0.16-jre11, 10.0-jre11, 10-jre11, 10.0.16-jre11-eclipse-temurin, 10.0-jre11-eclipse-temurin, 10-jre11-eclipse-temurin
+Architectures: amd64, arm64v8
+Directory: eclipse-temurin/10.0/jre11
+GitCommit: 70761e505bb94130d5175cc22cbd93bff3ccc31c
+
+Tags: 10.0.16-jdk17-alpine, 10.0-jdk17-alpine, 10-jdk17-alpine, 10.0.16-jdk17-alpine-eclipse-temurin, 10.0-jdk17-alpine-eclipse-temurin, 10-jdk17-alpine-eclipse-temurin
+Architectures: amd64
+Directory: eclipse-temurin/10.0/jdk17-alpine
+GitCommit: 70761e505bb94130d5175cc22cbd93bff3ccc31c
+
+Tags: 10.0.16, 10.0, 10, 10.0.16-jdk17, 10.0-jdk17, 10-jdk17, 10.0.16-eclipse-temurin, 10.0-eclipse-temurin, 10-eclipse-temurin, 10.0.16-jdk17-eclipse-temurin, 10.0-jdk17-eclipse-temurin, 10-jdk17-eclipse-temurin
+Architectures: amd64, arm64v8
+Directory: eclipse-temurin/10.0/jdk17
+GitCommit: 70761e505bb94130d5175cc22cbd93bff3ccc31c
+
+Tags: 10.0.16-jdk11-alpine, 10.0-jdk11-alpine, 10-jdk11-alpine, 10.0.16-jdk11-alpine-eclipse-temurin, 10.0-jdk11-alpine-eclipse-temurin, 10-jdk11-alpine-eclipse-temurin
+Architectures: amd64
+Directory: eclipse-temurin/10.0/jdk11-alpine
+GitCommit: 70761e505bb94130d5175cc22cbd93bff3ccc31c
+
+Tags: 10.0.16-jdk11, 10.0-jdk11, 10-jdk11, 10.0.16-jdk11-eclipse-temurin, 10.0-jdk11-eclipse-temurin, 10-jdk11-eclipse-temurin
+Architectures: amd64, arm64v8
+Directory: eclipse-temurin/10.0/jdk11
+GitCommit: 70761e505bb94130d5175cc22cbd93bff3ccc31c
+
+Tags: 9.4.52-jdk8-alpine-amazoncorretto, 9.4-jdk8-alpine-amazoncorretto, 9-jdk8-alpine-amazoncorretto
+Architectures: amd64
+Directory: amazoncorretto/9.4/jdk8-alpine
+GitCommit: 70761e505bb94130d5175cc22cbd93bff3ccc31c
+
+Tags: 9.4.52-jdk8-amazoncorretto, 9.4-jdk8-amazoncorretto, 9-jdk8-amazoncorretto
+Architectures: amd64, arm64v8
+Directory: amazoncorretto/9.4/jdk8
+GitCommit: 70761e505bb94130d5175cc22cbd93bff3ccc31c
+
+Tags: 9.4.52-jdk17-alpine-amazoncorretto, 9.4-jdk17-alpine-amazoncorretto, 9-jdk17-alpine-amazoncorretto
+Architectures: amd64
+Directory: amazoncorretto/9.4/jdk17-alpine
+GitCommit: 70761e505bb94130d5175cc22cbd93bff3ccc31c
+
+Tags: 9.4.52-amazoncorretto, 9.4-amazoncorretto, 9-amazoncorretto, 9.4.52-jdk17-amazoncorretto, 9.4-jdk17-amazoncorretto, 9-jdk17-amazoncorretto
+Architectures: amd64, arm64v8
+Directory: amazoncorretto/9.4/jdk17
+GitCommit: 70761e505bb94130d5175cc22cbd93bff3ccc31c
+
+Tags: 9.4.52-jdk11-alpine-amazoncorretto, 9.4-jdk11-alpine-amazoncorretto, 9-jdk11-alpine-amazoncorretto
+Architectures: amd64
+Directory: amazoncorretto/9.4/jdk11-alpine
+GitCommit: 70761e505bb94130d5175cc22cbd93bff3ccc31c
+
+Tags: 9.4.52-jdk11-amazoncorretto, 9.4-jdk11-amazoncorretto, 9-jdk11-amazoncorretto
+Architectures: amd64, arm64v8
+Directory: amazoncorretto/9.4/jdk11
+GitCommit: 70761e505bb94130d5175cc22cbd93bff3ccc31c
+
+Tags: 12.0.1-jdk17-alpine-amazoncorretto, 12.0-jdk17-alpine-amazoncorretto
+Architectures: amd64
+Directory: amazoncorretto/12.0/jdk17-alpine
+GitCommit: 70761e505bb94130d5175cc22cbd93bff3ccc31c
+
+Tags: 12.0.1-amazoncorretto, 12.0-amazoncorretto, 12.0.1-jdk17-amazoncorretto, 12.0-jdk17-amazoncorretto
+Architectures: amd64, arm64v8
+Directory: amazoncorretto/12.0/jdk17
+GitCommit: 70761e505bb94130d5175cc22cbd93bff3ccc31c
+
+Tags: 11.0.16-jdk17-alpine-amazoncorretto, 11.0-jdk17-alpine-amazoncorretto, 11-jdk17-alpine-amazoncorretto
+Architectures: amd64
+Directory: amazoncorretto/11.0/jdk17-alpine
+GitCommit: 70761e505bb94130d5175cc22cbd93bff3ccc31c
+
+Tags: 11.0.16-amazoncorretto, 11.0-amazoncorretto, 11-amazoncorretto, 11.0.16-jdk17-amazoncorretto, 11.0-jdk17-amazoncorretto, 11-jdk17-amazoncorretto
+Architectures: amd64, arm64v8
+Directory: amazoncorretto/11.0/jdk17
+GitCommit: 70761e505bb94130d5175cc22cbd93bff3ccc31c
+
+Tags: 11.0.16-jdk11-alpine-amazoncorretto, 11.0-jdk11-alpine-amazoncorretto, 11-jdk11-alpine-amazoncorretto
+Architectures: amd64
+Directory: amazoncorretto/11.0/jdk11-alpine
+GitCommit: 70761e505bb94130d5175cc22cbd93bff3ccc31c
+
+Tags: 11.0.16-jdk11-amazoncorretto, 11.0-jdk11-amazoncorretto, 11-jdk11-amazoncorretto
+Architectures: amd64, arm64v8
+Directory: amazoncorretto/11.0/jdk11
+GitCommit: 70761e505bb94130d5175cc22cbd93bff3ccc31c
+
+Tags: 10.0.16-jdk17-alpine-amazoncorretto, 10.0-jdk17-alpine-amazoncorretto, 10-jdk17-alpine-amazoncorretto
+Architectures: amd64
+Directory: amazoncorretto/10.0/jdk17-alpine
+GitCommit: 70761e505bb94130d5175cc22cbd93bff3ccc31c
+
+Tags: 10.0.16-amazoncorretto, 10.0-amazoncorretto, 10-amazoncorretto, 10.0.16-jdk17-amazoncorretto, 10.0-jdk17-amazoncorretto, 10-jdk17-amazoncorretto
+Architectures: amd64, arm64v8
+Directory: amazoncorretto/10.0/jdk17
+GitCommit: 70761e505bb94130d5175cc22cbd93bff3ccc31c
+
+Tags: 10.0.16-jdk11-alpine-amazoncorretto, 10.0-jdk11-alpine-amazoncorretto, 10-jdk11-alpine-amazoncorretto
+Architectures: amd64
+Directory: amazoncorretto/10.0/jdk11-alpine
+GitCommit: 70761e505bb94130d5175cc22cbd93bff3ccc31c
+
+Tags: 10.0.16-jdk11-amazoncorretto, 10.0-jdk11-amazoncorretto, 10-jdk11-amazoncorretto
+Architectures: amd64, arm64v8
+Directory: amazoncorretto/10.0/jdk11
+GitCommit: 70761e505bb94130d5175cc22cbd93bff3ccc31c
diff --git a/library/joomla b/library/joomla
index 610b3ad26d..0cc1965509 100644
--- a/library/joomla
+++ b/library/joomla
@@ -1,34 +1,140 @@
-# this file is generated via https://github.com/joomla-docker/docker-joomla/blob/6874f569cbc6202f3fe84ed067305c803a6e1ab7/generate-stackbrew-library.sh
+# this file is generated via https://github.com/joomla-docker/docker-joomla/blob/ee137cbaebee5425cb84a113d559c4c8c26c1c0b/generate-stackbrew-library.sh
-Maintainers: Harald Leithner (@HLeithner)
+Maintainers: Llewellyn van der Merwe (@Llewellynvdm),
+ Harald Leithner (@HLeithner)
GitRepo: https://github.com/joomla-docker/docker-joomla.git
-Tags: 3.9.27-apache, 3.9-apache, 3-apache, apache, 3.9.27, 3.9, 3, latest, 3.9.27-php7.3-apache, 3.9-php7.3-apache, 3-php7.3-apache, php7.3-apache, 3.9.27-php7.3, 3.9-php7.3, 3-php7.3, php7.3
+Tags: 5.0.0-rc1-php8.1-apache, 5.0-php8.1-apache, 5.0.rc-php8.1-apache, 5.0.0-rc-php8.1-apache
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: ab7721ac727e7084888ef9e9251e74e241bd68fc
-Directory: php7.3/apache
+GitCommit: dc5b2b8442758fb72964f534614f69e84ba9aef5
+Directory: 5.0.rc/php8.1/apache
-Tags: 3.9.27-fpm, 3.9-fpm, 3-fpm, fpm, 3.9.27-php7.3-fpm, 3.9-php7.3-fpm, 3-php7.3-fpm, php7.3-fpm
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: ab7721ac727e7084888ef9e9251e74e241bd68fc
-Directory: php7.3/fpm
-
-Tags: 3.9.27-fpm-alpine, 3.9-fpm-alpine, 3-fpm-alpine, fpm-alpine, 3.9.27-php7.3-fpm-alpine, 3.9-php7.3-fpm-alpine, 3-php7.3-fpm-alpine, php7.3-fpm-alpine
+Tags: 5.0.0-rc1-php8.1-fpm-alpine, 5.0-php8.1-fpm-alpine, 5.0.rc-php8.1-fpm-alpine, 5.0.0-rc-php8.1-fpm-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: ab7721ac727e7084888ef9e9251e74e241bd68fc
-Directory: php7.3/fpm-alpine
+GitCommit: dc5b2b8442758fb72964f534614f69e84ba9aef5
+Directory: 5.0.rc/php8.1/fpm-alpine
-Tags: 3.9.27-php7.4-apache, 3.9-php7.4-apache, 3-php7.4-apache, php7.4-apache, 3.9.27-php7.4, 3.9-php7.4, 3-php7.4, php7.4
+Tags: 5.0.0-rc1-php8.1-fpm, 5.0-php8.1-fpm, 5.0.rc-php8.1-fpm, 5.0.0-rc-php8.1-fpm
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: ab7721ac727e7084888ef9e9251e74e241bd68fc
-Directory: php7.4/apache
+GitCommit: dc5b2b8442758fb72964f534614f69e84ba9aef5
+Directory: 5.0.rc/php8.1/fpm
-Tags: 3.9.27-php7.4-fpm, 3.9-php7.4-fpm, 3-php7.4-fpm, php7.4-fpm
+Tags: 5.0.0-rc1, 5.0, 5.0.rc, 5.0.0-rc, 5.0.0-rc1-apache, 5.0-apache, 5.0.rc-apache, 5.0.0-rc-apache, 5.0.0-rc1-php8.2, 5.0-php8.2, 5.0.rc-php8.2, 5.0.0-rc-php8.2, 5.0.0-rc1-php8.2-apache, 5.0-php8.2-apache, 5.0.rc-php8.2-apache, 5.0.0-rc-php8.2-apache
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: ab7721ac727e7084888ef9e9251e74e241bd68fc
-Directory: php7.4/fpm
+GitCommit: dc5b2b8442758fb72964f534614f69e84ba9aef5
+Directory: 5.0.rc/php8.2/apache
-Tags: 3.9.27-php7.4-fpm-alpine, 3.9-php7.4-fpm-alpine, 3-php7.4-fpm-alpine, php7.4-fpm-alpine
+Tags: 5.0.0-rc1-php8.2-fpm-alpine, 5.0-php8.2-fpm-alpine, 5.0.rc-php8.2-fpm-alpine, 5.0.0-rc-php8.2-fpm-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: f24020390a2a5ccfdddc9a69d4be77dfa8894b11
-Directory: php7.4/fpm-alpine
+GitCommit: dc5b2b8442758fb72964f534614f69e84ba9aef5
+Directory: 5.0.rc/php8.2/fpm-alpine
+
+Tags: 5.0.0-rc1-php8.2-fpm, 5.0-php8.2-fpm, 5.0.rc-php8.2-fpm, 5.0.0-rc-php8.2-fpm
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: dc5b2b8442758fb72964f534614f69e84ba9aef5
+Directory: 5.0.rc/php8.2/fpm
+
+Tags: 4.4.0-rc1-php8.0-apache, 4.4-php8.0-apache, 4.4.rc-php8.0-apache, 4.4.0-rc-php8.0-apache
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: dc5b2b8442758fb72964f534614f69e84ba9aef5
+Directory: 4.4.rc/php8.0/apache
+
+Tags: 4.4.0-rc1-php8.0-fpm-alpine, 4.4-php8.0-fpm-alpine, 4.4.rc-php8.0-fpm-alpine, 4.4.0-rc-php8.0-fpm-alpine
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: dc5b2b8442758fb72964f534614f69e84ba9aef5
+Directory: 4.4.rc/php8.0/fpm-alpine
+
+Tags: 4.4.0-rc1-php8.0-fpm, 4.4-php8.0-fpm, 4.4.rc-php8.0-fpm, 4.4.0-rc-php8.0-fpm
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: dc5b2b8442758fb72964f534614f69e84ba9aef5
+Directory: 4.4.rc/php8.0/fpm
+
+Tags: 4.4.0-rc1, 4.4, 4.4.rc, 4.4.0-rc, 4.4.0-rc1-apache, 4.4-apache, 4.4.rc-apache, 4.4.0-rc-apache, 4.4.0-rc1-php8.1, 4.4-php8.1, 4.4.rc-php8.1, 4.4.0-rc-php8.1, 4.4.0-rc1-php8.1-apache, 4.4-php8.1-apache, 4.4.rc-php8.1-apache, 4.4.0-rc-php8.1-apache
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: dc5b2b8442758fb72964f534614f69e84ba9aef5
+Directory: 4.4.rc/php8.1/apache
+
+Tags: 4.4.0-rc1-php8.1-fpm-alpine, 4.4-php8.1-fpm-alpine, 4.4.rc-php8.1-fpm-alpine, 4.4.0-rc-php8.1-fpm-alpine
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: dc5b2b8442758fb72964f534614f69e84ba9aef5
+Directory: 4.4.rc/php8.1/fpm-alpine
+
+Tags: 4.4.0-rc1-php8.1-fpm, 4.4-php8.1-fpm, 4.4.rc-php8.1-fpm, 4.4.0-rc-php8.1-fpm
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: dc5b2b8442758fb72964f534614f69e84ba9aef5
+Directory: 4.4.rc/php8.1/fpm
+
+Tags: 4.4.0-rc1-php8.2-apache, 4.4-php8.2-apache, 4.4.rc-php8.2-apache, 4.4.0-rc-php8.2-apache
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: dc5b2b8442758fb72964f534614f69e84ba9aef5
+Directory: 4.4.rc/php8.2/apache
+
+Tags: 4.4.0-rc1-php8.2-fpm-alpine, 4.4-php8.2-fpm-alpine, 4.4.rc-php8.2-fpm-alpine, 4.4.0-rc-php8.2-fpm-alpine
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: dc5b2b8442758fb72964f534614f69e84ba9aef5
+Directory: 4.4.rc/php8.2/fpm-alpine
+
+Tags: 4.4.0-rc1-php8.2-fpm, 4.4-php8.2-fpm, 4.4.rc-php8.2-fpm, 4.4.0-rc-php8.2-fpm
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: dc5b2b8442758fb72964f534614f69e84ba9aef5
+Directory: 4.4.rc/php8.2/fpm
+
+Tags: 4.3.4, 4.3, 4, latest, 4.3.4-apache, 4.3-apache, 4-apache, apache, 4.3.4-php8.0, 4.3-php8.0, 4-php8.0, php8.0, 4.3.4-php8.0-apache, 4.3-php8.0-apache, 4-php8.0-apache, php8.0-apache
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: 98ed77593ebf9a2d6687fe68460832e82d412991
+Directory: 4.3/php8.0/apache
+
+Tags: 4.3.4-php8.0-fpm-alpine, 4.3-php8.0-fpm-alpine, 4-php8.0-fpm-alpine, php8.0-fpm-alpine
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: 98ed77593ebf9a2d6687fe68460832e82d412991
+Directory: 4.3/php8.0/fpm-alpine
+
+Tags: 4.3.4-php8.0-fpm, 4.3-php8.0-fpm, 4-php8.0-fpm, php8.0-fpm
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: 98ed77593ebf9a2d6687fe68460832e82d412991
+Directory: 4.3/php8.0/fpm
+
+Tags: 4.3.4-php8.1-apache, 4.3-php8.1-apache, 4-php8.1-apache, php8.1-apache
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: 98ed77593ebf9a2d6687fe68460832e82d412991
+Directory: 4.3/php8.1/apache
+
+Tags: 4.3.4-php8.1-fpm-alpine, 4.3-php8.1-fpm-alpine, 4-php8.1-fpm-alpine, php8.1-fpm-alpine
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: 98ed77593ebf9a2d6687fe68460832e82d412991
+Directory: 4.3/php8.1/fpm-alpine
+
+Tags: 4.3.4-php8.1-fpm, 4.3-php8.1-fpm, 4-php8.1-fpm, php8.1-fpm
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: 98ed77593ebf9a2d6687fe68460832e82d412991
+Directory: 4.3/php8.1/fpm
+
+Tags: 4.3.4-php8.2-apache, 4.3-php8.2-apache, 4-php8.2-apache, php8.2-apache
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: 98ed77593ebf9a2d6687fe68460832e82d412991
+Directory: 4.3/php8.2/apache
+
+Tags: 4.3.4-php8.2-fpm-alpine, 4.3-php8.2-fpm-alpine, 4-php8.2-fpm-alpine, php8.2-fpm-alpine
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: 98ed77593ebf9a2d6687fe68460832e82d412991
+Directory: 4.3/php8.2/fpm-alpine
+
+Tags: 4.3.4-php8.2-fpm, 4.3-php8.2-fpm, 4-php8.2-fpm, php8.2-fpm
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: 98ed77593ebf9a2d6687fe68460832e82d412991
+Directory: 4.3/php8.2/fpm
+
+Tags: 3.10.12, 3.10, 3, 3.10.12-apache, 3.10-apache, 3-apache, 3.10.12-php8.0, 3.10-php8.0, 3-php8.0, 3.10.12-php8.0-apache, 3.10-php8.0-apache, 3-php8.0-apache
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: a125bc71e8e6cd67a1534384d03ba255756a73ac
+Directory: 3.10/php8.0/apache
+
+Tags: 3.10.12-php8.0-fpm-alpine, 3.10-php8.0-fpm-alpine, 3-php8.0-fpm-alpine
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: a125bc71e8e6cd67a1534384d03ba255756a73ac
+Directory: 3.10/php8.0/fpm-alpine
+
+Tags: 3.10.12-php8.0-fpm, 3.10-php8.0-fpm, 3-php8.0-fpm
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: a125bc71e8e6cd67a1534384d03ba255756a73ac
+Directory: 3.10/php8.0/fpm
diff --git a/library/jruby b/library/jruby
index 7f38fdda38..7a1adcf5d8 100644
--- a/library/jruby
+++ b/library/jruby
@@ -3,40 +3,53 @@ Maintainers: JRuby Admin (@jruby),
Thomas E Enebo (@enebo)
GitRepo: https://github.com/jruby/docker-jruby.git
GitFetch: refs/heads/master
-GitCommit: dee0aed84ec1de82602291d6cf63515de1fef041
+GitCommit: 13c93bf03f4130306e52c3cb8316edbd1a63da15
-Tags: latest, 9, 9.2, 9.2.17, 9.2-jre, 9.2-jre8, 9.2.17-jre, 9.2.17-jre8, 9.2.17.0, 9.2.17.0-jre, 9.2.17.0-jre8
-Architectures: amd64
-Directory: 9000/jre8
+Tags: latest, 9, 9.4, 9.4.3, 9.4-jre, 9.4-jre8, 9.4.3-jre, 9.4.3-jre8, 9.4.3.0, 9.4.3.0-jre, 9.4.3.0-jre8
+Architectures: amd64, arm64v8
+Directory: 9.4/jre8
-Tags: 9-jdk, 9-jdk8, 9.2-jdk, 9.2-jdk8, 9.2.17-jdk, 9.2.17-jdk8, 9.2.17.0-jdk, 9.2.17.0-jdk8
-Architectures: amd64
-Directory: 9000/jdk8
+Tags: 9-jdk, 9-jdk8, 9.4-jdk, 9.4-jdk8, 9.4.3-jdk, 9.4.3-jdk8, 9.4.3.0-jdk, 9.4.3.0-jdk8
+Architectures: amd64, arm64v8
+Directory: 9.4/jdk8
-Tags: 9.2-jre11, 9.2.17-jre11, 9.2.17.0-jre11
-Architectures: amd64
-Directory: 9000/jre11
+Tags: 9.4-jre11, 9.4.3-jre11, 9.4.3.0-jre11
+Architectures: amd64, arm64v8
+Directory: 9.4/jre11
-Tags: 9.2-jdk11, 9.2.17-jdk11, 9.2.17.0-jdk11
-Architectures: amd64
-Directory: 9000/jdk11
+Tags: 9.4-jdk11, 9.4.3-jdk11, 9.4.3.0-jdk11
+Architectures: amd64, arm64v8
+Directory: 9.4/jdk11
-Tags: 9.2-jdk16, 9.2.17-jdk16, 9.2.17.0-jdk16
-Architectures: amd64
-Directory: 9000/jdk16
+Tags: 9.4-jdk17, 9.4.3-jdk17, 9.4.3.0-jdk17
+Architectures: amd64, arm64v8
+Directory: 9.4/jdk17
-Tags: 9-onbuild, 9.2-onbuild, 9.2.17-onbuild, 9.2.17.0-onbuild
-Architectures: amd64
-Directory: 9000/onbuild-jdk8
+Tags: 9.4-jre17, 9.4.2-jre17, 9.4.2.0-jre17
+Architectures: amd64, arm64v8
+Directory: 9.4/jre17
-Tags: 9.1, 9.1.17, 9.1.17.0, 9.1-jre, 9.1.17-jre, 9.1.17.0-jre
-Architectures: amd64
-Directory: 9000/jre
-GitCommit: 8bc3fe27670a851953345182fe12f14f5e708383
-GitFetch: refs/heads/9.1
+Tags: 9.3, 9.3.11, 9.3-jre, 9.3-jre8, 9.3.11-jre, 9.3.11-jre8, 9.3.11.0, 9.3.11.0-jre, 9.3.11.0-jre8
+Architectures: amd64, arm64v8
+Directory: 9.3/jre8
+
+Tags: 9.3-jdk, 9.3-jdk8, 9.3.11-jdk, 9.3.11-jdk8, 9.3.11.0-jdk, 9.3.11.0-jdk8
+Architectures: amd64, arm64v8
+Directory: 9.3/jdk8
+
+Tags: 9.3-jre11, 9.3.11-jre11, 9.3.11.0-jre11
+Architectures: amd64, arm64v8
+Directory: 9.3/jre11
+
+Tags: 9.3-jdk11, 9.3.11-jdk11, 9.3.11.0-jdk11
+Architectures: amd64, arm64v8
+Directory: 9.3/jdk11
+
+Tags: 9.3-jdk17, 9.3.11-jdk17, 9.3.11.0-jdk17
+Architectures: amd64, arm64v8
+Directory: 9.3/jdk17
+
+Tags: 9.3-jre17, 9.3.11-jre17, 9.3.11.0-jre17
+Architectures: amd64, arm64v8
+Directory: 9.3/jre17
-Tags: 9.1-jdk, 9.1.17-jdk, 9.1.17.0-jdk
-Architectures: amd64
-Directory: 9000/jdk
-GitCommit: 8bc3fe27670a851953345182fe12f14f5e708383
-GitFetch: refs/heads/9.1
diff --git a/library/julia b/library/julia
index aa5c8f3b72..d178f21bc2 100644
--- a/library/julia
+++ b/library/julia
@@ -1,55 +1,110 @@
-# this file is generated via https://github.com/docker-library/julia/blob/c82315d05c48897137be2720a5ee9f0132f1b06b/generate-stackbrew-library.sh
+# this file is generated via https://github.com/docker-library/julia/blob/e7b78511fdae10bb6bb32737be3e8503c8a1b87a/generate-stackbrew-library.sh
Maintainers: Tianon Gravi (@tianon),
Joseph Ferguson (@yosifkit)
GitRepo: https://github.com/docker-library/julia.git
-Tags: 1.6.1-buster, 1.6-buster, 1-buster, buster
-SharedTags: 1.6.1, 1.6, 1, latest
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le
-GitCommit: 6458311a816406d7b1eb6d37ae92a6e27e32028c
-Directory: 1.6/buster
+Tags: 1.10.0-beta3-bookworm, 1.10-rc-bookworm, rc-bookworm
+SharedTags: 1.10.0-beta3, 1.10-rc, rc
+Architectures: amd64, arm64v8, i386, ppc64le
+GitCommit: b079ad40685c641e9ff6b880e6dc3ba311a2baf7
+Directory: 1.10-rc/bookworm
-Tags: 1.6.1-alpine3.13, 1.6-alpine3.13, 1-alpine3.13, alpine3.13, 1.6.1-alpine, 1.6-alpine, 1-alpine, alpine
+Tags: 1.10.0-beta3-bullseye, 1.10-rc-bullseye, rc-bullseye
+Architectures: amd64, arm64v8, i386, ppc64le
+GitCommit: b079ad40685c641e9ff6b880e6dc3ba311a2baf7
+Directory: 1.10-rc/bullseye
+
+Tags: 1.10.0-beta3-alpine3.18, 1.10-rc-alpine3.18, rc-alpine3.18, 1.10.0-beta3-alpine, 1.10-rc-alpine, rc-alpine
Architectures: amd64
-GitCommit: 6458311a816406d7b1eb6d37ae92a6e27e32028c
-Directory: 1.6/alpine3.13
+GitCommit: b079ad40685c641e9ff6b880e6dc3ba311a2baf7
+Directory: 1.10-rc/alpine3.18
-Tags: 1.6.1-windowsservercore-1809, 1.6-windowsservercore-1809, 1-windowsservercore-1809, windowsservercore-1809
-SharedTags: 1.6.1, 1.6, 1, latest
+Tags: 1.10.0-beta3-alpine3.17, 1.10-rc-alpine3.17, rc-alpine3.17
+Architectures: amd64
+GitCommit: b079ad40685c641e9ff6b880e6dc3ba311a2baf7
+Directory: 1.10-rc/alpine3.17
+
+Tags: 1.10.0-beta3-windowsservercore-ltsc2022, 1.10-rc-windowsservercore-ltsc2022, rc-windowsservercore-ltsc2022
+SharedTags: 1.10.0-beta3, 1.10-rc, rc, 1.10.0-beta3-windowsservercore, 1.10-rc-windowsservercore, rc-windowsservercore
Architectures: windows-amd64
-GitCommit: 6458311a816406d7b1eb6d37ae92a6e27e32028c
+GitCommit: b079ad40685c641e9ff6b880e6dc3ba311a2baf7
+Directory: 1.10-rc/windows/windowsservercore-ltsc2022
+Constraints: windowsservercore-ltsc2022
+
+Tags: 1.10.0-beta3-windowsservercore-1809, 1.10-rc-windowsservercore-1809, rc-windowsservercore-1809
+SharedTags: 1.10.0-beta3, 1.10-rc, rc, 1.10.0-beta3-windowsservercore, 1.10-rc-windowsservercore, rc-windowsservercore
+Architectures: windows-amd64
+GitCommit: b079ad40685c641e9ff6b880e6dc3ba311a2baf7
+Directory: 1.10-rc/windows/windowsservercore-1809
+Constraints: windowsservercore-1809
+
+Tags: 1.9.3-bookworm, 1.9-bookworm, 1-bookworm, bookworm
+SharedTags: 1.9.3, 1.9, 1, latest
+Architectures: amd64, arm64v8, i386, ppc64le
+GitCommit: d50ed8b3f1ef3c76d9be2647c7151ab0a539d2a8
+Directory: 1.9/bookworm
+
+Tags: 1.9.3-bullseye, 1.9-bullseye, 1-bullseye, bullseye
+Architectures: amd64, arm64v8, i386, ppc64le
+GitCommit: d50ed8b3f1ef3c76d9be2647c7151ab0a539d2a8
+Directory: 1.9/bullseye
+
+Tags: 1.9.3-alpine3.18, 1.9-alpine3.18, 1-alpine3.18, alpine3.18, 1.9.3-alpine, 1.9-alpine, 1-alpine, alpine
+Architectures: amd64
+GitCommit: d50ed8b3f1ef3c76d9be2647c7151ab0a539d2a8
+Directory: 1.9/alpine3.18
+
+Tags: 1.9.3-alpine3.17, 1.9-alpine3.17, 1-alpine3.17, alpine3.17
+Architectures: amd64
+GitCommit: d50ed8b3f1ef3c76d9be2647c7151ab0a539d2a8
+Directory: 1.9/alpine3.17
+
+Tags: 1.9.3-windowsservercore-ltsc2022, 1.9-windowsservercore-ltsc2022, 1-windowsservercore-ltsc2022, windowsservercore-ltsc2022
+SharedTags: 1.9.3, 1.9, 1, latest, 1.9.3-windowsservercore, 1.9-windowsservercore, 1-windowsservercore, windowsservercore
+Architectures: windows-amd64
+GitCommit: d50ed8b3f1ef3c76d9be2647c7151ab0a539d2a8
+Directory: 1.9/windows/windowsservercore-ltsc2022
+Constraints: windowsservercore-ltsc2022
+
+Tags: 1.9.3-windowsservercore-1809, 1.9-windowsservercore-1809, 1-windowsservercore-1809, windowsservercore-1809
+SharedTags: 1.9.3, 1.9, 1, latest, 1.9.3-windowsservercore, 1.9-windowsservercore, 1-windowsservercore, windowsservercore
+Architectures: windows-amd64
+GitCommit: d50ed8b3f1ef3c76d9be2647c7151ab0a539d2a8
+Directory: 1.9/windows/windowsservercore-1809
+Constraints: windowsservercore-1809
+
+Tags: 1.6.7-bookworm, 1.6-bookworm
+SharedTags: 1.6.7, 1.6
+Architectures: amd64, arm32v7, arm64v8, i386
+GitCommit: cf90acdd6a92c4e20c68312209e0764a96758d2c
+Directory: 1.6/bookworm
+
+Tags: 1.6.7-bullseye, 1.6-bullseye
+Architectures: amd64, arm32v7, arm64v8, i386
+GitCommit: 67a1817cca70fb1a601ecb38517c44e1e9982292
+Directory: 1.6/bullseye
+
+Tags: 1.6.7-alpine3.18, 1.6-alpine3.18, 1.6.7-alpine, 1.6-alpine
+Architectures: amd64
+GitCommit: 1486d832edaa15eee0703c413aace5d70efd8704
+Directory: 1.6/alpine3.18
+
+Tags: 1.6.7-alpine3.17, 1.6-alpine3.17
+Architectures: amd64
+GitCommit: 67a1817cca70fb1a601ecb38517c44e1e9982292
+Directory: 1.6/alpine3.17
+
+Tags: 1.6.7-windowsservercore-ltsc2022, 1.6-windowsservercore-ltsc2022
+SharedTags: 1.6.7, 1.6, 1.6.7-windowsservercore, 1.6-windowsservercore
+Architectures: windows-amd64
+GitCommit: e0d0364c90b544d2d6de097e324ff7cc538613e8
+Directory: 1.6/windows/windowsservercore-ltsc2022
+Constraints: windowsservercore-ltsc2022
+
+Tags: 1.6.7-windowsservercore-1809, 1.6-windowsservercore-1809
+SharedTags: 1.6.7, 1.6, 1.6.7-windowsservercore, 1.6-windowsservercore
+Architectures: windows-amd64
+GitCommit: e0d0364c90b544d2d6de097e324ff7cc538613e8
Directory: 1.6/windows/windowsservercore-1809
Constraints: windowsservercore-1809
-
-Tags: 1.6.1-windowsservercore-ltsc2016, 1.6-windowsservercore-ltsc2016, 1-windowsservercore-ltsc2016, windowsservercore-ltsc2016
-SharedTags: 1.6.1, 1.6, 1, latest
-Architectures: windows-amd64
-GitCommit: 6458311a816406d7b1eb6d37ae92a6e27e32028c
-Directory: 1.6/windows/windowsservercore-ltsc2016
-Constraints: windowsservercore-ltsc2016
-
-Tags: 1.0.5-buster, 1.0-buster
-SharedTags: 1.0.5, 1.0
-Architectures: amd64, arm32v7, arm64v8, i386
-GitCommit: 4c770401df0b946da5cf61150bedb05280b218a6
-Directory: 1.0/buster
-
-Tags: 1.0.5-stretch, 1.0-stretch
-Architectures: amd64, arm32v7, arm64v8, i386
-GitCommit: 4c770401df0b946da5cf61150bedb05280b218a6
-Directory: 1.0/stretch
-
-Tags: 1.0.5-windowsservercore-1809, 1.0-windowsservercore-1809
-SharedTags: 1.0.5, 1.0
-Architectures: windows-amd64
-GitCommit: fc3c116c6fe19f870091df6843ed63a37f6c291b
-Directory: 1.0/windows/windowsservercore-1809
-Constraints: windowsservercore-1809
-
-Tags: 1.0.5-windowsservercore-ltsc2016, 1.0-windowsservercore-ltsc2016
-SharedTags: 1.0.5, 1.0
-Architectures: windows-amd64
-GitCommit: fc3c116c6fe19f870091df6843ed63a37f6c291b
-Directory: 1.0/windows/windowsservercore-ltsc2016
-Constraints: windowsservercore-ltsc2016
diff --git a/library/kaazing-gateway b/library/kaazing-gateway
deleted file mode 100644
index 52cd37583f..0000000000
--- a/library/kaazing-gateway
+++ /dev/null
@@ -1,6 +0,0 @@
-Maintainers: Kaazing Docker Maintainers (@kaazing)
-
-Tags: 5.6.0, 5.6, 5, latest
-Architectures: amd64, arm64v8
-GitRepo: https://github.com/kaazing/gateway.docker.git
-GitCommit: a40c8da9d2c2925bdd78b9a6d1b6da3fe89322d1
diff --git a/library/kapacitor b/library/kapacitor
index ec54ad5fe4..20d51ba35e 100644
--- a/library/kapacitor
+++ b/library/kapacitor
@@ -1,18 +1,17 @@
-Maintainers: Jonathan A. Sternberg (@jsternberg),
- j. Emrys Landivar (@docmerlin)
-GitRepo: git://github.com/influxdata/influxdata-docker
-GitCommit: 63fe0684150d96916514a84cf5978c3512dc15fa
+Maintainers: Brandon Pfeifer (@bnpfeife)
+GitRepo: https://github.com/influxdata/influxdata-docker
+GitCommit: 4d8ee693af190b1d7338658239e39bf2fe54c53f
-Tags: 1.4, 1.4.1
-Architectures: amd64, arm32v7, arm64v8
-Directory: kapacitor/1.4
+Tags: 1.6, 1.6.6
+Architectures: amd64, arm64v8
+Directory: kapacitor/1.6
-Tags: 1.4-alpine, 1.4.1-alpine
-Directory: kapacitor/1.4/alpine
+Tags: 1.6-alpine, 1.6.6-alpine
+Directory: kapacitor/1.6/alpine
-Tags: 1.5, 1.5.9, latest
-Architectures: amd64, arm32v7, arm64v8
-Directory: kapacitor/1.5
+Tags: 1.7, 1.7.0, latest
+Architectures: amd64, arm64v8
+Directory: kapacitor/1.7
-Tags: 1.5-alpine, 1.5.9-alpine, alpine
-Directory: kapacitor/1.5/alpine
+Tags: 1.7-alpine, 1.7.0-alpine, alpine
+Directory: kapacitor/1.7/alpine
diff --git a/library/kibana b/library/kibana
index d45ba25604..f372df9fcf 100644
--- a/library/kibana
+++ b/library/kibana
@@ -1,13 +1,15 @@
-# this file is generated via https://github.com/docker-library/kibana/blob/2ec5f3641bcc93b9a8066f19b42630b4e8d570c7/generate-stackbrew-library.sh
+# this file is generated via https://github.com/docker-library/kibana/blob/094d900939e2a66300d48cbf2f3a8e0fc1d51abc/generate-stackbrew-library.sh
Maintainers: Tianon Gravi (@tianon),
Joseph Ferguson (@yosifkit)
GitRepo: https://github.com/docker-library/kibana.git
-Tags: 7.12.1
-GitCommit: 46b36d2319d45441c35e67075106d81856fca123
-Directory: 7
+Tags: 8.10.2
+Architectures: amd64, arm64v8
+GitCommit: 3665097f9e6714e04e3e40f947d7c8f0e4928a2c
+Directory: 8
-Tags: 6.8.15
-GitCommit: d6759ae96883bf483b449f26c97229442e13c5cc
-Directory: 6
+Tags: 7.17.13
+Architectures: amd64, arm64v8
+GitCommit: e79be1ed96f3a741881bbd741c5816aa9273ac2f
+Directory: 7
diff --git a/library/known b/library/known
deleted file mode 100644
index 523b73394b..0000000000
--- a/library/known
+++ /dev/null
@@ -1,6 +0,0 @@
-Maintainers: Known (@idno)
-GitRepo: https://github.com/idno/Known-Docker.git
-
-Tags: 0.9.9, 0.9, 0, latest
-Architectures: amd64, arm64v8
-GitCommit: 3454a52b4ad48e22b95e706dba9ff953cf84c2b1
diff --git a/library/kong b/library/kong
index 415ee361cb..acc534370a 100644
--- a/library/kong
+++ b/library/kong
@@ -1,94 +1,69 @@
-Maintainers: Kong Docker Maintainers (@thekonginc)
+Maintainers: Kong Docker Maintainers (@team-gateway-bot)
GitRepo: https://github.com/Kong/docker-kong.git
-# needs "Constraints" to match "centos" (which this image is "FROM")
-Tags: 2.4.1-alpine, 2.4-alpine, 2.4.1, 2.4, 2, alpine, latest
-GitCommit: e1b0a6c7eddd327926027692863a9900fd856977
-GitFetch: refs/tags/2.4.1
-Directory: alpine
-Architectures: amd64, arm64v8
-
-Tags: 2.4.1-ubuntu, 2.4-ubuntu, ubuntu
-GitCommit: e1b0a6c7eddd327926027692863a9900fd856977
-GitFetch: refs/tags/2.4.1
+Tags: 3.4.1-ubuntu, 3.4-ubuntu, 3.4.1, 3.4, 3, latest, ubuntu
+GitCommit: dae5846f2d75f71aa1b17ed2cb17af78c20355a7
+GitFetch: refs/tags/3.4.1
Directory: ubuntu
Architectures: amd64, arm64v8
-Tags: 2.4.1-centos, 2.4-centos, centos
-GitCommit: e1b0a6c7eddd327926027692863a9900fd856977
-GitFetch: refs/tags/2.4.1
-Directory: centos
+Tags: 3.3.1-alpine, alpine
+GitCommit: 2207aa20530f8a04290c82c9c2258717f7795080
+GitFetch: refs/tags/3.3.1
+File: Dockerfile.apk
Architectures: amd64
-Tags: 2.3.3-alpine, 2.3-alpine, 2.3.3, 2.3
-GitCommit: 6a6944f5abb7bd2708a47f5571a5133ad976b343
-GitFetch: refs/tags/2.3.3
-Directory: alpine
-Architectures: amd64, arm64v8
-
-Tags: 2.3.3-ubuntu, 2.3-ubuntu
-GitCommit: 6a6944f5abb7bd2708a47f5571a5133ad976b343
-GitFetch: refs/tags/2.3.3
+Tags: 3.3.1-ubuntu, 3.3-ubuntu, 3.3.1, 3.3
+GitCommit: 2207aa20530f8a04290c82c9c2258717f7795080
+GitFetch: refs/tags/3.3.1
Directory: ubuntu
Architectures: amd64, arm64v8
-Tags: 2.3.3-centos, 2.3-centos
-GitCommit: 6a6944f5abb7bd2708a47f5571a5133ad976b343
-GitFetch: refs/tags/2.3.3
-Directory: centos
+Tags: 3.2.2-alpine
+GitCommit: 5641f8836920650fc66c6d36408daf794d730b96
+GitFetch: refs/tags/3.2.2
+File: Dockerfile.apk
Architectures: amd64
-Tags: 2.2.2-alpine, 2.2-alpine, 2.2.2, 2.2
-GitCommit: 40f9973922b56ac590053b56f159bdce802e9296
-GitFetch: refs/tags/2.2.2
-Directory: alpine
-Architectures: amd64, arm64v8
-
-Tags: 2.2.2-ubuntu, 2.2-ubuntu
-GitCommit: 40f9973922b56ac590053b56f159bdce802e9296
-GitFetch: refs/tags/2.2.2
+Tags: 3.2.2-ubuntu, 3.2-ubuntu, 3.2.2, 3.2
+GitCommit: 5641f8836920650fc66c6d36408daf794d730b96
+GitFetch: refs/tags/3.2.2
Directory: ubuntu
Architectures: amd64, arm64v8
-Tags: 2.2.2-centos, 2.2-centos
-GitCommit: 40f9973922b56ac590053b56f159bdce802e9296
-GitFetch: refs/tags/2.2.2
-Directory: centos
-Architectures: amd64
-
-Tags: 2.1.4-alpine, 2.1-alpine, 2.1.4, 2.1
-GitCommit: b4c835f84d56a2d2d69c2780a1a409177ea0844f
-GitFetch: refs/tags/2.1.4
-Directory: alpine
+Tags: 3.1.1-alpine, 3.1.1, 3.1
+GitCommit: 5f914be945ec1732837cc4f6463219bed566c7ef
+GitFetch: refs/tags/3.1.1
+File: Dockerfile.apk
Architectures: amd64, arm64v8
-Tags: 2.1.4-ubuntu, 2.1-ubuntu
-GitCommit: 397f34af7d3503cc64614ef5852d5929a84ef65b
-GitFetch: refs/tags/2.1.4
+Tags: 3.1.1-ubuntu, 3.1-ubuntu
+GitCommit: 5f914be945ec1732837cc4f6463219bed566c7ef
+GitFetch: refs/tags/3.1.1
Directory: ubuntu
Architectures: amd64, arm64v8
-Tags: 2.1.4-centos, 2.1-centos
-GitCommit: 397f34af7d3503cc64614ef5852d5929a84ef65b
-GitFetch: refs/tags/2.1.4
-Directory: centos
-Architectures: amd64
+Tags: 3.0.2-alpine, 3.0-alpine, 3.0.2, 3.0
+GitCommit: 5a3ee8daf50371db2e3a788abe8f306255eead22
+GitFetch: refs/tags/3.0.2
+File: Dockerfile.apk
+Architectures: amd64, arm64v8
-Tags: 2.0.5-alpine, 2.0.5, 2.0
-GitCommit: 60626098f2f32fe1528eb4ffacff13fd1c3e919f
-GitFetch: refs/tags/2.0.5
-Directory: alpine
-Architectures: amd64
-
-Tags: 2.0.5-ubuntu, 2.0-ubuntu
-GitCommit: 60626098f2f32fe1528eb4ffacff13fd1c3e919f
-GitFetch: refs/tags/2.0.5
+Tags: 3.0.2-ubuntu, 3.0-ubuntu
+GitCommit: 5a3ee8daf50371db2e3a788abe8f306255eead22
+GitFetch: refs/tags/3.0.2
Directory: ubuntu
Architectures: amd64, arm64v8
-Tags: 2.0.5-centos, 2.0-centos
-GitCommit: 60626098f2f32fe1528eb4ffacff13fd1c3e919f
-GitFetch: refs/tags/2.0.5
-Directory: centos
-Architectures: amd64
+Tags: 2.8.4-alpine, 2.8.4, 2.8
+GitCommit: 1c31704cdc9bbd2c0a20e5479eb307140339582b
+GitFetch: refs/tags/2.8.4
+Directory: alpine
+Architectures: amd64, arm64v8
+
+Tags: 2.8.4-ubuntu, 2.8-ubuntu
+GitCommit: 1c31704cdc9bbd2c0a20e5479eb307140339582b
+GitFetch: refs/tags/2.8.4
+Directory: ubuntu
+Architectures: amd64, arm64v8
diff --git a/library/lightstreamer b/library/lightstreamer
index 22d43bdc0c..def24f36b6 100644
--- a/library/lightstreamer
+++ b/library/lightstreamer
@@ -1,33 +1,74 @@
-Maintainers: Lightstreamer Server Development Team (@lightstreamer)
+Maintainers: Lightstreamer Server Development Team (@lightstreamer),
+ Dario Crivelli (@dario-weswit)
GitRepo: https://github.com/Lightstreamer/Docker.git
Tags: 6.0.3, 6.0
-Architectures: amd64
-GitCommit: eeab1ae534273b1b05c973e577a1f3eec8d58427
+Architectures: amd64, arm64v8
+GitCommit: 84e3f6588620183b48b7eb62a18070b793eff019
Directory: 6.0
Tags: 6.1.0, 6.1, 6
-Architectures: amd64
-GitCommit: eeab1ae534273b1b05c973e577a1f3eec8d58427
+Architectures: amd64, arm64v8
+GitCommit: 84e3f6588620183b48b7eb62a18070b793eff019
Directory: 6.1
-Tags: 7.0.3-jdk8-openjdk, 7.0-jdk8-openjdk, 7.0.3-jdk8, 7.0-jdk8
-Architectures: amd64
-GitCommit: f3aaece15133b9405aef20c5d378c5a83aba7585
+Tags: 7.0.3-jdk8-temurin, 7.0-jdk8-temurin, 7.0.3-jdk8, 7.0-jdk8
+Architectures: amd64, arm64v8
+GitCommit: 84e3f6588620183b48b7eb62a18070b793eff019
Directory: 7.0/jdk8
-Tags: 7.0.3-jdk11-openjdk, 7.0-jdk11-openjdk, 7.0.3-jdk11, 7.0-jdk11, 7.0.3, 7.0
+Tags: 7.0.3-jdk11-temurin, 7.0-jdk11-temurin, 7.0.3-jdk11, 7.0-jdk11, 7.0.3, 7.0
Architectures: amd64, arm64v8
-GitCommit: f3aaece15133b9405aef20c5d378c5a83aba7585
+GitCommit: 84e3f6588620183b48b7eb62a18070b793eff019
Directory: 7.0/jdk11
-Tags: 7.1.2-jdk8-openjdk, 7.1-jdk8-openjdk, 7-jdk8-openjdk, 7.1.2-jdk8, 7.1-jdk8, 7-jdk8
-Architectures: amd64
-GitCommit: 7bdd2632e1cae0bf838899d591aadb2dd128c41a
+Tags: 7.1.3-jdk8-temurin, 7.1-jdk8-temurin, 7.1.3-jdk8, 7.1-jdk8
+Architectures: amd64, arm64v8
+GitCommit: 84e3f6588620183b48b7eb62a18070b793eff019
Directory: 7.1/jdk8
-Tags: 7.1.2-jdk11-openjdk, 7.1-jdk11-openjdk, 7-jdk11-openjdk, 7.1.2-jdk11, 7.1-jdk11, 7-jdk11, 7.1.2, 7.1, 7, latest
+Tags: 7.1.3-jdk11-temurin, 7.1-jdk11-temurin, 7.1.3-jdk11, 7.1-jdk11, 7.1.3, 7.1
Architectures: amd64, arm64v8
-GitCommit: 7bdd2632e1cae0bf838899d591aadb2dd128c41a
+GitCommit: 84e3f6588620183b48b7eb62a18070b793eff019
Directory: 7.1/jdk11
+Tags: 7.2.2-jdk8-temurin, 7.2-jdk8-temurin, 7.2.2-jdk8, 7.2-jdk8
+Architectures: amd64, arm64v8
+GitCommit: 84e3f6588620183b48b7eb62a18070b793eff019
+Directory: 7.2/jdk8
+
+Tags: 7.2.2-jdk11-temurin, 7.2-jdk11-temurin, 7.2.2-jdk11, 7.2-jdk11, 7.2.2, 7.2
+Architectures: amd64, arm64v8
+GitCommit: 84e3f6588620183b48b7eb62a18070b793eff019
+Directory: 7.2/jdk11
+
+Tags: 7.3.3-jdk8-temurin, 7.3-jdk8-temurin, 7.3.3-jdk8, 7.3-jdk8
+Architectures: amd64, arm64v8
+GitCommit: 3e0e7b00746f56ef7232b68c5e25afa6d688bd7c
+Directory: 7.3/jdk8
+
+Tags: 7.3.3-jdk11-temurin, 7.3-jdk11-temurin, 7.3.3-jdk11, 7.3-jdk11
+Architectures: amd64, arm64v8
+GitCommit: 3e0e7b00746f56ef7232b68c5e25afa6d688bd7c
+Directory: 7.3/jdk11
+
+Tags: 7.3.3-jdk17-temurin, 7.3-jdk17-temurin, 7.3.3-jdk17, 7.3-jdk17, 7.3.3, 7.3
+Architectures: amd64, arm64v8
+GitCommit: 3e0e7b00746f56ef7232b68c5e25afa6d688bd7c
+Directory: 7.3/jdk17
+
+Tags: 7.4.0-jdk8-temurin, 7.4-jdk8-temurin, 7-jdk8-temurin, 7.4.0-jdk8, 7.4-jdk8, 7-jdk8
+Architectures: amd64, arm64v8
+GitCommit: 3e0e7b00746f56ef7232b68c5e25afa6d688bd7c
+Directory: 7.4/jdk8
+
+Tags: 7.4.0-jdk11-temurin, 7.4-jdk11-temurin, 7-jdk11-temurin, 7.4.0-jdk11, 7.4-jdk11, 7-jdk11
+Architectures: amd64, arm64v8
+GitCommit: 3e0e7b00746f56ef7232b68c5e25afa6d688bd7c
+Directory: 7.4/jdk11
+
+Tags: 7.4.0-jdk17-temurin, 7.4-jdk17-temurin, 7-jdk17-temurin, 7.4.0-jdk17, 7.4-jdk17, 7-jdk17, 7.4.0, 7.4, 7, latest
+Architectures: amd64, arm64v8
+GitCommit: 3e0e7b00746f56ef7232b68c5e25afa6d688bd7c
+Directory: 7.4/jdk17
+
diff --git a/library/logstash b/library/logstash
index 1bb9d47a4b..5972a019cd 100644
--- a/library/logstash
+++ b/library/logstash
@@ -1,13 +1,15 @@
-# this file is generated via https://github.com/docker-library/logstash/blob/18d3da965bb702a12edd9d387afd16bd965c5b1c/generate-stackbrew-library.sh
+# this file is generated via https://github.com/docker-library/logstash/blob/f7d134ebe96d21adc7ff6f0bdc46e06db1a642e7/generate-stackbrew-library.sh
Maintainers: Tianon Gravi (@tianon),
Joseph Ferguson (@yosifkit)
GitRepo: https://github.com/docker-library/logstash.git
-Tags: 7.12.1
-GitCommit: d615c7193d244f2274841f73acd0df804b07fd17
-Directory: 7
+Tags: 8.10.2
+Architectures: amd64, arm64v8
+GitCommit: a42629bc1187f17e6955ad4d887b3c5f0f23081f
+Directory: 8
-Tags: 6.8.15
-GitCommit: 3640745741d172b99cb90382e701de77726c43a5
-Directory: 6
+Tags: 7.17.13
+Architectures: amd64, arm64v8
+GitCommit: a6039d10cfa0f21d86c08f473b9a18c6b94be352
+Directory: 7
diff --git a/library/mariadb b/library/mariadb
index 57428beb33..6177620983 100644
--- a/library/mariadb
+++ b/library/mariadb
@@ -1,30 +1,46 @@
-# this file is generated via https://github.com/MariaDB/mariadb-docker/blob/b180797cece7d65e23156fd872368e34d3d2a757/generate-stackbrew-library.sh
+# this file is generated via https://github.com/MariaDB/mariadb-docker/blob/5169d8f1961786986c7c5be8e3e86147352b7d14/generate-stackbrew-library.sh
Maintainers: Daniel Black (@grooverdan),
- Daniel Bartholomew (@dbart)
+ Daniel Bartholomew (@dbart),
+ Faustin Lammler (@fauust)
GitRepo: https://github.com/MariaDB/mariadb-docker.git
-Tags: 10.6.1-focal, 10.6-focal, beta-focal, 10.6.1, 10.6, beta
-Architectures: amd64, arm64v8, ppc64le
-GitCommit: 2ef69de05f84aee8a141c0d37cdb5b9790ac91d9
+Tags: 11.1.2-jammy, 11.1-jammy, 11-jammy, jammy, 11.1.2, 11.1, 11, latest
+Architectures: amd64, arm64v8, ppc64le, s390x
+GitCommit: 70d8c97f486055689e9f5a6a133f8bfb0806632a
+Directory: 11.1
+
+Tags: 11.0.3-jammy, 11.0-jammy, 11.0.3, 11.0
+Architectures: amd64, arm64v8, ppc64le, s390x
+GitCommit: 73a6fc045e12961287d2f41a6473bbf4e0eddeba
+Directory: 11.0
+
+Tags: 10.11.5-jammy, 10.11-jammy, 10-jammy, lts-jammy, 10.11.5, 10.11, 10, lts
+Architectures: amd64, arm64v8, ppc64le, s390x
+GitCommit: 73a6fc045e12961287d2f41a6473bbf4e0eddeba
+Directory: 10.11
+
+Tags: 10.10.6-jammy, 10.10-jammy, 10.10.6, 10.10
+Architectures: amd64, arm64v8, ppc64le, s390x
+GitCommit: 73a6fc045e12961287d2f41a6473bbf4e0eddeba
+Directory: 10.10
+
+Tags: 10.9.8-jammy, 10.9-jammy, 10.9.8, 10.9
+Architectures: amd64, arm64v8, ppc64le, s390x
+GitCommit: 73a6fc045e12961287d2f41a6473bbf4e0eddeba
+Directory: 10.9
+
+Tags: 10.6.15-focal, 10.6-focal, 10.6.15, 10.6
+Architectures: amd64, arm64v8, ppc64le, s390x
+GitCommit: 73a6fc045e12961287d2f41a6473bbf4e0eddeba
Directory: 10.6
-Tags: 10.5.10-focal, 10.5-focal, 10-focal, focal, 10.5.10, 10.5, 10, latest
-Architectures: amd64, arm64v8, ppc64le
-GitCommit: 6f5d272ca053105901c23fcdc44884907aa4d11d
+Tags: 10.5.22-focal, 10.5-focal, 10.5.22, 10.5
+Architectures: amd64, arm64v8, ppc64le, s390x
+GitCommit: 73a6fc045e12961287d2f41a6473bbf4e0eddeba
Directory: 10.5
-Tags: 10.4.19-focal, 10.4-focal, 10.4.19, 10.4
+Tags: 10.4.31-focal, 10.4-focal, 10.4.31, 10.4
Architectures: amd64, arm64v8, ppc64le
-GitCommit: 6f5d272ca053105901c23fcdc44884907aa4d11d
+GitCommit: 73a6fc045e12961287d2f41a6473bbf4e0eddeba
Directory: 10.4
-
-Tags: 10.3.29-focal, 10.3-focal, 10.3.29, 10.3
-Architectures: amd64, arm64v8, ppc64le
-GitCommit: 6f5d272ca053105901c23fcdc44884907aa4d11d
-Directory: 10.3
-
-Tags: 10.2.38-bionic, 10.2-bionic, 10.2.38, 10.2
-Architectures: amd64, arm64v8, ppc64le
-GitCommit: 6f5d272ca053105901c23fcdc44884907aa4d11d
-Directory: 10.2
diff --git a/library/matomo b/library/matomo
index dfe55f2c3f..5eb0eb44d3 100644
--- a/library/matomo
+++ b/library/matomo
@@ -1,18 +1,18 @@
-# This file is generated via https://github.com/matomo-org/docker/blob/2252146c6a2edbaf5028ed148e57e073d722afb4/generate-stackbrew-library.sh
-Maintainers: Pierre Ozoux (@pierreozoux)
+# This file is generated via https://github.com/matomo-org/docker/blob/46d5da6d8958f77248588fe70242627d721dd0bb/generate-stackbrew-library.sh
+Maintainers: Matomo Community (@matomo-org)
GitRepo: https://github.com/matomo-org/docker.git
-Tags: 4.3.1-apache, 4.3-apache, 4-apache, apache, 4.3.1, 4.3, 4, latest
+Tags: 4.15.1-apache, 4.15-apache, 4-apache, apache, 4.15.1, 4.15, 4, latest
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: dee3a5b7585e65fc15d5023f09986ec65ddfce6b
+GitCommit: a504fe92ae03210bd93d35574043c690ea2b6aa5
Directory: apache
-Tags: 4.3.1-fpm, 4.3-fpm, 4-fpm, fpm
+Tags: 4.15.1-fpm, 4.15-fpm, 4-fpm, fpm
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: dee3a5b7585e65fc15d5023f09986ec65ddfce6b
+GitCommit: a504fe92ae03210bd93d35574043c690ea2b6aa5
Directory: fpm
-Tags: 4.3.1-fpm-alpine, 4.3-fpm-alpine, 4-fpm-alpine, fpm-alpine
+Tags: 4.15.1-fpm-alpine, 4.15-fpm-alpine, 4-fpm-alpine, fpm-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: dee3a5b7585e65fc15d5023f09986ec65ddfce6b
+GitCommit: a504fe92ae03210bd93d35574043c690ea2b6aa5
Directory: fpm-alpine
diff --git a/library/maven b/library/maven
index f3fc0c9773..5dd539ef6c 100644
--- a/library/maven
+++ b/library/maven
@@ -1,152 +1,164 @@
Maintainers: Carlos Sanchez (@carlossg)
+Builder: buildkit
GitRepo: https://github.com/carlossg/docker-maven.git
+GitFetch: refs/heads/main
-Tags: 3.8.1-jdk-11, 3.8-jdk-11, 3-jdk-11
-Architectures: amd64, arm64v8
-GitCommit: bdffb5117c33476d554325d8efe5866306004b99
-Directory: openjdk-11
-
-Tags: 3.8.1-jdk-11-openj9, 3.8-jdk-11-openj9, 3-jdk-11-openj9
-Architectures: amd64, arm64v8, ppc64le, s390x
-GitCommit: bdffb5117c33476d554325d8efe5866306004b99
-Directory: adoptopenjdk-11-openj9
-
-Tags: 3.8.1-jdk-11-slim, 3.8-jdk-11-slim, 3-jdk-11-slim
-Architectures: amd64, arm64v8
-GitCommit: bdffb5117c33476d554325d8efe5866306004b99
-Directory: openjdk-11-slim
-
-Tags: 3.8.1-jdk-8, 3.8-jdk-8, 3-jdk-8
-Architectures: amd64
-GitCommit: bdffb5117c33476d554325d8efe5866306004b99
-Directory: openjdk-8
-
-Tags: 3.8.1-jdk-8-openj9, 3.8-jdk-8-openj9, 3-jdk-8-openj9
-Architectures: amd64, arm64v8, ppc64le, s390x
-GitCommit: bdffb5117c33476d554325d8efe5866306004b99
-Directory: adoptopenjdk-8-openj9
-
-Tags: 3.8.1-jdk-8-slim, 3.8-jdk-8-slim, 3-jdk-8-slim
-Architectures: amd64
-GitCommit: bdffb5117c33476d554325d8efe5866306004b99
-Directory: openjdk-8-slim
-
-Tags: 3.8.1-openjdk-11, 3.8-openjdk-11, 3-openjdk-11
-Architectures: amd64, arm64v8
-GitCommit: bdffb5117c33476d554325d8efe5866306004b99
-Directory: openjdk-11
-
-Tags: 3.8.1-openjdk-11-slim, 3.8-openjdk-11-slim, 3-openjdk-11-slim
-Architectures: amd64, arm64v8
-GitCommit: bdffb5117c33476d554325d8efe5866306004b99
-Directory: openjdk-11-slim
-
-Tags: 3.8.1-openjdk-15, 3.8-openjdk-15, 3-openjdk-15
-Architectures: amd64, arm64v8
-GitCommit: bdffb5117c33476d554325d8efe5866306004b99
-Directory: openjdk-15
-
-Tags: 3.8.1-openjdk-15-slim, 3.8-openjdk-15-slim, 3-openjdk-15-slim
-Architectures: amd64, arm64v8
-GitCommit: bdffb5117c33476d554325d8efe5866306004b99
-Directory: openjdk-15-slim
-
-Tags: 3.8.1-openjdk-16, 3.8.1, 3.8.1-openjdk, 3.8-openjdk-16, 3.8, 3.8-openjdk, 3-openjdk-16, 3, latest, 3-openjdk, openjdk
-Architectures: amd64, arm64v8
-GitCommit: bdffb5117c33476d554325d8efe5866306004b99
-Directory: openjdk-16
-
-Tags: 3.8.1-openjdk-16-slim, 3.8-openjdk-16-slim, 3-openjdk-16-slim
-Architectures: amd64, arm64v8
-GitCommit: bdffb5117c33476d554325d8efe5866306004b99
-Directory: openjdk-16-slim
-
-Tags: 3.8.1-openjdk-17, 3.8-openjdk-17, 3-openjdk-17
-Architectures: amd64, arm64v8
-GitCommit: bdffb5117c33476d554325d8efe5866306004b99
-Directory: openjdk-17
-
-Tags: 3.8.1-openjdk-17-slim, 3.8-openjdk-17-slim, 3-openjdk-17-slim
-Architectures: amd64, arm64v8
-GitCommit: bdffb5117c33476d554325d8efe5866306004b99
-Directory: openjdk-17-slim
-
-Tags: 3.8.1-openjdk-8, 3.8-openjdk-8, 3-openjdk-8
-Architectures: amd64
-GitCommit: bdffb5117c33476d554325d8efe5866306004b99
-Directory: openjdk-8
-
-Tags: 3.8.1-openjdk-8-slim, 3.8-openjdk-8-slim, 3-openjdk-8-slim
-Architectures: amd64
-GitCommit: bdffb5117c33476d554325d8efe5866306004b99
-Directory: openjdk-8-slim
-
-Tags: 3.8.1-adoptopenjdk-11, 3.8-adoptopenjdk-11, 3-adoptopenjdk-11
+Tags: 3.9.4-eclipse-temurin-11, 3.9-eclipse-temurin-11, 3-eclipse-temurin-11
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: bdffb5117c33476d554325d8efe5866306004b99
-Directory: adoptopenjdk-11
+GitCommit: 04ab123ebc6b70fad75cfb7a08cc24b0c921c637
+Directory: eclipse-temurin-11
-Tags: 3.8.1-adoptopenjdk-11-openj9, 3.8-adoptopenjdk-11-openj9, 3-adoptopenjdk-11-openj9
-Architectures: amd64, arm64v8, ppc64le, s390x
-GitCommit: bdffb5117c33476d554325d8efe5866306004b99
-Directory: adoptopenjdk-11-openj9
+Tags: 3.9.4-eclipse-temurin-11-alpine, 3.9-eclipse-temurin-11-alpine, 3-eclipse-temurin-11-alpine
+Architectures: amd64
+GitCommit: d7319e0caa2961b402073e8054bc63e8dc48d969
+Directory: eclipse-temurin-11-alpine
-Tags: 3.8.1-adoptopenjdk-15, 3.8.1-adoptopenjdk, 3.8-adoptopenjdk-15, 3.8-adoptopenjdk, 3-adoptopenjdk-15, 3-adoptopenjdk, adoptopenjdk
+Tags: 3.9.4-eclipse-temurin-11-focal, 3.9-eclipse-temurin-11-focal, 3-eclipse-temurin-11-focal
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: bdffb5117c33476d554325d8efe5866306004b99
-Directory: adoptopenjdk-15
+GitCommit: d7319e0caa2961b402073e8054bc63e8dc48d969
+Directory: eclipse-temurin-11-focal
-Tags: 3.8.1-adoptopenjdk-15-openj9, 3.8-adoptopenjdk-15-openj9, 3-adoptopenjdk-15-openj9
-Architectures: amd64, arm64v8, ppc64le, s390x
-GitCommit: bdffb5117c33476d554325d8efe5866306004b99
-Directory: adoptopenjdk-15-openj9
-
-Tags: 3.8.1-adoptopenjdk-16, 3.8-adoptopenjdk-16, 3-adoptopenjdk-16
+Tags: 3.9.4-eclipse-temurin-17, 3.9-eclipse-temurin-17, 3-eclipse-temurin-17
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: b1a19f5406f0d01cd8fe689efbb838474c48db4f
-Directory: adoptopenjdk-16
+GitCommit: d7319e0caa2961b402073e8054bc63e8dc48d969
+Directory: eclipse-temurin-17
-Tags: 3.8.1-adoptopenjdk-16-openj9, 3.8-adoptopenjdk-16-openj9, 3-adoptopenjdk-16-openj9
-Architectures: amd64, arm64v8, ppc64le, s390x
-GitCommit: b1a19f5406f0d01cd8fe689efbb838474c48db4f
-Directory: adoptopenjdk-16-openj9
+Tags: 3.9.4-eclipse-temurin-17-alpine, 3.9-eclipse-temurin-17-alpine, 3-eclipse-temurin-17-alpine
+Architectures: amd64
+GitCommit: d7319e0caa2961b402073e8054bc63e8dc48d969
+Directory: eclipse-temurin-17-alpine
-Tags: 3.8.1-adoptopenjdk-8, 3.8-adoptopenjdk-8, 3-adoptopenjdk-8
+Tags: 3.9.4-eclipse-temurin-17-focal, 3.9-eclipse-temurin-17-focal, 3-eclipse-temurin-17-focal
+Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
+GitCommit: d7319e0caa2961b402073e8054bc63e8dc48d969
+Directory: eclipse-temurin-17-focal
+
+Tags: 3.9.4-eclipse-temurin-20, 3.9.4, 3.9.4-eclipse-temurin, 3.9-eclipse-temurin-20, 3.9, 3.9-eclipse-temurin, 3-eclipse-temurin-20, 3, latest, 3-eclipse-temurin, eclipse-temurin
+Architectures: amd64, arm64v8
+GitCommit: d7319e0caa2961b402073e8054bc63e8dc48d969
+Directory: eclipse-temurin-20
+
+Tags: 3.9.4-eclipse-temurin-20-alpine, 3.9-eclipse-temurin-20-alpine, 3-eclipse-temurin-20-alpine
+Architectures: amd64
+GitCommit: d7319e0caa2961b402073e8054bc63e8dc48d969
+Directory: eclipse-temurin-20-alpine
+
+Tags: 3.9.4-eclipse-temurin-8, 3.9-eclipse-temurin-8, 3-eclipse-temurin-8
+Architectures: amd64, arm32v7, arm64v8, ppc64le
+GitCommit: d7319e0caa2961b402073e8054bc63e8dc48d969
+Directory: eclipse-temurin-8
+
+Tags: 3.9.4-eclipse-temurin-8-alpine, 3.9-eclipse-temurin-8-alpine, 3-eclipse-temurin-8-alpine
+Architectures: amd64
+GitCommit: d7319e0caa2961b402073e8054bc63e8dc48d969
+Directory: eclipse-temurin-8-alpine
+
+Tags: 3.9.4-eclipse-temurin-8-focal, 3.9-eclipse-temurin-8-focal, 3-eclipse-temurin-8-focal
+Architectures: amd64, arm32v7, arm64v8, ppc64le
+GitCommit: d7319e0caa2961b402073e8054bc63e8dc48d969
+Directory: eclipse-temurin-8-focal
+
+Tags: 3.9.4-ibmjava-8, 3.9.4-ibmjava, 3.9-ibmjava-8, 3.9-ibmjava, 3-ibmjava-8, 3-ibmjava, ibmjava
Architectures: amd64, ppc64le, s390x
-GitCommit: bdffb5117c33476d554325d8efe5866306004b99
-Directory: adoptopenjdk-8
-
-Tags: 3.8.1-adoptopenjdk-8-openj9, 3.8-adoptopenjdk-8-openj9, 3-adoptopenjdk-8-openj9
-Architectures: amd64, arm64v8, ppc64le, s390x
-GitCommit: bdffb5117c33476d554325d8efe5866306004b99
-Directory: adoptopenjdk-8-openj9
-
-Tags: 3.8.1-ibmjava-8, 3.8.1-ibmjava, 3.8-ibmjava-8, 3.8-ibmjava, 3-ibmjava-8, 3-ibmjava, ibmjava
-Architectures: amd64, i386, ppc64le, s390x
-GitCommit: bdffb5117c33476d554325d8efe5866306004b99
+GitCommit: d7319e0caa2961b402073e8054bc63e8dc48d969
Directory: ibmjava-8
-Tags: 3.8.1-ibmjava-8-alpine, 3.8.1-ibmjava-alpine, 3.8-ibmjava-8-alpine, 3.8-ibmjava-alpine, 3-ibmjava-8-alpine, ibmjava-alpine
-Architectures: amd64
-GitCommit: bdffb5117c33476d554325d8efe5866306004b99
-Directory: ibmjava-8-alpine
+Tags: 3.9.4-ibm-semeru-11-focal, 3.9-ibm-semeru-11-focal, 3-ibm-semeru-11-focal
+Architectures: amd64, arm64v8, ppc64le, s390x
+GitCommit: d7319e0caa2961b402073e8054bc63e8dc48d969
+Directory: ibm-semeru-11-focal
-Tags: 3.8.1-amazoncorretto-11, 3.8.1-amazoncorretto, 3.8-amazoncorretto-11, 3.8-amazoncorretto, 3-amazoncorretto-11, 3-amazoncorretto, amazoncorretto
+Tags: 3.9.4-ibm-semeru-17-focal, 3.9-ibm-semeru-17-focal, 3-ibm-semeru-17-focal
+Architectures: amd64, arm64v8, ppc64le, s390x
+GitCommit: d7319e0caa2961b402073e8054bc63e8dc48d969
+Directory: ibm-semeru-17-focal
+
+Tags: 3.9.4-amazoncorretto-11, 3.9.4-amazoncorretto, 3.9-amazoncorretto-11, 3.9-amazoncorretto, 3-amazoncorretto-11, 3-amazoncorretto, amazoncorretto
Architectures: amd64, arm64v8
-GitCommit: bdffb5117c33476d554325d8efe5866306004b99
+GitCommit: d7319e0caa2961b402073e8054bc63e8dc48d969
Directory: amazoncorretto-11
-Tags: 3.8.1-amazoncorretto-15, 3.8-amazoncorretto-15, 3-amazoncorretto-15
+Tags: 3.9.4-amazoncorretto-11-al2023, 3.9-amazoncorretto-11-al2023, 3-amazoncorretto-11-al2023
Architectures: amd64, arm64v8
-GitCommit: bdffb5117c33476d554325d8efe5866306004b99
-Directory: amazoncorretto-15
+GitCommit: 70289540a9c5078ffa8cdde7ab6432248f942d54
+Directory: amazoncorretto-11-al2023
-Tags: 3.8.1-amazoncorretto-16, 3.8-amazoncorretto-16, 3-amazoncorretto-16
+Tags: 3.9.4-amazoncorretto-11-debian, 3.9.4-amazoncorretto-11-debian-bookworm, 3.9-amazoncorretto-11-debian, 3.9-amazoncorretto-11-debian-bookworm, 3-amazoncorretto-11-debian, 3-amazoncorretto-11-debian-bookworm
Architectures: amd64, arm64v8
-GitCommit: b6352962a604bfffb21a535e0999c0292b68c1db
-Directory: amazoncorretto-16
+GitCommit: d7319e0caa2961b402073e8054bc63e8dc48d969
+Directory: amazoncorretto-11-debian
-Tags: 3.8.1-amazoncorretto-8, 3.8-amazoncorretto-8, 3-amazoncorretto-8
+Tags: 3.9.4-amazoncorretto-17, 3.9-amazoncorretto-17, 3-amazoncorretto-17
Architectures: amd64, arm64v8
-GitCommit: bdffb5117c33476d554325d8efe5866306004b99
+GitCommit: d7319e0caa2961b402073e8054bc63e8dc48d969
+Directory: amazoncorretto-17
+
+Tags: 3.9.4-amazoncorretto-17-al2023, 3.9-amazoncorretto-17-al2023, 3-amazoncorretto-17-al2023
+Architectures: amd64, arm64v8
+GitCommit: 70289540a9c5078ffa8cdde7ab6432248f942d54
+Directory: amazoncorretto-17-al2023
+
+Tags: 3.9.4-amazoncorretto-17-debian, 3.9.4-amazoncorretto-17-debian-bookworm, 3.9-amazoncorretto-17-debian, 3.9-amazoncorretto-17-debian-bookworm, 3-amazoncorretto-17-debian, 3-amazoncorretto-17-debian-bookworm
+Architectures: amd64, arm64v8
+GitCommit: d7319e0caa2961b402073e8054bc63e8dc48d969
+Directory: amazoncorretto-17-debian
+
+Tags: 3.9.4-amazoncorretto-20, 3.9-amazoncorretto-20, 3-amazoncorretto-20
+Architectures: amd64, arm64v8
+GitCommit: d7319e0caa2961b402073e8054bc63e8dc48d969
+Directory: amazoncorretto-20
+
+Tags: 3.9.4-amazoncorretto-20-al2023, 3.9-amazoncorretto-20-al2023, 3-amazoncorretto-20-al2023
+Architectures: amd64, arm64v8
+GitCommit: 70289540a9c5078ffa8cdde7ab6432248f942d54
+Directory: amazoncorretto-20-al2023
+
+Tags: 3.9.4-amazoncorretto-20-debian, 3.9.4-amazoncorretto-20-debian-bookworm, 3.9-amazoncorretto-20-debian, 3.9-amazoncorretto-20-debian-bookworm, 3-amazoncorretto-20-debian, 3-amazoncorretto-20-debian-bookworm
+Architectures: amd64, arm64v8
+GitCommit: d7319e0caa2961b402073e8054bc63e8dc48d969
+Directory: amazoncorretto-20-debian
+
+Tags: 3.9.4-amazoncorretto-21, 3.9-amazoncorretto-21, 3-amazoncorretto-21
+Architectures: amd64, arm64v8
+GitCommit: 7741c2848c3ea3ad6b4180d94b90d669d419c893
+Directory: amazoncorretto-21
+
+Tags: 3.9.4-amazoncorretto-21-al2023, 3.9-amazoncorretto-21-al2023, 3-amazoncorretto-21-al2023
+Architectures: amd64, arm64v8
+GitCommit: 3a94e25bc22f4589addf7e50361a3e0c1af1c306
+Directory: amazoncorretto-21-al2023
+
+Tags: 3.9.4-amazoncorretto-21-debian, 3.9.4-amazoncorretto-21-debian-bookworm, 3.9-amazoncorretto-21-debian, 3.9-amazoncorretto-21-debian-bookworm, 3-amazoncorretto-21-debian, 3-amazoncorretto-21-debian-bookworm
+Architectures: amd64, arm64v8
+GitCommit: 61b5d8d7e9e5706522ff154315db185816d35891
+Directory: amazoncorretto-21-debian
+
+Tags: 3.9.4-amazoncorretto-8, 3.9-amazoncorretto-8, 3-amazoncorretto-8
+Architectures: amd64, arm64v8
+GitCommit: d7319e0caa2961b402073e8054bc63e8dc48d969
Directory: amazoncorretto-8
+
+Tags: 3.9.4-amazoncorretto-8-al2023, 3.9-amazoncorretto-8-al2023, 3-amazoncorretto-8-al2023
+Architectures: amd64, arm64v8
+GitCommit: 70289540a9c5078ffa8cdde7ab6432248f942d54
+Directory: amazoncorretto-8-al2023
+
+Tags: 3.9.4-amazoncorretto-8-debian, 3.9.4-amazoncorretto-8-debian-bookworm, 3.9-amazoncorretto-8-debian, 3.9-amazoncorretto-8-debian-bookworm, 3-amazoncorretto-8-debian, 3-amazoncorretto-8-debian-bookworm
+Architectures: amd64, arm64v8
+GitCommit: d7319e0caa2961b402073e8054bc63e8dc48d969
+Directory: amazoncorretto-8-debian
+
+Tags: 3.9.4-sapmachine-11, 3.9-sapmachine-11, 3-sapmachine-11
+Architectures: amd64, arm64v8, ppc64le
+GitCommit: d7319e0caa2961b402073e8054bc63e8dc48d969
+Directory: sapmachine-11
+
+Tags: 3.9.4-sapmachine-17, 3.9.4-sapmachine, 3.9-sapmachine-17, 3.9-sapmachine, 3-sapmachine-17, 3-sapmachine, sapmachine
+Architectures: amd64, arm64v8, ppc64le
+GitCommit: d7319e0caa2961b402073e8054bc63e8dc48d969
+Directory: sapmachine-17
+
+Tags: 3.9.4-sapmachine-21, 3.9-sapmachine-21, 3-sapmachine-21
+Architectures: amd64, arm64v8, ppc64le
+GitCommit: c6ea9b77dab964547324ce49b61ea542fc55f5b5
+Directory: sapmachine-21
diff --git a/library/mediawiki b/library/mediawiki
index 8c3901a9cc..da619df7a9 100644
--- a/library/mediawiki
+++ b/library/mediawiki
@@ -1,36 +1,38 @@
Maintainers: David Barratt (@davidbarratt),
- Kunal Mehta (@legoktm),
+ Kunal Mehta (@legoktm),
addshore (@addshore)
GitRepo: https://github.com/wikimedia/mediawiki-docker.git
-GitCommit: dc240fc8771ce74bc2c420eb1283d718ebf1abe0
+GitFetch: refs/heads/main
+GitCommit: fdf347f62615dad789d0e703fc2f6d628c43d4e1
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le
-Tags: 1.35.2, 1.35, lts, stable, latest
+Tags: 1.40.1, 1.40, stable, latest
+Directory: 1.40/apache
+
+Tags: 1.40.1-fpm, 1.40-fpm, stable-fpm
+Directory: 1.40/fpm
+
+Tags: 1.40.1-fpm-alpine, 1.40-fpm-alpine, stable-fpm-alpine
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le
+Directory: 1.40/fpm-alpine
+
+Tags: 1.39.5, 1.39, lts, legacy
+Directory: 1.39/apache
+
+Tags: 1.39.5-fpm, 1.39-fpm, legacy-fpm, lts-fpm
+Directory: 1.39/fpm
+
+Tags: 1.39.5-fpm-alpine, 1.39-fpm-alpine, legacy-fpm-alpine, lts-fpm-alpine
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le
+Directory: 1.39/fpm-alpine
+
+Tags: 1.35.13, 1.35, legacylts
Directory: 1.35/apache
-Tags: 1.35.2-fpm, 1.35-fpm, lts-fpm, stable-fpm
+Tags: 1.35.13-fpm, 1.35-fpm, legacylts-fpm
Directory: 1.35/fpm
-Tags: 1.35.2-fpm-alpine, 1.35-fpm-alpine, lts-fpm-alpine, stable-fpm-alpine
+Tags: 1.35.13-fpm-alpine, 1.35-fpm-alpine, legacylts-fpm-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le
Directory: 1.35/fpm-alpine
-Tags: 1.34.4, 1.34, legacy
-Directory: 1.34/apache
-
-Tags: 1.34.4-fpm, 1.34-fpm, legacy-fpm
-Directory: 1.34/fpm
-
-Tags: 1.34.4-fpm-alpine, 1.34-fpm-alpine, legacy-fpm-alpline
-Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le
-Directory: 1.34/fpm-alpine
-
-Tags: 1.31.14, 1.31, legacylts
-Directory: 1.31/apache
-
-Tags: 1.31.14-fpm, 1.31-fpm, legacylts-fpm
-Directory: 1.31/fpm
-
-Tags: 1.31.14-fpm-alpine, 1.31-fpm-alpine, legacylts-fpm-alpine
-Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le
-Directory: 1.31/fpm-alpine
diff --git a/library/memcached b/library/memcached
index 5f9c3c4d73..737e12c1eb 100644
--- a/library/memcached
+++ b/library/memcached
@@ -1,15 +1,15 @@
-# this file is generated via https://github.com/docker-library/memcached/blob/d479d257a7249542b31afd799f22d5b39faa2781/generate-stackbrew-library.sh
+# this file is generated via https://github.com/docker-library/memcached/blob/3e552dc7c3907467c258c986cb4763a544ee3041/generate-stackbrew-library.sh
Maintainers: Tianon Gravi (@tianon),
Joseph Ferguson (@yosifkit)
GitRepo: https://github.com/docker-library/memcached.git
-Tags: 1.6.9, 1.6, 1, latest
+Tags: 1.6.21, 1.6, 1, latest, 1.6.21-bookworm, 1.6-bookworm, 1-bookworm, bookworm
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: e67da60d356bf67cf1f822c563dd522c19d48deb
+GitCommit: d3a51632e123ddcbf1b1e06e6cefdaa65f27b29a
Directory: debian
-Tags: 1.6.9-alpine, 1.6-alpine, 1-alpine, alpine
-Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 2f06a1eacb5ca1bbdcc1a1b57334897e04d7a270
+Tags: 1.6.21-alpine, 1.6-alpine, 1-alpine, alpine, 1.6.21-alpine3.18, 1.6-alpine3.18, 1-alpine3.18, alpine3.18
+Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: d3a51632e123ddcbf1b1e06e6cefdaa65f27b29a
Directory: alpine
diff --git a/library/mongo b/library/mongo
index 90109ffa0e..2520e6b442 100644
--- a/library/mongo
+++ b/library/mongo
@@ -1,113 +1,141 @@
-# this file is generated via https://github.com/docker-library/mongo/blob/6377a52b25e9b7790c7082fbdc3f587069255d27/generate-stackbrew-library.sh
+# this file is generated via https://github.com/docker-library/mongo/blob/ddb351a224b4858a4af49ab6b9afa5b5f8b7296c/generate-stackbrew-library.sh
Maintainers: Tianon Gravi (@tianon),
Joseph Ferguson (@yosifkit)
GitRepo: https://github.com/docker-library/mongo.git
-Tags: 4.9.0-rc1-focal, 4.9-rc-focal
-SharedTags: 4.9.0-rc1, 4.9-rc
+Tags: 7.0.2-jammy, 7.0-jammy, 7-jammy, jammy
+SharedTags: 7.0.2, 7.0, 7, latest
Architectures: amd64, arm64v8
-GitCommit: 2e9ea18db4f51698949cbc0416fea3bf89aa1e03
-Directory: 4.9-rc
+GitCommit: b67a3f913340c870bf6c938a534cb2342064c3ef
+Directory: 7.0
-Tags: 4.9.0-rc1-windowsservercore-1809, 4.9-rc-windowsservercore-1809
-SharedTags: 4.9.0-rc1-windowsservercore, 4.9-rc-windowsservercore, 4.9.0-rc1, 4.9-rc
+Tags: 7.0.2-windowsservercore-ltsc2022, 7.0-windowsservercore-ltsc2022, 7-windowsservercore-ltsc2022, windowsservercore-ltsc2022
+SharedTags: 7.0.2-windowsservercore, 7.0-windowsservercore, 7-windowsservercore, windowsservercore, 7.0.2, 7.0, 7, latest
Architectures: windows-amd64
-GitCommit: dc35ba55761b2f03ce2f79ff3b79783b15e23dae
-Directory: 4.9-rc/windows/windowsservercore-1809
+GitCommit: b67a3f913340c870bf6c938a534cb2342064c3ef
+Directory: 7.0/windows/windowsservercore-ltsc2022
+Constraints: windowsservercore-ltsc2022
+
+Tags: 7.0.2-windowsservercore-1809, 7.0-windowsservercore-1809, 7-windowsservercore-1809, windowsservercore-1809
+SharedTags: 7.0.2-windowsservercore, 7.0-windowsservercore, 7-windowsservercore, windowsservercore, 7.0.2, 7.0, 7, latest
+Architectures: windows-amd64
+GitCommit: b67a3f913340c870bf6c938a534cb2342064c3ef
+Directory: 7.0/windows/windowsservercore-1809
Constraints: windowsservercore-1809
-Tags: 4.9.0-rc1-windowsservercore-ltsc2016, 4.9-rc-windowsservercore-ltsc2016
-SharedTags: 4.9.0-rc1-windowsservercore, 4.9-rc-windowsservercore, 4.9.0-rc1, 4.9-rc
+Tags: 7.0.2-nanoserver-ltsc2022, 7.0-nanoserver-ltsc2022, 7-nanoserver-ltsc2022, nanoserver-ltsc2022
+SharedTags: 7.0.2-nanoserver, 7.0-nanoserver, 7-nanoserver, nanoserver
Architectures: windows-amd64
-GitCommit: dc35ba55761b2f03ce2f79ff3b79783b15e23dae
-Directory: 4.9-rc/windows/windowsservercore-ltsc2016
-Constraints: windowsservercore-ltsc2016
+GitCommit: b67a3f913340c870bf6c938a534cb2342064c3ef
+Directory: 7.0/windows/nanoserver-ltsc2022
+Constraints: nanoserver-ltsc2022, windowsservercore-ltsc2022
-Tags: 4.9.0-rc1-nanoserver-1809, 4.9-rc-nanoserver-1809
-SharedTags: 4.9.0-rc1-nanoserver, 4.9-rc-nanoserver
+Tags: 7.0.2-nanoserver-1809, 7.0-nanoserver-1809, 7-nanoserver-1809, nanoserver-1809
+SharedTags: 7.0.2-nanoserver, 7.0-nanoserver, 7-nanoserver, nanoserver
Architectures: windows-amd64
-GitCommit: dc35ba55761b2f03ce2f79ff3b79783b15e23dae
-Directory: 4.9-rc/windows/nanoserver-1809
+GitCommit: b67a3f913340c870bf6c938a534cb2342064c3ef
+Directory: 7.0/windows/nanoserver-1809
Constraints: nanoserver-1809, windowsservercore-1809
-Tags: 4.4.6-bionic, 4.4-bionic, 4-bionic, bionic
-SharedTags: 4.4.6, 4.4, 4, latest
-Architectures: amd64, arm64v8, s390x
-GitCommit: 791d400b9e84a298356b78db01956d98db973b9d
+Tags: 6.0.10-jammy, 6.0-jammy, 6-jammy
+SharedTags: 6.0.10, 6.0, 6
+Architectures: amd64, arm64v8
+GitCommit: 5241a9a9dc6df03c7105a872260642c9224e8f23
+Directory: 6.0
+
+Tags: 6.0.10-windowsservercore-ltsc2022, 6.0-windowsservercore-ltsc2022, 6-windowsservercore-ltsc2022
+SharedTags: 6.0.10-windowsservercore, 6.0-windowsservercore, 6-windowsservercore, 6.0.10, 6.0, 6
+Architectures: windows-amd64
+GitCommit: 5241a9a9dc6df03c7105a872260642c9224e8f23
+Directory: 6.0/windows/windowsservercore-ltsc2022
+Constraints: windowsservercore-ltsc2022
+
+Tags: 6.0.10-windowsservercore-1809, 6.0-windowsservercore-1809, 6-windowsservercore-1809
+SharedTags: 6.0.10-windowsservercore, 6.0-windowsservercore, 6-windowsservercore, 6.0.10, 6.0, 6
+Architectures: windows-amd64
+GitCommit: 5241a9a9dc6df03c7105a872260642c9224e8f23
+Directory: 6.0/windows/windowsservercore-1809
+Constraints: windowsservercore-1809
+
+Tags: 6.0.10-nanoserver-ltsc2022, 6.0-nanoserver-ltsc2022, 6-nanoserver-ltsc2022
+SharedTags: 6.0.10-nanoserver, 6.0-nanoserver, 6-nanoserver
+Architectures: windows-amd64
+GitCommit: 5241a9a9dc6df03c7105a872260642c9224e8f23
+Directory: 6.0/windows/nanoserver-ltsc2022
+Constraints: nanoserver-ltsc2022, windowsservercore-ltsc2022
+
+Tags: 6.0.10-nanoserver-1809, 6.0-nanoserver-1809, 6-nanoserver-1809
+SharedTags: 6.0.10-nanoserver, 6.0-nanoserver, 6-nanoserver
+Architectures: windows-amd64
+GitCommit: 5241a9a9dc6df03c7105a872260642c9224e8f23
+Directory: 6.0/windows/nanoserver-1809
+Constraints: nanoserver-1809, windowsservercore-1809
+
+Tags: 5.0.21-focal, 5.0-focal, 5-focal
+SharedTags: 5.0.21, 5.0, 5
+Architectures: amd64, arm64v8
+GitCommit: ba080e252a2c336a2ef01dc9ad88b5bce6520f0d
+Directory: 5.0
+
+Tags: 5.0.21-windowsservercore-ltsc2022, 5.0-windowsservercore-ltsc2022, 5-windowsservercore-ltsc2022
+SharedTags: 5.0.21-windowsservercore, 5.0-windowsservercore, 5-windowsservercore, 5.0.21, 5.0, 5
+Architectures: windows-amd64
+GitCommit: ba080e252a2c336a2ef01dc9ad88b5bce6520f0d
+Directory: 5.0/windows/windowsservercore-ltsc2022
+Constraints: windowsservercore-ltsc2022
+
+Tags: 5.0.21-windowsservercore-1809, 5.0-windowsservercore-1809, 5-windowsservercore-1809
+SharedTags: 5.0.21-windowsservercore, 5.0-windowsservercore, 5-windowsservercore, 5.0.21, 5.0, 5
+Architectures: windows-amd64
+GitCommit: ba080e252a2c336a2ef01dc9ad88b5bce6520f0d
+Directory: 5.0/windows/windowsservercore-1809
+Constraints: windowsservercore-1809
+
+Tags: 5.0.21-nanoserver-ltsc2022, 5.0-nanoserver-ltsc2022, 5-nanoserver-ltsc2022
+SharedTags: 5.0.21-nanoserver, 5.0-nanoserver, 5-nanoserver
+Architectures: windows-amd64
+GitCommit: ba080e252a2c336a2ef01dc9ad88b5bce6520f0d
+Directory: 5.0/windows/nanoserver-ltsc2022
+Constraints: nanoserver-ltsc2022, windowsservercore-ltsc2022
+
+Tags: 5.0.21-nanoserver-1809, 5.0-nanoserver-1809, 5-nanoserver-1809
+SharedTags: 5.0.21-nanoserver, 5.0-nanoserver, 5-nanoserver
+Architectures: windows-amd64
+GitCommit: ba080e252a2c336a2ef01dc9ad88b5bce6520f0d
+Directory: 5.0/windows/nanoserver-1809
+Constraints: nanoserver-1809, windowsservercore-1809
+
+Tags: 4.4.25-focal, 4.4-focal, 4-focal
+SharedTags: 4.4.25, 4.4, 4
+Architectures: amd64, arm64v8
+GitCommit: 66197d92be6eafc0a36b2570172de0a5f7a905e1
Directory: 4.4
-Tags: 4.4.6-windowsservercore-1809, 4.4-windowsservercore-1809, 4-windowsservercore-1809, windowsservercore-1809
-SharedTags: 4.4.6-windowsservercore, 4.4-windowsservercore, 4-windowsservercore, windowsservercore, 4.4.6, 4.4, 4, latest
+Tags: 4.4.25-windowsservercore-ltsc2022, 4.4-windowsservercore-ltsc2022, 4-windowsservercore-ltsc2022
+SharedTags: 4.4.25-windowsservercore, 4.4-windowsservercore, 4-windowsservercore, 4.4.25, 4.4, 4
Architectures: windows-amd64
-GitCommit: dc35ba55761b2f03ce2f79ff3b79783b15e23dae
+GitCommit: 66197d92be6eafc0a36b2570172de0a5f7a905e1
+Directory: 4.4/windows/windowsservercore-ltsc2022
+Constraints: windowsservercore-ltsc2022
+
+Tags: 4.4.25-windowsservercore-1809, 4.4-windowsservercore-1809, 4-windowsservercore-1809
+SharedTags: 4.4.25-windowsservercore, 4.4-windowsservercore, 4-windowsservercore, 4.4.25, 4.4, 4
+Architectures: windows-amd64
+GitCommit: 66197d92be6eafc0a36b2570172de0a5f7a905e1
Directory: 4.4/windows/windowsservercore-1809
Constraints: windowsservercore-1809
-Tags: 4.4.6-windowsservercore-ltsc2016, 4.4-windowsservercore-ltsc2016, 4-windowsservercore-ltsc2016, windowsservercore-ltsc2016
-SharedTags: 4.4.6-windowsservercore, 4.4-windowsservercore, 4-windowsservercore, windowsservercore, 4.4.6, 4.4, 4, latest
+Tags: 4.4.25-nanoserver-ltsc2022, 4.4-nanoserver-ltsc2022, 4-nanoserver-ltsc2022
+SharedTags: 4.4.25-nanoserver, 4.4-nanoserver, 4-nanoserver
Architectures: windows-amd64
-GitCommit: dc35ba55761b2f03ce2f79ff3b79783b15e23dae
-Directory: 4.4/windows/windowsservercore-ltsc2016
-Constraints: windowsservercore-ltsc2016
+GitCommit: 66197d92be6eafc0a36b2570172de0a5f7a905e1
+Directory: 4.4/windows/nanoserver-ltsc2022
+Constraints: nanoserver-ltsc2022, windowsservercore-ltsc2022
-Tags: 4.4.6-nanoserver-1809, 4.4-nanoserver-1809, 4-nanoserver-1809, nanoserver-1809
-SharedTags: 4.4.6-nanoserver, 4.4-nanoserver, 4-nanoserver, nanoserver
+Tags: 4.4.25-nanoserver-1809, 4.4-nanoserver-1809, 4-nanoserver-1809
+SharedTags: 4.4.25-nanoserver, 4.4-nanoserver, 4-nanoserver
Architectures: windows-amd64
-GitCommit: dc35ba55761b2f03ce2f79ff3b79783b15e23dae
+GitCommit: 66197d92be6eafc0a36b2570172de0a5f7a905e1
Directory: 4.4/windows/nanoserver-1809
Constraints: nanoserver-1809, windowsservercore-1809
-
-Tags: 4.2.14-bionic, 4.2-bionic
-SharedTags: 4.2.14, 4.2
-Architectures: amd64, arm64v8
-GitCommit: 791d400b9e84a298356b78db01956d98db973b9d
-Directory: 4.2
-
-Tags: 4.2.14-windowsservercore-1809, 4.2-windowsservercore-1809
-SharedTags: 4.2.14-windowsservercore, 4.2-windowsservercore, 4.2.14, 4.2
-Architectures: windows-amd64
-GitCommit: dc35ba55761b2f03ce2f79ff3b79783b15e23dae
-Directory: 4.2/windows/windowsservercore-1809
-Constraints: windowsservercore-1809
-
-Tags: 4.2.14-windowsservercore-ltsc2016, 4.2-windowsservercore-ltsc2016
-SharedTags: 4.2.14-windowsservercore, 4.2-windowsservercore, 4.2.14, 4.2
-Architectures: windows-amd64
-GitCommit: dc35ba55761b2f03ce2f79ff3b79783b15e23dae
-Directory: 4.2/windows/windowsservercore-ltsc2016
-Constraints: windowsservercore-ltsc2016
-
-Tags: 4.2.14-nanoserver-1809, 4.2-nanoserver-1809
-SharedTags: 4.2.14-nanoserver, 4.2-nanoserver
-Architectures: windows-amd64
-GitCommit: dc35ba55761b2f03ce2f79ff3b79783b15e23dae
-Directory: 4.2/windows/nanoserver-1809
-Constraints: nanoserver-1809, windowsservercore-1809
-
-Tags: 4.0.24-xenial, 4.0-xenial
-SharedTags: 4.0.24, 4.0
-Architectures: amd64, arm64v8
-GitCommit: 791d400b9e84a298356b78db01956d98db973b9d
-Directory: 4.0
-
-Tags: 4.0.24-windowsservercore-1809, 4.0-windowsservercore-1809
-SharedTags: 4.0.24-windowsservercore, 4.0-windowsservercore, 4.0.24, 4.0
-Architectures: windows-amd64
-GitCommit: dc35ba55761b2f03ce2f79ff3b79783b15e23dae
-Directory: 4.0/windows/windowsservercore-1809
-Constraints: windowsservercore-1809
-
-Tags: 4.0.24-windowsservercore-ltsc2016, 4.0-windowsservercore-ltsc2016
-SharedTags: 4.0.24-windowsservercore, 4.0-windowsservercore, 4.0.24, 4.0
-Architectures: windows-amd64
-GitCommit: dc35ba55761b2f03ce2f79ff3b79783b15e23dae
-Directory: 4.0/windows/windowsservercore-ltsc2016
-Constraints: windowsservercore-ltsc2016
-
-Tags: 4.0.24-nanoserver-1809, 4.0-nanoserver-1809
-SharedTags: 4.0.24-nanoserver, 4.0-nanoserver
-Architectures: windows-amd64
-GitCommit: dc35ba55761b2f03ce2f79ff3b79783b15e23dae
-Directory: 4.0/windows/nanoserver-1809
-Constraints: nanoserver-1809, windowsservercore-1809
diff --git a/library/mongo-express b/library/mongo-express
index a6d6443496..24bf27f220 100644
--- a/library/mongo-express
+++ b/library/mongo-express
@@ -1,8 +1,26 @@
-# this file is generated via https://github.com/mongo-express/mongo-express-docker/blob/4b43fe8a1206434cb32a006cd155dd71462f092f/generate-stackbrew-library.sh
+# this file is generated via https://github.com/mongo-express/mongo-express-docker/blob/0b9b935b188caa945834a27f7475a059c4e60b13/generate-stackbrew-library.sh
-Maintainers: Nick Cox (@knickers)
+Maintainers: Nick Cox (@knickers),
+ John Steel (@BlackthornYugen)
GitRepo: https://github.com/mongo-express/mongo-express-docker.git
-GitCommit: 4b43fe8a1206434cb32a006cd155dd71462f092f
+GitCommit: 0b9b935b188caa945834a27f7475a059c4e60b13
-Tags: 0.54.0, 0.54, latest
+Tags: 1.0.0-20-alpine3.18, 1.0-20-alpine3.18, 1-20-alpine3.18
Architectures: amd64, arm64v8
+GitCommit: 5fb537b2fd181e458f58137fdb55d061a8c23da5
+Directory: 1.0/20-alpine3.18
+
+Tags: 1.0.0-20, 1.0-20, 1-20, 1.0.0-20-alpine3.17, 1.0-20-alpine3.17, 1-20-alpine3.17
+Architectures: amd64, arm64v8
+GitCommit: 5fb537b2fd181e458f58137fdb55d061a8c23da5
+Directory: 1.0/20-alpine3.17
+
+Tags: 1.0.0-18-alpine3.18, 1.0-18-alpine3.18, 1-18-alpine3.18
+Architectures: amd64, arm64v8
+GitCommit: 5fb537b2fd181e458f58137fdb55d061a8c23da5
+Directory: 1.0/18-alpine3.18
+
+Tags: 1.0.0, 1.0, 1, 1.0.0-18, 1.0-18, 1-18, 1.0.0-18-alpine3.17, 1.0-18-alpine3.17, 1-18-alpine3.17, latest
+Architectures: amd64, arm64v8
+GitCommit: 5fb537b2fd181e458f58137fdb55d061a8c23da5
+Directory: 1.0/18-alpine3.17
diff --git a/library/monica b/library/monica
index c17088901c..cae5ed74df 100644
--- a/library/monica
+++ b/library/monica
@@ -1,18 +1,19 @@
-# This file is generated via https://github.com/monicahq/docker/blob/37898d3e64f3bf26ae190673e65cfbd0ae4d9546/generate-stackbrew-library.sh
+# This file is generated via https://github.com/monicahq/docker/blob/1969cbd6d7dd410df84a18f539836ed4e0788324/generate-stackbrew-library.sh
Maintainers: Alexis Saettler (@asbiin)
GitRepo: https://github.com/monicahq/docker.git
+GitFetch: refs/heads/main
-Tags: 3.0.1-apache, 3.0-apache, 3-apache, apache, 3.0.1, 3.0, 3, latest
+Tags: 4.0.0-apache, 4.0-apache, 4-apache, apache, 4.0.0, 4.0, 4, latest
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
Directory: apache
-GitCommit: 8e338da17d09d8b9a0b7b8c4aa734ecd400bca07
+GitCommit: 1969cbd6d7dd410df84a18f539836ed4e0788324
-Tags: 3.0.1-fpm, 3.0-fpm, 3-fpm, fpm
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-Directory: fpm
-GitCommit: 8e338da17d09d8b9a0b7b8c4aa734ecd400bca07
-
-Tags: 3.0.1-fpm-alpine, 3.0-fpm-alpine, 3-fpm-alpine, fpm-alpine
+Tags: 4.0.0-fpm-alpine, 4.0-fpm-alpine, 4-fpm-alpine, fpm-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
Directory: fpm-alpine
-GitCommit: 8e338da17d09d8b9a0b7b8c4aa734ecd400bca07
+GitCommit: 1969cbd6d7dd410df84a18f539836ed4e0788324
+
+Tags: 4.0.0-fpm, 4.0-fpm, 4-fpm, fpm
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+Directory: fpm
+GitCommit: 1969cbd6d7dd410df84a18f539836ed4e0788324
diff --git a/library/mono b/library/mono
index b4ba544af5..3c062b1cbf 100644
--- a/library/mono
+++ b/library/mono
@@ -1,25 +1,29 @@
-# this file is generated via https://github.com/mono/docker/blob/master/generate-stackbrew-library.sh
+# this file is generated via https://github.com/mono/docker/blob/main/generate-stackbrew-library.sh
Maintainers: Jo Shields (@directhex),
Alexander Köplinger (@akoeplinger)
GitRepo: https://github.com/mono/docker.git
-Tags: 6.12.0.107, latest, 6.12.0, 6.12, 6
+Tags: 6.12.0.182, latest, 6.12.0, 6.12, 6
Architectures: amd64, i386, arm32v7, arm32v5, arm64v8, ppc64le
-GitCommit: 490ebd19e006c00165baca7fbef00c9e98a96d34
-Directory: 6.12.0.107
+GitFetch: refs/heads/main
+GitCommit: 9293c0cddf31a3dc829fccc6f8e1eb507a91cd34
+Directory: 6.12.0.182
-Tags: 6.12.0.107-slim, slim, 6.12.0-slim, 6.12-slim, 6-slim
+Tags: 6.12.0.182-slim, slim, 6.12.0-slim, 6.12-slim, 6-slim
Architectures: amd64, i386, arm32v7, arm32v5, arm64v8, ppc64le
-GitCommit: 490ebd19e006c00165baca7fbef00c9e98a96d34
-Directory: 6.12.0.107/slim
+GitFetch: refs/heads/main
+GitCommit: 9293c0cddf31a3dc829fccc6f8e1eb507a91cd34
+Directory: 6.12.0.182/slim
Tags: 6.10.0.104, 6.10.0, 6.10
Architectures: amd64, i386, arm32v7, arm32v5, arm64v8, ppc64le
-GitCommit: a449b2a57e1cfadd098c2bcad13f89c4eab83e54
+GitFetch: refs/heads/main
+GitCommit: 0403aaf506b8f6859332a5035f660a7a228d3a97
Directory: 6.10.0.104
Tags: 6.10.0.104-slim, 6.10.0-slim, 6.10-slim
Architectures: amd64, i386, arm32v7, arm32v5, arm64v8, ppc64le
-GitCommit: a449b2a57e1cfadd098c2bcad13f89c4eab83e54
+GitFetch: refs/heads/main
+GitCommit: 0403aaf506b8f6859332a5035f660a7a228d3a97
Directory: 6.10.0.104/slim
diff --git a/library/mysql b/library/mysql
index 5fc3531c3a..cfe486ab85 100644
--- a/library/mysql
+++ b/library/mysql
@@ -1,20 +1,29 @@
-# this file is generated via https://github.com/docker-library/mysql/blob/ee33a2144a0effe9459abf02f20a6202ae645e94/generate-stackbrew-library.sh
+# this file is generated via https://github.com/docker-library/mysql/blob/eb1850601849ef7ef77a23f017a20debc95d597c/generate-stackbrew-library.sh
Maintainers: Tianon Gravi (@tianon),
Joseph Ferguson (@yosifkit)
GitRepo: https://github.com/docker-library/mysql.git
-Tags: 8.0.25, 8.0, 8, latest
-GitCommit: a09a716a88ce34a17e16df3f8b091066d90e6f34
+Tags: 8.1.0, 8.1, 8, innovation, latest, 8.1.0-oracle, 8.1-oracle, 8-oracle, innovation-oracle, oracle
+Architectures: amd64, arm64v8
+GitCommit: eb1850601849ef7ef77a23f017a20debc95d597c
+Directory: innovation
+File: Dockerfile.oracle
+
+Tags: 8.0.34, 8.0, 8.0.34-oracle, 8.0-oracle
+Architectures: amd64, arm64v8
+GitCommit: f4030aebf6a63d640f7085fb3e4601b4e70313c8
+Directory: 8.0
+File: Dockerfile.oracle
+
+Tags: 8.0.34-debian, 8.0-debian
+Architectures: amd64
+GitCommit: f4030aebf6a63d640f7085fb3e4601b4e70313c8
Directory: 8.0
File: Dockerfile.debian
-Tags: 5.7.34, 5.7, 5
-GitCommit: b11f06b0d202e7b0f97b000e158fc4fc869d2194
+Tags: 5.7.43, 5.7, 5, 5.7.43-oracle, 5.7-oracle, 5-oracle
+Architectures: amd64
+GitCommit: c13cda9c2c9d836af9b3331e8681f8cc8e0a7803
Directory: 5.7
-File: Dockerfile.debian
-
-Tags: 5.6.51, 5.6
-GitCommit: 43ee7daebca3af6cb13ae3032b2a4e6f642c7233
-Directory: 5.6
-File: Dockerfile.debian
+File: Dockerfile.oracle
diff --git a/library/nats b/library/nats
index 273e14b48c..ba9652f63e 100644
--- a/library/nats
+++ b/library/nats
@@ -1,33 +1,50 @@
Maintainers: Derek Collison (@derekcollison),
- Ivan Kozlovic (@kozlovic),
- Waldemar Salinas (@wallyqs),
- Jaime Piña (@variadico)
+ Waldemar Quevedo Salinas (@wallyqs),
+ Byron Ruth (@bruth),
+ Neil Twigg (@neilalexander),
+ Phil Pennock (@philpennock)
GitRepo: https://github.com/nats-io/nats-docker.git
-GitCommit: 7acef1794d5a3e92344e681cbcae7906ad8194e4
+GitCommit: a04532b5dab8815f4f5684b84bf365650095f4b5
+GitFetch: refs/heads/main
-Tags: 2.2.6-alpine3.13, 2.2-alpine3.13, 2-alpine3.13, alpine3.13, 2.2.6-alpine, 2.2-alpine, 2-alpine, alpine
+Tags: 2.10.1-alpine3.18, 2.10-alpine3.18, 2-alpine3.18, alpine3.18, 2.10.1-alpine, 2.10-alpine, 2-alpine, alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8
-Directory: 2.2.6/alpine3.13
+Directory: 2.10.x/alpine3.18
-Tags: 2.2.6-scratch, 2.2-scratch, 2-scratch, scratch, 2.2.6-linux, 2.2-linux, 2-linux, linux
-SharedTags: 2.2.6, 2.2, 2, latest
+Tags: 2.10.1-scratch, 2.10-scratch, 2-scratch, scratch, 2.10.1-linux, 2.10-linux, 2-linux, linux
+SharedTags: 2.10.1, 2.10, 2, latest
Architectures: amd64, arm32v6, arm32v7, arm64v8
-Directory: 2.2.6/scratch
+Directory: 2.10.x/scratch
-Tags: 2.2.6-windowsservercore-1809, 2.2-windowsservercore-1809, 2-windowsservercore-1809, windowsservercore-1809
-SharedTags: 2.2.6-windowsservercore, 2.2-windowsservercore, 2-windowsservercore, windowsservercore
+Tags: 2.10.1-windowsservercore-1809, 2.10-windowsservercore-1809, 2-windowsservercore-1809, windowsservercore-1809
+SharedTags: 2.10.1-windowsservercore, 2.10-windowsservercore, 2-windowsservercore, windowsservercore
Architectures: windows-amd64
-Directory: 2.2.6/windowsservercore-1809
+Directory: 2.10.x/windowsservercore-1809
Constraints: windowsservercore-1809
-Tags: 2.2.6-nanoserver-1809, 2.2-nanoserver-1809, 2-nanoserver-1809, nanoserver-1809
-SharedTags: 2.2.6-nanoserver, 2.2-nanoserver, 2-nanoserver, nanoserver, 2.2.6, 2.2, 2, latest
+Tags: 2.10.1-nanoserver-1809, 2.10-nanoserver-1809, 2-nanoserver-1809, nanoserver-1809
+SharedTags: 2.10.1-nanoserver, 2.10-nanoserver, 2-nanoserver, nanoserver, 2.10.1, 2.10, 2, latest
Architectures: windows-amd64
-Directory: 2.2.6/nanoserver-1809
+Directory: 2.10.x/nanoserver-1809
Constraints: nanoserver-1809, windowsservercore-1809
-Tags: 2.2.6-windowsservercore-ltsc2016, 2.2-windowsservercore-ltsc2016, 2-windowsservercore-ltsc2016, windowsservercore-ltsc2016
-SharedTags: 2.2.6-windowsservercore, 2.2-windowsservercore, 2-windowsservercore, windowsservercore
+Tags: 2.9.22-alpine3.18, 2.9-alpine3.18, 2.9.22-alpine, 2.9-alpine
+Architectures: amd64, arm32v6, arm32v7, arm64v8
+Directory: 2.9.x/alpine3.18
+
+Tags: 2.9.22-scratch, 2.9-scratch, 2.9.22-linux, 2.9-linux
+SharedTags: 2.9.22, 2.9, 2, latest
+Architectures: amd64, arm32v6, arm32v7, arm64v8
+Directory: 2.9.x/scratch
+
+Tags: 2.9.22-windowsservercore-1809, 2.9-windowsservercore-1809
+SharedTags: 2.9.22-windowsservercore, 2.9-windowsservercore
Architectures: windows-amd64
-Directory: 2.2.6/windowsservercore-ltsc2016
-Constraints: windowsservercore-ltsc2016
+Directory: 2.9.x/windowsservercore-1809
+Constraints: windowsservercore-1809
+
+Tags: 2.9.22-nanoserver-1809, 2.9-nanoserver-1809
+SharedTags: 2.9.22-nanoserver, 2.9-nanoserver
+Architectures: windows-amd64
+Directory: 2.9.x/nanoserver-1809
+Constraints: nanoserver-1809, windowsservercore-1809
diff --git a/library/nats-streaming b/library/nats-streaming
index 0ffa74c546..467f549764 100644
--- a/library/nats-streaming
+++ b/library/nats-streaming
@@ -1,30 +1,26 @@
-Maintainers: Ivan Kozlovic (@kozlovic)
+Maintainers: Ivan Kozlovic (@kozlovic),
+ Phil Pennock (@philpennock)
GitRepo: https://github.com/nats-io/nats-streaming-docker.git
-GitCommit: 878420260fc33929e4d3b272a8c813d64dbbbaa2
+GitFetch: refs/heads/main
+GitCommit: d8dd9e2f5f7943f6a4d08de304f2bce513cc6735
-Tags: 0.21.2-alpine3.13, 0.21-alpine3.13, alpine3.13, 0.21.2-alpine, 0.21-alpine, alpine
+Tags: 0.25.5-alpine3.18, 0.25-alpine3.18, alpine3.18, 0.25.5-alpine, 0.25-alpine, alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8
-Directory: 0.21.2/alpine3.13
+Directory: 0.25.5/alpine3.18
-Tags: 0.21.2-scratch, 0.21-scratch, scratch, 0.21.2-linux, 0.21-linux, linux
-SharedTags: 0.21.2, 0.21, latest
+Tags: 0.25.5-scratch, 0.25-scratch, scratch, 0.25.5-linux, 0.25-linux, linux
+SharedTags: 0.25.5, 0.25, latest
Architectures: amd64, arm32v6, arm32v7, arm64v8
-Directory: 0.21.2/scratch
+Directory: 0.25.5/scratch
-Tags: 0.21.2-windowsservercore-1809, 0.21-windowsservercore-1809, windowsservercore-1809
-SharedTags: 0.21.2-windowsservercore, 0.21-windowsservercore, windowsservercore
+Tags: 0.25.5-windowsservercore-1809, 0.25-windowsservercore-1809, windowsservercore-1809
+SharedTags: 0.25.5-windowsservercore, 0.25-windowsservercore, windowsservercore
Architectures: windows-amd64
-Directory: 0.21.2/windowsservercore-1809
+Directory: 0.25.5/windowsservercore-1809
Constraints: windowsservercore-1809
-Tags: 0.21.2-nanoserver-1809, 0.21-nanoserver-1809, nanoserver-1809
-SharedTags: 0.21.2-nanoserver, 0.21-nanoserver, nanoserver, 0.21.2, 0.21, latest
+Tags: 0.25.5-nanoserver-1809, 0.25-nanoserver-1809, nanoserver-1809
+SharedTags: 0.25.5-nanoserver, 0.25-nanoserver, nanoserver, 0.25.5, 0.25, latest
Architectures: windows-amd64
-Directory: 0.21.2/nanoserver-1809
+Directory: 0.25.5/nanoserver-1809
Constraints: nanoserver-1809, windowsservercore-1809
-
-Tags: 0.21.2-windowsservercore-ltsc2016, 0.21-windowsservercore-ltsc2016, windowsservercore-ltsc2016
-SharedTags: 0.21.2-windowsservercore, 0.21-windowsservercore, windowsservercore
-Architectures: windows-amd64
-Directory: 0.21.2/windowsservercore-ltsc2016
-Constraints: windowsservercore-ltsc2016
diff --git a/library/neo4j b/library/neo4j
index 3b1d197204..5119487ac5 100644
--- a/library/neo4j
+++ b/library/neo4j
@@ -1,400 +1,36 @@
-# Old point releases are included in this library file so that users
-# are not forced to upgrade to the latest point releases in order to
-# get security fixes to the base image. See
-# https://github.com/docker-library/official-images/issues/1864 for a
-# discussion of this point.
-
-Maintainers: Chris Gioran (@digitalstain),
- Jenny Owen (@jennyowen),
- Bledi Feshti (@bfeshti)
-
-
-Tags: 4.2.7, 4.2.7-community, 4.2, 4.2-community, community, latest
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: 63765f3df4a15acf07000c7382677db3c41da22f
-Directory: 4.2.7/community
-
-Tags: 4.2.7-enterprise, 4.2-enterprise, enterprise
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: 63765f3df4a15acf07000c7382677db3c41da22f
-Directory: 4.2.6/enterprise
-
-Tags: 4.2.6, 4.2.6-community
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: 1ad1f3f99e1572b3d1668475b3578626b89592fa
-Directory: 4.2.6/community
-
-Tags: 4.2.6-enterprise
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: 1ad1f3f99e1572b3d1668475b3578626b89592fa
-Directory: 4.2.6/enterprise
-
-Tags: 4.2.5, 4.2.5-community
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: d22293f2e465b63ee5a63f0a2b8f817717a64a8b
-Directory: 4.2.5/community
-
-Tags: 4.2.5-enterprise
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: d22293f2e465b63ee5a63f0a2b8f817717a64a8b
-Directory: 4.2.5/enterprise
-
-Tags: 4.2.4, 4.2.4-community
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: 21f86f780f950805e29e7789249d9f2a754a1ef1
-Directory: 4.2.4/community
-
-Tags: 4.2.4-enterprise
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: 21f86f780f950805e29e7789249d9f2a754a1ef1
-Directory: 4.2.4/enterprise
-
-Tags: 4.2.3, 4.2.3-community
+Maintainers: Jenny Owen (@jennyowen),
+ Gustav Lindroth (@glindroth),
+ Eric Sporre (@ericsporre)
GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: 876140f24eb644b811a2bffc7bc09d9a39f341e7
-Directory: 4.2.3/community
-Tags: 4.2.3-enterprise
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: 876140f24eb644b811a2bffc7bc09d9a39f341e7
-Directory: 4.2.3/enterprise
-
-Tags: 4.2.2, 4.2.2-community
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: 4421ccd67610e65e501e201c226a8184edc24587
-Directory: 4.2.2/community
-
-Tags: 4.2.2-enterprise
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: 4421ccd67610e65e501e201c226a8184edc24587
-Directory: 4.2.2/enterprise
+Tags: 5.12.0-community-bullseye, 5.12-community-bullseye, 5-community-bullseye, 5.12.0-community, 5.12-community, 5-community, 5.12.0-bullseye, 5.12-bullseye, 5-bullseye, 5.12.0, 5.12, 5, community-bullseye, community, bullseye, latest
+Architectures: amd64, arm64v8
+GitCommit: e005223dbe3f3bdba463f3942283324f7441d5b9
+Directory: 5.12.0/bullseye/community
-Tags: 4.2.1, 4.2.1-community
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: 73963d86ca01456c695b7258d2fa1873cc4041bc
-Directory: 4.2.1/community
+Tags: 5.12.0-enterprise-bullseye, 5.12-enterprise-bullseye, 5-enterprise-bullseye, 5.12.0-enterprise, 5.12-enterprise, 5-enterprise, enterprise-bullseye, enterprise
+Architectures: amd64, arm64v8
+GitCommit: e005223dbe3f3bdba463f3942283324f7441d5b9
+Directory: 5.12.0/bullseye/enterprise
-Tags: 4.2.1-enterprise
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: 73963d86ca01456c695b7258d2fa1873cc4041bc
-Directory: 4.2.1/enterprise
+Tags: 5.12.0-community-ubi8, 5.12-community-ubi8, 5-community-ubi8, 5.12.0-ubi8, 5.12-ubi8, 5-ubi8, community-ubi8, ubi8
+Architectures: amd64, arm64v8
+GitCommit: e005223dbe3f3bdba463f3942283324f7441d5b9
+Directory: 5.12.0/ubi8/community
-Tags: 4.2.0, 4.2.0-community
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: 0fee8c3d7314e7729f45781f03e3fe165fa371aa
-Directory: 4.2.0/community
+Tags: 5.12.0-enterprise-ubi8, 5.12-enterprise-ubi8, 5-enterprise-ubi8, enterprise-ubi8
+Architectures: amd64, arm64v8
+GitCommit: e005223dbe3f3bdba463f3942283324f7441d5b9
+Directory: 5.12.0/ubi8/enterprise
-Tags: 4.2.0-enterprise
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: 0fee8c3d7314e7729f45781f03e3fe165fa371aa
-Directory: 4.2.0/enterprise
-Tags: 4.1.9, 4.1.9-community, 4.1, 4.1-community
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: 7241a1884003b314d51bbb5dee858e03d91604cd
-Directory: 4.1.9/community
-Tags: 4.1.9-enterprise, 4.1-enterprise
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: 7241a1884003b314d51bbb5dee858e03d91604cd
-Directory: 4.1.9/enterprise
-
-Tags: 4.1.8, 4.1.8-community
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: 532e7003a2922d25baae22305345f27efdcb1bec
-Directory: 4.1.8/community
-
-Tags: 4.1.8-enterprise
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: 532e7003a2922d25baae22305345f27efdcb1bec
-Directory: 4.1.8/enterprise
-
-Tags: 4.1.7, 4.1.7-community
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: 04e62b180b0bc708341dbe097262271f0f422139
-Directory: 4.1.7/community
-
-Tags: 4.1.7-enterprise
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: 04e62b180b0bc708341dbe097262271f0f422139
-Directory: 4.1.7/enterprise
+Tags: 4.4.26, 4.4.26-community, 4.4, 4.4-community
+Architectures: amd64, arm64v8
+GitCommit: 06d08eefe166a90662ea228cfbddce3438bd2732
+Directory: 4.4.26/bullseye/community
-Tags: 4.1.6, 4.1.6-community
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: 17c3e064335f47c1d4b1385dc24863843641f205
-Directory: 4.1.6/community
-
-Tags: 4.1.6-enterprise
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: 17c3e064335f47c1d4b1385dc24863843641f205
-Directory: 4.1.6/enterprise
-
-Tags: 4.1.5, 4.1.5-community
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: a3e1de7d6215c50694fca04e92fc4917c1efa0eb
-Directory: 4.1.5/community
-
-Tags: 4.1.5-enterprise
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: a3e1de7d6215c50694fca04e92fc4917c1efa0eb
-Directory: 4.1.5/enterprise
-
-Tags: 4.1.4, 4.1.4-community
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: 8709faa63d9bda05c888ffc040a6035a8daf8394
-Directory: 4.1.4/community
-
-Tags: 4.1.4-enterprise
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: 8709faa63d9bda05c888ffc040a6035a8daf8394
-Directory: 4.1.4/enterprise
-
-Tags: 4.1.3, 4.1.3-community
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: d812e34c70a2487fae5ee5cbb7c447b20b346afa
-Directory: 4.1.3/community
-
-Tags: 4.1.3-enterprise
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: d812e34c70a2487fae5ee5cbb7c447b20b346afa
-Directory: 4.1.3/enterprise
-
-Tags: 4.1.2, 4.1.2-community
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: 5429da43884f5a41db2fd7aaaa3b1cd69a708f7f
-Directory: 4.1.2/community
-
-Tags: 4.1.2-enterprise
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: 5429da43884f5a41db2fd7aaaa3b1cd69a708f7f
-Directory: 4.1.2/enterprise
-
-Tags: 4.1.1, 4.1.1-community
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: d42c3ac9cde66e2a1dcb3f667fe73878dbf2218c
-Directory: 4.1.1/community
-
-Tags: 4.1.1-enterprise
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: d42c3ac9cde66e2a1dcb3f667fe73878dbf2218c
-Directory: 4.1.1/enterprise
-
-Tags: 4.1.0, 4.1.0-community
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: c22866bb7f4baac356bf65494a003e490082b6c0
-Directory: 4.1.0/community
-
-Tags: 4.1.0-enterprise
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: c22866bb7f4baac356bf65494a003e490082b6c0
-Directory: 4.1.0/enterprise
-
-Tags: 4.0.11, 4.0.11-community, 4.0, 4.0-community
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: 014785e7fb71b0cda5c52b21e9a609878ebf567a
-Directory: 4.0.11/community
-
-Tags: 4.0.11-enterprise, 4.0-enterprise
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: 014785e7fb71b0cda5c52b21e9a609878ebf567a
-Directory: 4.0.11/enterprise
-
-Tags: 4.0.10, 4.0.10-community
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: 15eccd11b9755a650f0460e9b652239d54fa7fa9
-Directory: 4.0.10/community
-
-Tags: 4.0.10-enterprise
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: 15eccd11b9755a650f0460e9b652239d54fa7fa9
-Directory: 4.0.10/enterprise
-
-Tags: 4.0.9, 4.0.9-community
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: 04a30cb462de38246f8411b7b03c17d06b948009
-Directory: 4.0.9/community
-
-Tags: 4.0.9-enterprise
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: 04a30cb462de38246f8411b7b03c17d06b948009
-Directory: 4.0.9/enterprise
-
-Tags: 4.0.8, 4.0.8-community
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: 81342d372e1fa225d49b7643d3210b9bcdb962b9
-Directory: 4.0.8/community
-
-Tags: 4.0.8-enterprise
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: 81342d372e1fa225d49b7643d3210b9bcdb962b9
-Directory: 4.0.8/enterprise
-
-Tags: 4.0.7, 4.0.7-community
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: d42c3ac9cde66e2a1dcb3f667fe73878dbf2218c
-Directory: 4.0.7/community
-
-Tags: 4.0.7-enterprise
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: d42c3ac9cde66e2a1dcb3f667fe73878dbf2218c
-Directory: 4.0.7/enterprise
-
-Tags: 4.0.6, 4.0.6-community
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: 07dcb3dd43df67337f74af5a71decc45d50b712d
-Directory: 4.0.6/community
-
-Tags: 4.0.6-enterprise
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: 07dcb3dd43df67337f74af5a71decc45d50b712d
-Directory: 4.0.6/enterprise
-
-Tags: 4.0.5, 4.0.5-community
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: b47f15c39f28e28e120adff7a00773e0a61c0efe
-Directory: 4.0.5/community
-
-Tags: 4.0.5-enterprise
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: b47f15c39f28e28e120adff7a00773e0a61c0efe
-Directory: 4.0.5/enterprise
-
-Tags: 4.0.4, 4.0.4-community
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: d5e5e4b1999611ecfa8ec59166acf1ddb703b21c
-Directory: 4.0.4/community
-
-Tags: 4.0.4-enterprise
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: d5e5e4b1999611ecfa8ec59166acf1ddb703b21c
-Directory: 4.0.4/enterprise
-
-Tags: 4.0.3, 4.0.3-community
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: 51ed84f02e569a0d86c6e634fab3ae6540806a7e
-Directory: 4.0.3/community
-
-Tags: 4.0.3-enterprise
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: 51ed84f02e569a0d86c6e634fab3ae6540806a7e
-Directory: 4.0.3/enterprise
-
-Tags: 4.0.2, 4.0.2-community
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: 56d28624bc264497ed7fae8253a52a92611c6fee
-Directory: 4.0.2/community
-
-Tags: 4.0.2-enterprise
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: 56d28624bc264497ed7fae8253a52a92611c6fee
-Directory: 4.0.2/enterprise
-
-Tags: 4.0.1, 4.0.1-community
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: 13c288e9c36ee22e682b459fb218c9239e2c1083
-Directory: 4.0.1/community
-
-Tags: 4.0.1-enterprise
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: 13c288e9c36ee22e682b459fb218c9239e2c1083
-Directory: 4.0.1/enterprise
-
-Tags: 4.0.0, 4.0.0-community
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: 685fb314ef8e451217b6806028b9ac4dbf44d3fc
-Directory: 4.0.0/community
-
-Tags: 4.0.0-enterprise
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: 685fb314ef8e451217b6806028b9ac4dbf44d3fc
-Directory: 4.0.0/enterprise
-
-Tags: 3.5.28, 3.5.28-community, 3.5, 3.5-community
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: 83141af227fa047421b3ea81dcb8c1f4a7c6180f
-Directory: 3.5.28/community
-
-Tags: 3.5.28-enterprise, 3.5-enterprise
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: 83141af227fa047421b3ea81dcb8c1f4a7c6180f
-Directory: 3.5.28/enterprise
-
-Tags: 3.5.27, 3.5.27-community
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: ce4bfeffe18865c1b94f0622015087d1d6849fbb
-Directory: 3.5.27/community
-
-Tags: 3.5.27-enterprise
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: ce4bfeffe18865c1b94f0622015087d1d6849fbb
-Directory: 3.5.27/enterprise
-
-Tags: 3.5.26, 3.5.26-community
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: b76f780318bea75347b17ef9a941bef5490d6a5b
-Directory: 3.5.26/community
-
-Tags: 3.5.26-enterprise
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: b76f780318bea75347b17ef9a941bef5490d6a5b
-Directory: 3.5.26/enterprise
-
-Tags: 3.5.25, 3.5.25-community
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: 7f640278e48b2ff205564e131cb142278c5e6f13
-Directory: 3.5.25/community
-
-Tags: 3.5.25-enterprise
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: 7f640278e48b2ff205564e131cb142278c5e6f13
-Directory: 3.5.25/enterprise
-
-Tags: 3.5.24, 3.5.24-community
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: e0b946fee10795b1e565406b24a7ace32e761ab5
-Directory: 3.5.24/community
-
-Tags: 3.5.24-enterprise
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: e0b946fee10795b1e565406b24a7ace32e761ab5
-Directory: 3.5.24/enterprise
-
-Tags: 3.5.23, 3.5.23-community
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: 0c06943b4f351597820c87adeb1571aaaabd2996
-Directory: 3.5.23/community
-
-Tags: 3.5.23-enterprise
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: 0c06943b4f351597820c87adeb1571aaaabd2996
-Directory: 3.5.23/enterprise
-
-Tags: 3.5.22, 3.5.22-community
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: cebc260e5eac4f660ed85df6a81429a8327c3d26
-Directory: 3.5.22/community
-
-Tags: 3.5.22-enterprise
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: cebc260e5eac4f660ed85df6a81429a8327c3d26
-Directory: 3.5.22/enterprise
-
-Tags: 3.5.21, 3.5.21-community
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: d44250b8c4e856e43f2e8e80b09d7b403f25eb75
-Directory: 3.5.21/community
-
-Tags: 3.5.21-enterprise
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: d44250b8c4e856e43f2e8e80b09d7b403f25eb75
-Directory: 3.5.21/enterprise
-
-Tags: 3.5.20, 3.5.20-community
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: daf79c6d15e38b90b2b424da1168f4843c578362
-Directory: 3.5.20/community
-
-Tags: 3.5.20-enterprise
-GitRepo: https://github.com/neo4j/docker-neo4j-publish.git
-GitCommit: daf79c6d15e38b90b2b424da1168f4843c578362
-Directory: 3.5.20/enterprise
+Tags: 4.4.26-enterprise, 4.4-enterprise
+Architectures: amd64, arm64v8
+GitCommit: 06d08eefe166a90662ea228cfbddce3438bd2732
+Directory: 4.4.26/bullseye/enterprise
diff --git a/library/neurodebian b/library/neurodebian
index 16fd46cb72..fde401bbc6 100644
--- a/library/neurodebian
+++ b/library/neurodebian
@@ -1,51 +1,59 @@
Maintainers: Yaroslav Halchenko (@yarikoptic)
GitRepo: https://github.com/neurodebian/dockerfiles.git
-GitCommit: 920deb4853138c8b7fcae4b232c70e82269a3856
-
-Tags: xenial, nd16.04
-Directory: dockerfiles/xenial
-
-Tags: xenial-non-free, nd16.04-non-free
-Directory: dockerfiles/xenial-non-free
+GitCommit: 1da9308291ad33a33447519ec1835bb3e37acebc
Tags: bionic, nd18.04
+Architectures: amd64, arm64v8
Directory: dockerfiles/bionic
Tags: bionic-non-free, nd18.04-non-free
+Architectures: amd64, arm64v8
Directory: dockerfiles/bionic-non-free
Tags: focal, nd20.04
+Architectures: amd64, arm64v8
Directory: dockerfiles/focal
Tags: focal-non-free, nd20.04-non-free
+Architectures: amd64, arm64v8
Directory: dockerfiles/focal-non-free
-Tags: groovy, nd20.10
-Directory: dockerfiles/groovy
+Tags: jammy, nd22.04
+Architectures: amd64, arm64v8
+Directory: dockerfiles/jammy
-Tags: groovy-non-free, nd20.10-non-free
-Directory: dockerfiles/groovy-non-free
+Tags: jammy-non-free, nd22.04-non-free
+Architectures: amd64, arm64v8
+Directory: dockerfiles/jammy-non-free
-Tags: stretch, nd90
-Directory: dockerfiles/stretch
-
-Tags: stretch-non-free, nd90-non-free
-Directory: dockerfiles/stretch-non-free
-
-Tags: buster, nd100, latest
+Tags: buster, nd100
+Architectures: amd64, arm64v8, i386
Directory: dockerfiles/buster
-Tags: buster-non-free, nd100-non-free, non-free
+Tags: buster-non-free, nd100-non-free
+Architectures: amd64, arm64v8, i386
Directory: dockerfiles/buster-non-free
-Tags: bullseye, nd110
+Tags: bullseye, nd110, latest
+Architectures: amd64, arm64v8, i386
Directory: dockerfiles/bullseye
-Tags: bullseye-non-free, nd110-non-free
+Tags: bullseye-non-free, nd110-non-free, non-free
+Architectures: amd64, arm64v8, i386
Directory: dockerfiles/bullseye-non-free
+Tags: bookworm, nd120
+Architectures: amd64, arm64v8, i386
+Directory: dockerfiles/bookworm
+
+Tags: bookworm-non-free, nd120-non-free
+Architectures: amd64, arm64v8, i386
+Directory: dockerfiles/bookworm-non-free
+
Tags: sid, nd
+Architectures: amd64, arm64v8, i386
Directory: dockerfiles/sid
Tags: sid-non-free, nd-non-free
+Architectures: amd64, arm64v8, i386
Directory: dockerfiles/sid-non-free
diff --git a/library/nextcloud b/library/nextcloud
index bcdc01929d..773475cfa3 100644
--- a/library/nextcloud
+++ b/library/nextcloud
@@ -1,49 +1,49 @@
-# This file is generated via https://github.com/nextcloud/docker/blob/3cd32ef5bb45631c9d91983fe091cf4b600e3ea8/generate-stackbrew-library.sh
+# This file is generated via https://github.com/nextcloud/docker/blob/766fd4e078fa9287b143b508835dbf1941852cc2/generate-stackbrew-library.sh
Maintainers: Nextcloud (@nextcloud)
GitRepo: https://github.com/nextcloud/docker.git
-Tags: 19.0.12-apache, 19.0-apache, 19-apache, 19.0.12, 19.0, 19
+Tags: 25.0.12-apache, 25.0-apache, 25-apache, 25.0.12, 25.0, 25
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: 05026b029d37fc5cd488d4a4a2a79480e39841ba
-Directory: 19.0/apache
+GitCommit: fef9785e235f1ff05f9a4c2eb81b5f46155ef917
+Directory: 25/apache
-Tags: 19.0.12-fpm, 19.0-fpm, 19-fpm
+Tags: 25.0.12-fpm, 25.0-fpm, 25-fpm
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: 05026b029d37fc5cd488d4a4a2a79480e39841ba
-Directory: 19.0/fpm
+GitCommit: fef9785e235f1ff05f9a4c2eb81b5f46155ef917
+Directory: 25/fpm
-Tags: 19.0.12-fpm-alpine, 19.0-fpm-alpine, 19-fpm-alpine
+Tags: 25.0.12-fpm-alpine, 25.0-fpm-alpine, 25-fpm-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 05026b029d37fc5cd488d4a4a2a79480e39841ba
-Directory: 19.0/fpm-alpine
+GitCommit: fef9785e235f1ff05f9a4c2eb81b5f46155ef917
+Directory: 25/fpm-alpine
-Tags: 20.0.10-apache, 20.0-apache, 20-apache, stable-apache, production-apache, 20.0.10, 20.0, 20, stable, production
+Tags: 26.0.7-apache, 26.0-apache, 26-apache, 26.0.7, 26.0, 26
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: 7cc3dcac758cd2ab0ec0e6d7fc9d701606c60af8
-Directory: 20.0/apache
+GitCommit: fef9785e235f1ff05f9a4c2eb81b5f46155ef917
+Directory: 26/apache
-Tags: 20.0.10-fpm, 20.0-fpm, 20-fpm, stable-fpm, production-fpm
+Tags: 26.0.7-fpm, 26.0-fpm, 26-fpm
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: 7cc3dcac758cd2ab0ec0e6d7fc9d701606c60af8
-Directory: 20.0/fpm
+GitCommit: fef9785e235f1ff05f9a4c2eb81b5f46155ef917
+Directory: 26/fpm
-Tags: 20.0.10-fpm-alpine, 20.0-fpm-alpine, 20-fpm-alpine, stable-fpm-alpine, production-fpm-alpine
+Tags: 26.0.7-fpm-alpine, 26.0-fpm-alpine, 26-fpm-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 7cc3dcac758cd2ab0ec0e6d7fc9d701606c60af8
-Directory: 20.0/fpm-alpine
+GitCommit: fef9785e235f1ff05f9a4c2eb81b5f46155ef917
+Directory: 26/fpm-alpine
-Tags: 21.0.2-apache, 21.0-apache, 21-apache, apache, 21.0.2, 21.0, 21, latest
+Tags: 27.1.1-apache, 27.1-apache, 27-apache, apache, stable-apache, production-apache, 27.1.1, 27.1, 27, latest, stable, production
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: 7cc3dcac758cd2ab0ec0e6d7fc9d701606c60af8
-Directory: 21.0/apache
+GitCommit: fef9785e235f1ff05f9a4c2eb81b5f46155ef917
+Directory: 27/apache
-Tags: 21.0.2-fpm, 21.0-fpm, 21-fpm, fpm
+Tags: 27.1.1-fpm, 27.1-fpm, 27-fpm, fpm, stable-fpm, production-fpm
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: 7cc3dcac758cd2ab0ec0e6d7fc9d701606c60af8
-Directory: 21.0/fpm
+GitCommit: fef9785e235f1ff05f9a4c2eb81b5f46155ef917
+Directory: 27/fpm
-Tags: 21.0.2-fpm-alpine, 21.0-fpm-alpine, 21-fpm-alpine, fpm-alpine
+Tags: 27.1.1-fpm-alpine, 27.1-fpm-alpine, 27-fpm-alpine, fpm-alpine, stable-fpm-alpine, production-fpm-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 7cc3dcac758cd2ab0ec0e6d7fc9d701606c60af8
-Directory: 21.0/fpm-alpine
+GitCommit: fef9785e235f1ff05f9a4c2eb81b5f46155ef917
+Directory: 27/fpm-alpine
diff --git a/library/nginx b/library/nginx
index 6b356745c4..142c767e92 100644
--- a/library/nginx
+++ b/library/nginx
@@ -1,44 +1,54 @@
-# this file is generated via https://github.com/nginxinc/docker-nginx/blob/f3fe494531f9b157d9c09ba509e412dace54cd4f/generate-stackbrew-library.sh
+# this file is generated via https://github.com/nginxinc/docker-nginx/blob/0cfc9381f01c6cd455e014ad738b5bcdffe8024c/generate-stackbrew-library.sh
Maintainers: NGINX Docker Maintainers (@nginxinc)
GitRepo: https://github.com/nginxinc/docker-nginx.git
-Tags: 1.21.0, mainline, 1, 1.21, latest
+Tags: 1.25.2, mainline, 1, 1.25, latest, 1.25.2-bookworm, mainline-bookworm, 1-bookworm, 1.25-bookworm, bookworm
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: f3fe494531f9b157d9c09ba509e412dace54cd4f
+GitCommit: 321a13a966eeff945196ddd31a629dad2aa85eda
Directory: mainline/debian
-Tags: 1.21.0-perl, mainline-perl, 1-perl, 1.21-perl, perl
+Tags: 1.25.2-perl, mainline-perl, 1-perl, 1.25-perl, perl, 1.25.2-bookworm-perl, mainline-bookworm-perl, 1-bookworm-perl, 1.25-bookworm-perl, bookworm-perl
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: f3fe494531f9b157d9c09ba509e412dace54cd4f
+GitCommit: 321a13a966eeff945196ddd31a629dad2aa85eda
Directory: mainline/debian-perl
-Tags: 1.21.0-alpine, mainline-alpine, 1-alpine, 1.21-alpine, alpine
+Tags: 1.25.2-alpine, mainline-alpine, 1-alpine, 1.25-alpine, alpine, 1.25.2-alpine3.18, mainline-alpine3.18, 1-alpine3.18, 1.25-alpine3.18, alpine3.18
Architectures: arm64v8, arm32v6, arm32v7, ppc64le, s390x, i386, amd64
-GitCommit: f3fe494531f9b157d9c09ba509e412dace54cd4f
+GitCommit: 4b0d808b8f320df132c154a974ebe46e9e5f5ffe
Directory: mainline/alpine
-Tags: 1.21.0-alpine-perl, mainline-alpine-perl, 1-alpine-perl, 1.21-alpine-perl, alpine-perl
+Tags: 1.25.2-alpine-perl, mainline-alpine-perl, 1-alpine-perl, 1.25-alpine-perl, alpine-perl, 1.25.2-alpine3.18-perl, mainline-alpine3.18-perl, 1-alpine3.18-perl, 1.25-alpine3.18-perl, alpine3.18-perl
Architectures: arm64v8, arm32v6, arm32v7, ppc64le, s390x, i386, amd64
-GitCommit: f3fe494531f9b157d9c09ba509e412dace54cd4f
+GitCommit: 4b0d808b8f320df132c154a974ebe46e9e5f5ffe
Directory: mainline/alpine-perl
-Tags: 1.20.1, stable, 1.20
+Tags: 1.25.2-alpine-slim, mainline-alpine-slim, 1-alpine-slim, 1.25-alpine-slim, alpine-slim, 1.25.2-alpine3.18-slim, mainline-alpine3.18-slim, 1-alpine3.18-slim, 1.25-alpine3.18-slim, alpine3.18-slim
+Architectures: arm64v8, arm32v6, arm32v7, ppc64le, s390x, i386, amd64
+GitCommit: 4b0d808b8f320df132c154a974ebe46e9e5f5ffe
+Directory: mainline/alpine-slim
+
+Tags: 1.24.0, stable, 1.24, 1.24.0-bullseye, stable-bullseye, 1.24-bullseye
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: f3fe494531f9b157d9c09ba509e412dace54cd4f
+GitCommit: 1a8d87b69760693a8e33cd8a9e0c2e5f0e8b0e3c
Directory: stable/debian
-Tags: 1.20.1-perl, stable-perl, 1.20-perl
+Tags: 1.24.0-perl, stable-perl, 1.24-perl, 1.24.0-bullseye-perl, stable-bullseye-perl, 1.24-bullseye-perl
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: f3fe494531f9b157d9c09ba509e412dace54cd4f
+GitCommit: 1a8d87b69760693a8e33cd8a9e0c2e5f0e8b0e3c
Directory: stable/debian-perl
-Tags: 1.20.1-alpine, stable-alpine, 1.20-alpine
+Tags: 1.24.0-alpine, stable-alpine, 1.24-alpine, 1.24.0-alpine3.17, stable-alpine3.17, 1.24-alpine3.17
Architectures: arm64v8, arm32v6, arm32v7, ppc64le, s390x, i386, amd64
-GitCommit: f3fe494531f9b157d9c09ba509e412dace54cd4f
+GitCommit: 1a8d87b69760693a8e33cd8a9e0c2e5f0e8b0e3c
Directory: stable/alpine
-Tags: 1.20.1-alpine-perl, stable-alpine-perl, 1.20-alpine-perl
+Tags: 1.24.0-alpine-perl, stable-alpine-perl, 1.24-alpine-perl, 1.24.0-alpine3.17-perl, stable-alpine3.17-perl, 1.24-alpine3.17-perl
Architectures: arm64v8, arm32v6, arm32v7, ppc64le, s390x, i386, amd64
-GitCommit: f3fe494531f9b157d9c09ba509e412dace54cd4f
+GitCommit: 1a8d87b69760693a8e33cd8a9e0c2e5f0e8b0e3c
Directory: stable/alpine-perl
+
+Tags: 1.24.0-alpine-slim, stable-alpine-slim, 1.24-alpine-slim, 1.24.0-alpine3.17-slim, stable-alpine3.17-slim, 1.24-alpine3.17-slim
+Architectures: arm64v8, arm32v6, arm32v7, ppc64le, s390x, i386, amd64
+GitCommit: 1a8d87b69760693a8e33cd8a9e0c2e5f0e8b0e3c
+Directory: stable/alpine-slim
diff --git a/library/node b/library/node
index 9b308fee33..c55767f92f 100644
--- a/library/node
+++ b/library/node
@@ -1,156 +1,86 @@
-# this file is generated via https://github.com/nodejs/docker-node/blob/8caf95d4ad8e658ba5a15bdaa20cdb8a4e12a962/stackbrew.js
+# this file is generated via https://github.com/nodejs/docker-node/blob/6faf0277a067b4706821a609c962a162d5538472/stackbrew.js
Maintainers: The Node.js Docker Team (@nodejs)
GitRepo: https://github.com/nodejs/docker-node.git
GitFetch: refs/heads/main
-Tags: 16-alpine3.11, 16.2-alpine3.11, 16.2.0-alpine3.11, alpine3.11, current-alpine3.11
+Tags: 20-alpine3.17, 20.8-alpine3.17, 20.8.0-alpine3.17, alpine3.17, current-alpine3.17
Architectures: amd64, arm32v6, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: 5e83de3df9b640770e700b85241570dd5a78253e
-Directory: 16/alpine3.11
+GitCommit: 230b9852645e170167a2aac1cfa246d069c23cc3
+Directory: 20/alpine3.17
-Tags: 16-alpine3.12, 16.2-alpine3.12, 16.2.0-alpine3.12, alpine3.12, current-alpine3.12
+Tags: 20-alpine, 20-alpine3.18, 20.8-alpine, 20.8-alpine3.18, 20.8.0-alpine, 20.8.0-alpine3.18, alpine, alpine3.18, current-alpine, current-alpine3.18
Architectures: amd64, arm32v6, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: 5e83de3df9b640770e700b85241570dd5a78253e
-Directory: 16/alpine3.12
+GitCommit: 230b9852645e170167a2aac1cfa246d069c23cc3
+Directory: 20/alpine3.18
-Tags: 16-alpine, 16-alpine3.13, 16.2-alpine, 16.2-alpine3.13, 16.2.0-alpine, 16.2.0-alpine3.13, alpine, alpine3.13, current-alpine, current-alpine3.13
-Architectures: amd64, arm32v6, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: 5e83de3df9b640770e700b85241570dd5a78253e
-Directory: 16/alpine3.13
-
-Tags: 16, 16-buster, 16.2, 16.2-buster, 16.2.0, 16.2.0-buster, buster, current, current-buster, latest
+Tags: 20, 20-bookworm, 20.8, 20.8-bookworm, 20.8.0, 20.8.0-bookworm, bookworm, current, current-bookworm, latest
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: 5e83de3df9b640770e700b85241570dd5a78253e
-Directory: 16/buster
+GitCommit: 230b9852645e170167a2aac1cfa246d069c23cc3
+Directory: 20/bookworm
-Tags: 16-buster-slim, 16-slim, 16.2-buster-slim, 16.2-slim, 16.2.0-buster-slim, 16.2.0-slim, buster-slim, current-buster-slim, current-slim, slim
+Tags: 20-bookworm-slim, 20-slim, 20.8-bookworm-slim, 20.8-slim, 20.8.0-bookworm-slim, 20.8.0-slim, bookworm-slim, current-bookworm-slim, current-slim, slim
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: 5e83de3df9b640770e700b85241570dd5a78253e
-Directory: 16/buster-slim
+GitCommit: 230b9852645e170167a2aac1cfa246d069c23cc3
+Directory: 20/bookworm-slim
-Tags: 16-stretch, 16.2-stretch, 16.2.0-stretch, current-stretch, stretch
-Architectures: amd64, arm32v7, arm64v8
-GitCommit: 5e83de3df9b640770e700b85241570dd5a78253e
-Directory: 16/stretch
-
-Tags: 16-stretch-slim, 16.2-stretch-slim, 16.2.0-stretch-slim, current-stretch-slim, stretch-slim
-Architectures: amd64, arm32v7, arm64v8
-GitCommit: 5e83de3df9b640770e700b85241570dd5a78253e
-Directory: 16/stretch-slim
-
-Tags: 15-alpine3.10, 15.14-alpine3.10, 15.14.0-alpine3.10
-Architectures: amd64, arm32v6, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: 31246f5f779cafa0930a1db04bd00d875d6a940d
-Directory: 15/alpine3.10
-
-Tags: 15-alpine, 15-alpine3.11, 15.14-alpine, 15.14-alpine3.11, 15.14.0-alpine, 15.14.0-alpine3.11
-Architectures: amd64, arm32v6, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: 31246f5f779cafa0930a1db04bd00d875d6a940d
-Directory: 15/alpine3.11
-
-Tags: 15-alpine3.12, 15.14-alpine3.12, 15.14.0-alpine3.12
-Architectures: amd64, arm32v6, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: 31246f5f779cafa0930a1db04bd00d875d6a940d
-Directory: 15/alpine3.12
-
-Tags: 15-alpine3.13, 15.14-alpine3.13, 15.14.0-alpine3.13
-Architectures: amd64, arm32v6, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: 31246f5f779cafa0930a1db04bd00d875d6a940d
-Directory: 15/alpine3.13
-
-Tags: 15-buster, 15.14-buster, 15.14.0-buster
+Tags: 20-bullseye, 20.8-bullseye, 20.8.0-bullseye, bullseye, current-bullseye
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: 31246f5f779cafa0930a1db04bd00d875d6a940d
-Directory: 15/buster
+GitCommit: 230b9852645e170167a2aac1cfa246d069c23cc3
+Directory: 20/bullseye
-Tags: 15-buster-slim, 15.14-buster-slim, 15.14.0-buster-slim
+Tags: 20-bullseye-slim, 20.8-bullseye-slim, 20.8.0-bullseye-slim, bullseye-slim, current-bullseye-slim
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: 31246f5f779cafa0930a1db04bd00d875d6a940d
-Directory: 15/buster-slim
+GitCommit: 230b9852645e170167a2aac1cfa246d069c23cc3
+Directory: 20/bullseye-slim
-Tags: 15, 15-stretch, 15.14, 15.14-stretch, 15.14.0, 15.14.0-stretch
+Tags: 20-buster, 20.8-buster, 20.8.0-buster, buster, current-buster
Architectures: amd64, arm32v7, arm64v8
-GitCommit: 31246f5f779cafa0930a1db04bd00d875d6a940d
-Directory: 15/stretch
+GitCommit: 230b9852645e170167a2aac1cfa246d069c23cc3
+Directory: 20/buster
-Tags: 15-slim, 15-stretch-slim, 15.14-slim, 15.14-stretch-slim, 15.14.0-slim, 15.14.0-stretch-slim
+Tags: 20-buster-slim, 20.8-buster-slim, 20.8.0-buster-slim, buster-slim, current-buster-slim
Architectures: amd64, arm32v7, arm64v8
-GitCommit: 31246f5f779cafa0930a1db04bd00d875d6a940d
-Directory: 15/stretch-slim
+GitCommit: 230b9852645e170167a2aac1cfa246d069c23cc3
+Directory: 20/buster-slim
-Tags: 14-alpine3.10, 14.17-alpine3.10, 14.17.0-alpine3.10, fermium-alpine3.10, lts-alpine3.10
+Tags: 18-alpine3.17, 18.18-alpine3.17, 18.18.0-alpine3.17, hydrogen-alpine3.17, lts-alpine3.17
Architectures: amd64, arm32v6, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: b1035ac19bad5a92e9bc48c1b53ea37572c88cfc
-Directory: 14/alpine3.10
+GitCommit: ce9bfa282b62ece538fef25b954ade4401a7c8c7
+Directory: 18/alpine3.17
-Tags: 14-alpine, 14-alpine3.11, 14.17-alpine, 14.17-alpine3.11, 14.17.0-alpine, 14.17.0-alpine3.11, fermium-alpine, fermium-alpine3.11, lts-alpine, lts-alpine3.11
+Tags: 18-alpine, 18-alpine3.18, 18.18-alpine, 18.18-alpine3.18, 18.18.0-alpine, 18.18.0-alpine3.18, hydrogen-alpine, hydrogen-alpine3.18, lts-alpine, lts-alpine3.18
Architectures: amd64, arm32v6, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: b1035ac19bad5a92e9bc48c1b53ea37572c88cfc
-Directory: 14/alpine3.11
+GitCommit: ce9bfa282b62ece538fef25b954ade4401a7c8c7
+Directory: 18/alpine3.18
-Tags: 14-alpine3.12, 14.17-alpine3.12, 14.17.0-alpine3.12, fermium-alpine3.12, lts-alpine3.12
-Architectures: amd64, arm32v6, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: b1035ac19bad5a92e9bc48c1b53ea37572c88cfc
-Directory: 14/alpine3.12
-
-Tags: 14-alpine3.13, 14.17-alpine3.13, 14.17.0-alpine3.13, fermium-alpine3.13, lts-alpine3.13
-Architectures: amd64, arm32v6, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: b1035ac19bad5a92e9bc48c1b53ea37572c88cfc
-Directory: 14/alpine3.13
-
-Tags: 14-buster, 14.17-buster, 14.17.0-buster, fermium-buster, lts-buster
+Tags: 18, 18-bookworm, 18.18, 18.18-bookworm, 18.18.0, 18.18.0-bookworm, hydrogen, hydrogen-bookworm, lts, lts-bookworm, lts-hydrogen
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: b1035ac19bad5a92e9bc48c1b53ea37572c88cfc
-Directory: 14/buster
+GitCommit: ce9bfa282b62ece538fef25b954ade4401a7c8c7
+Directory: 18/bookworm
-Tags: 14-buster-slim, 14.17-buster-slim, 14.17.0-buster-slim, fermium-buster-slim, lts-buster-slim
+Tags: 18-bookworm-slim, 18-slim, 18.18-bookworm-slim, 18.18-slim, 18.18.0-bookworm-slim, 18.18.0-slim, hydrogen-bookworm-slim, hydrogen-slim, lts-bookworm-slim, lts-slim
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: b1035ac19bad5a92e9bc48c1b53ea37572c88cfc
-Directory: 14/buster-slim
+GitCommit: ce9bfa282b62ece538fef25b954ade4401a7c8c7
+Directory: 18/bookworm-slim
-Tags: 14, 14-stretch, 14.17, 14.17-stretch, 14.17.0, 14.17.0-stretch, fermium, fermium-stretch, lts, lts-fermium, lts-stretch
-Architectures: amd64, arm32v7, arm64v8
-GitCommit: b1035ac19bad5a92e9bc48c1b53ea37572c88cfc
-Directory: 14/stretch
-
-Tags: 14-slim, 14-stretch-slim, 14.17-slim, 14.17-stretch-slim, 14.17.0-slim, 14.17.0-stretch-slim, fermium-slim, fermium-stretch-slim, lts-slim, lts-stretch-slim
-Architectures: amd64, arm32v7, arm64v8
-GitCommit: b1035ac19bad5a92e9bc48c1b53ea37572c88cfc
-Directory: 14/stretch-slim
-
-Tags: 12-alpine3.10, 12.22-alpine3.10, 12.22.1-alpine3.10, erbium-alpine3.10
-Architectures: amd64, arm32v6, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: 31246f5f779cafa0930a1db04bd00d875d6a940d
-Directory: 12/alpine3.10
-
-Tags: 12-alpine, 12-alpine3.11, 12.22-alpine, 12.22-alpine3.11, 12.22.1-alpine, 12.22.1-alpine3.11, erbium-alpine, erbium-alpine3.11
-Architectures: amd64, arm32v6, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: 31246f5f779cafa0930a1db04bd00d875d6a940d
-Directory: 12/alpine3.11
-
-Tags: 12-alpine3.12, 12.22-alpine3.12, 12.22.1-alpine3.12, erbium-alpine3.12
-Architectures: amd64, arm32v6, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: 31246f5f779cafa0930a1db04bd00d875d6a940d
-Directory: 12/alpine3.12
-
-Tags: 12-buster, 12.22-buster, 12.22.1-buster, erbium-buster
+Tags: 18-bullseye, 18.18-bullseye, 18.18.0-bullseye, hydrogen-bullseye, lts-bullseye
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: 31246f5f779cafa0930a1db04bd00d875d6a940d
-Directory: 12/buster
+GitCommit: ce9bfa282b62ece538fef25b954ade4401a7c8c7
+Directory: 18/bullseye
-Tags: 12-buster-slim, 12.22-buster-slim, 12.22.1-buster-slim, erbium-buster-slim
+Tags: 18-bullseye-slim, 18.18-bullseye-slim, 18.18.0-bullseye-slim, hydrogen-bullseye-slim, lts-bullseye-slim
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: 31246f5f779cafa0930a1db04bd00d875d6a940d
-Directory: 12/buster-slim
+GitCommit: ce9bfa282b62ece538fef25b954ade4401a7c8c7
+Directory: 18/bullseye-slim
-Tags: 12, 12-stretch, 12.22, 12.22-stretch, 12.22.1, 12.22.1-stretch, erbium, erbium-stretch
+Tags: 18-buster, 18.18-buster, 18.18.0-buster, hydrogen-buster, lts-buster
Architectures: amd64, arm32v7, arm64v8
-GitCommit: 31246f5f779cafa0930a1db04bd00d875d6a940d
-Directory: 12/stretch
+GitCommit: ce9bfa282b62ece538fef25b954ade4401a7c8c7
+Directory: 18/buster
-Tags: 12-slim, 12-stretch-slim, 12.22-slim, 12.22-stretch-slim, 12.22.1-slim, 12.22.1-stretch-slim, erbium-slim, erbium-stretch-slim
+Tags: 18-buster-slim, 18.18-buster-slim, 18.18.0-buster-slim, hydrogen-buster-slim, lts-buster-slim
Architectures: amd64, arm32v7, arm64v8
-GitCommit: 31246f5f779cafa0930a1db04bd00d875d6a940d
-Directory: 12/stretch-slim
+GitCommit: ce9bfa282b62ece538fef25b954ade4401a7c8c7
+Directory: 18/buster-slim
diff --git a/library/notary b/library/notary
index 79ae0fd3b3..f82ddddc99 100644
--- a/library/notary
+++ b/library/notary
@@ -1,10 +1,11 @@
Maintainers: Justin Cormack (@justincormack)
GitRepo: https://github.com/docker/notary-official-images.git
-GitCommit: 278bbe63ea6bfb67974fe969c77e02049fe47ab7
+GitCommit: 77b9b7833f8dd6be07104b214193788795a320ff
Architectures: amd64, arm32v6, arm64v8, i386, ppc64le, s390x
+Builder: buildkit
-Tags: server-0.6.1-2, server
+Tags: server-0.7.0, server
Directory: notary-server
-Tags: signer-0.6.1-2, signer
+Tags: signer-0.7.0, signer
Directory: notary-signer
diff --git a/library/nuxeo b/library/nuxeo
deleted file mode 100644
index 62956dfdc5..0000000000
--- a/library/nuxeo
+++ /dev/null
@@ -1,25 +0,0 @@
-# this file is generated via https://github.com/nuxeo/docker-nuxeo/blob/68f31eda0c7d8141812f36b81b6b4430f0de35b3/generate-stackbrew-library.sh
-
-Maintainers: Damien Metzler (@dmetzler),
- Arnaud Kervern (@akervern)
-GitRepo: https://github.com/nuxeo/docker-nuxeo.git
-
-Tags: 7.10, 7, LTS-2015
-Architectures: amd64
-GitCommit: f253a2398dbc39b42ca6ff84f2adeda8c1e8287e
-Directory: 7.10
-
-Tags: 8.10, 8, LTS-2016
-Architectures: amd64
-GitCommit: f253a2398dbc39b42ca6ff84f2adeda8c1e8287e
-Directory: 8.10
-
-Tags: 9.10, 9, LTS-2017
-Architectures: amd64
-GitCommit: f253a2398dbc39b42ca6ff84f2adeda8c1e8287e
-Directory: 9.10
-
-Tags: 10.10, 10, LTS-2019, LTS, FT, latest
-Architectures: amd64
-GitCommit: f253a2398dbc39b42ca6ff84f2adeda8c1e8287e
-Directory: 10.10
diff --git a/library/odoo b/library/odoo
index 327acc47e6..96f097ead3 100644
--- a/library/odoo
+++ b/library/odoo
@@ -1,15 +1,16 @@
Maintainers: Christophe Monniez (@d-fence)
GitRepo: https://github.com/odoo/docker
-GitCommit: 6d95b778cfdd0673e1571f962a4aac70f67a685e
+GitCommit: d04d885eea6b8f60ada727fcc498f5a8fd44da51
-Tags: 14.0, 14, latest
+Tags: 16.0, 16, latest
+Architectures: amd64
+Directory: 16.0
+
+Tags: 15.0, 15
+Architectures: amd64
+Directory: 15.0
+
+Tags: 14.0, 14
Architectures: amd64
Directory: 14.0
-Tags: 13.0, 13
-Architectures: amd64
-Directory: 13.0
-
-Tags: 12.0, 12
-Architectures: amd64
-Directory: 12.0
diff --git a/library/open-liberty b/library/open-liberty
index 753d92c6c8..260be73860 100644
--- a/library/open-liberty
+++ b/library/open-liberty
@@ -1,96 +1,112 @@
-Maintainers: Chris Potter (@crpotter),
- Wendy Raschke (@wraschke),
- Arthur De Magalhaes (@arthurdm)
+Maintainers: Leo Christy Jesuraj (@leochr),
+ Michal Broz (@mbroz2),
+ Wendy Raschke (@wraschke)
GitRepo: https://github.com/OpenLiberty/ci.docker.git
-GitCommit: 651f2794c93bc454aeae12eda58be1430f731e0e
+GitFetch: refs/heads/main
+GitCommit: 5d48ecee8824ef8415328ad88589014feee14740
Architectures: amd64, i386, ppc64le, s390x
Tags: beta
Directory: releases/latest/beta
-Architectures: amd64, ppc64le, s390x
-File: Dockerfile.ubuntu.adoptopenjdk8
+Architectures: amd64, arm64v8, ppc64le, s390x
+File: Dockerfile.ubuntu.openjdk8
Tags: beta-java11
Directory: releases/latest/beta
-Architectures: amd64, ppc64le, s390x
-File: Dockerfile.ubuntu.adoptopenjdk11
+Architectures: amd64, arm64v8, ppc64le, s390x
+File: Dockerfile.ubuntu.openjdk11
+
+Tags: beta-java17
+Directory: releases/latest/beta
+Architectures: amd64, arm64v8, ppc64le, s390x
+File: Dockerfile.ubuntu.openjdk17
Tags: kernel-slim, kernel-slim-java8-openj9
Directory: releases/latest/kernel-slim
-Architectures: amd64, ppc64le, s390x
-File: Dockerfile.ubuntu.adoptopenjdk8
+Architectures: amd64, arm64v8, ppc64le, s390x
+File: Dockerfile.ubuntu.openjdk8
Tags: kernel-slim-java11-openj9
Directory: releases/latest/kernel-slim
-Architectures: amd64, ppc64le, s390x
-File: Dockerfile.ubuntu.adoptopenjdk11
+Architectures: amd64, arm64v8, ppc64le, s390x
+File: Dockerfile.ubuntu.openjdk11
+
+Tags: kernel-slim-java17-openj9
+Directory: releases/latest/kernel-slim
+Architectures: amd64, arm64v8, ppc64le, s390x
+File: Dockerfile.ubuntu.openjdk17
Tags: full, full-java8-openj9, latest
Directory: releases/latest/full
-Architectures: amd64, ppc64le, s390x
-File: Dockerfile.ubuntu.adoptopenjdk8
+Architectures: amd64, arm64v8, ppc64le, s390x
+File: Dockerfile.ubuntu.openjdk8
Tags: full-java11-openj9
Directory: releases/latest/full
-Architectures: amd64, ppc64le, s390x
-File: Dockerfile.ubuntu.adoptopenjdk11
+Architectures: amd64, arm64v8, ppc64le, s390x
+File: Dockerfile.ubuntu.openjdk11
-Tags: 21.0.0.5-kernel-slim-java8-openj9
-Directory: releases/21.0.0.5/kernel-slim
-Architectures: amd64, ppc64le, s390x
-File: Dockerfile.ubuntu.adoptopenjdk8
+Tags: full-java17-openj9
+Directory: releases/latest/full
+Architectures: amd64, arm64v8, ppc64le, s390x
+File: Dockerfile.ubuntu.openjdk17
-Tags: 21.0.0.5-kernel-slim-java11-openj9
-Directory: releases/21.0.0.5/kernel-slim
-Architectures: amd64, ppc64le, s390x
-File: Dockerfile.ubuntu.adoptopenjdk11
+Tags: 23.0.0.9-kernel-slim-java8-openj9
+Directory: releases/23.0.0.9/kernel-slim
+Architectures: amd64, arm64v8, ppc64le, s390x
+File: Dockerfile.ubuntu.openjdk8
-Tags: 21.0.0.5-full-java8-openj9
-Directory: releases/21.0.0.5/full
-Architectures: amd64, ppc64le, s390x
-File: Dockerfile.ubuntu.adoptopenjdk8
+Tags: 23.0.0.9-kernel-slim-java11-openj9
+Directory: releases/23.0.0.9/kernel-slim
+Architectures: amd64, arm64v8, ppc64le, s390x
+File: Dockerfile.ubuntu.openjdk11
-Tags: 21.0.0.5-full-java11-openj9
-Directory: releases/21.0.0.5/full
-Architectures: amd64, ppc64le, s390x
-File: Dockerfile.ubuntu.adoptopenjdk11
+Tags: 23.0.0.9-kernel-slim-java17-openj9
+Directory: releases/23.0.0.9/kernel-slim
+Architectures: amd64, arm64v8, ppc64le, s390x
+File: Dockerfile.ubuntu.openjdk17
-Tags: 21.0.0.3-kernel-slim-java8-openj9
-Directory: releases/21.0.0.3/kernel-slim
-Architectures: amd64, ppc64le, s390x
-File: Dockerfile.ubuntu.adoptopenjdk8
+Tags: 23.0.0.9-full-java8-openj9
+Directory: releases/23.0.0.9/full
+Architectures: amd64, arm64v8, ppc64le, s390x
+File: Dockerfile.ubuntu.openjdk8
-Tags: 21.0.0.3-kernel-slim-java11-openj9
-Directory: releases/21.0.0.3/kernel-slim
-Architectures: amd64, ppc64le, s390x
-File: Dockerfile.ubuntu.adoptopenjdk11
+Tags: 23.0.0.9-full-java11-openj9
+Directory: releases/23.0.0.9/full
+Architectures: amd64, arm64v8, ppc64le, s390x
+File: Dockerfile.ubuntu.openjdk11
-Tags: 21.0.0.3-full-java8-openj9
-Directory: releases/21.0.0.3/full
-Architectures: amd64, ppc64le, s390x
-File: Dockerfile.ubuntu.adoptopenjdk8
+Tags: 23.0.0.9-full-java17-openj9
+Directory: releases/23.0.0.9/full
+Architectures: amd64, arm64v8, ppc64le, s390x
+File: Dockerfile.ubuntu.openjdk17
-Tags: 21.0.0.3-full-java11-openj9
-Directory: releases/21.0.0.3/full
-Architectures: amd64, ppc64le, s390x
-File: Dockerfile.ubuntu.adoptopenjdk11
+Tags: 23.0.0.6-kernel-slim-java8-openj9
+Directory: releases/23.0.0.6/kernel-slim
+Architectures: amd64, arm64v8, ppc64le, s390x
+File: Dockerfile.ubuntu.openjdk8
-Tags: 20.0.0.12-kernel-slim-java8-openj9
-Directory: releases/20.0.0.12/kernel-slim
-Architectures: amd64, ppc64le, s390x
-File: Dockerfile.ubuntu.adoptopenjdk8
+Tags: 23.0.0.6-kernel-slim-java11-openj9
+Directory: releases/23.0.0.6/kernel-slim
+Architectures: amd64, arm64v8, ppc64le, s390x
+File: Dockerfile.ubuntu.openjdk11
-Tags: 20.0.0.12-kernel-slim-java11-openj9
-Directory: releases/20.0.0.12/kernel-slim
-Architectures: amd64, ppc64le, s390x
-File: Dockerfile.ubuntu.adoptopenjdk11
+Tags: 23.0.0.6-kernel-slim-java17-openj9
+Directory: releases/23.0.0.6/kernel-slim
+Architectures: amd64, arm64v8, ppc64le, s390x
+File: Dockerfile.ubuntu.openjdk17
-Tags: 20.0.0.12-full-java8-openj9
-Directory: releases/20.0.0.12/full
-Architectures: amd64, ppc64le, s390x
-File: Dockerfile.ubuntu.adoptopenjdk8
+Tags: 23.0.0.6-full-java8-openj9
+Directory: releases/23.0.0.6/full
+Architectures: amd64, arm64v8, ppc64le, s390x
+File: Dockerfile.ubuntu.openjdk8
-Tags: 20.0.0.12-full-java11-openj9
-Directory: releases/20.0.0.12/full
-Architectures: amd64, ppc64le, s390x
-File: Dockerfile.ubuntu.adoptopenjdk11
+Tags: 23.0.0.6-full-java11-openj9
+Directory: releases/23.0.0.6/full
+Architectures: amd64, arm64v8, ppc64le, s390x
+File: Dockerfile.ubuntu.openjdk11
+
+Tags: 23.0.0.6-full-java17-openj9
+Directory: releases/23.0.0.6/full
+Architectures: amd64, arm64v8, ppc64le, s390x
+File: Dockerfile.ubuntu.openjdk17
diff --git a/library/openjdk b/library/openjdk
index 7a10f70c20..0dcd21814b 100644
--- a/library/openjdk
+++ b/library/openjdk
@@ -1,247 +1,57 @@
-# this file is generated via https://github.com/docker-library/openjdk/blob/1c120f817997a67599a5970a84689528596b60fe/generate-stackbrew-library.sh
+# this file is generated via https://github.com/docker-library/openjdk/blob/3345e54d319e7247c3adb700ded0209f26e8171c/generate-stackbrew-library.sh
Maintainers: Tianon Gravi (@tianon),
Joseph Ferguson (@yosifkit)
GitRepo: https://github.com/docker-library/openjdk.git
-Tags: 17-ea-24-jdk-oraclelinux8, 17-ea-24-oraclelinux8, 17-ea-jdk-oraclelinux8, 17-ea-oraclelinux8, 17-jdk-oraclelinux8, 17-oraclelinux8, 17-ea-24-jdk-oracle, 17-ea-24-oracle, 17-ea-jdk-oracle, 17-ea-oracle, 17-jdk-oracle, 17-oracle
-SharedTags: 17-ea-24-jdk, 17-ea-24, 17-ea-jdk, 17-ea, 17-jdk, 17
+Tags: 22-ea-18-jdk-oraclelinux8, 22-ea-18-oraclelinux8, 22-ea-jdk-oraclelinux8, 22-ea-oraclelinux8, 22-jdk-oraclelinux8, 22-oraclelinux8, 22-ea-18-jdk-oracle, 22-ea-18-oracle, 22-ea-jdk-oracle, 22-ea-oracle, 22-jdk-oracle, 22-oracle
+SharedTags: 22-ea-18-jdk, 22-ea-18, 22-ea-jdk, 22-ea, 22-jdk, 22
Architectures: amd64, arm64v8
-GitCommit: 34b09b2cbfa0edc7930818ea4ff070e3d42d5f89
-Directory: 17/jdk/oraclelinux8
+GitCommit: 577abd2ab9161bcadb1d7b64a26fc89ae9f34379
+Directory: 22/jdk/oraclelinux8
-Tags: 17-ea-24-jdk-oraclelinux7, 17-ea-24-oraclelinux7, 17-ea-jdk-oraclelinux7, 17-ea-oraclelinux7, 17-jdk-oraclelinux7, 17-oraclelinux7
+Tags: 22-ea-18-jdk-oraclelinux7, 22-ea-18-oraclelinux7, 22-ea-jdk-oraclelinux7, 22-ea-oraclelinux7, 22-jdk-oraclelinux7, 22-oraclelinux7
Architectures: amd64, arm64v8
-GitCommit: 34b09b2cbfa0edc7930818ea4ff070e3d42d5f89
-Directory: 17/jdk/oraclelinux7
+GitCommit: 577abd2ab9161bcadb1d7b64a26fc89ae9f34379
+Directory: 22/jdk/oraclelinux7
-Tags: 17-ea-24-jdk-buster, 17-ea-24-buster, 17-ea-jdk-buster, 17-ea-buster, 17-jdk-buster, 17-buster
+Tags: 22-ea-18-jdk-bookworm, 22-ea-18-bookworm, 22-ea-jdk-bookworm, 22-ea-bookworm, 22-jdk-bookworm, 22-bookworm
Architectures: amd64, arm64v8
-GitCommit: 34b09b2cbfa0edc7930818ea4ff070e3d42d5f89
-Directory: 17/jdk/buster
+GitCommit: 577abd2ab9161bcadb1d7b64a26fc89ae9f34379
+Directory: 22/jdk/bookworm
-Tags: 17-ea-24-jdk-slim-buster, 17-ea-24-slim-buster, 17-ea-jdk-slim-buster, 17-ea-slim-buster, 17-jdk-slim-buster, 17-slim-buster, 17-ea-24-jdk-slim, 17-ea-24-slim, 17-ea-jdk-slim, 17-ea-slim, 17-jdk-slim, 17-slim
+Tags: 22-ea-18-jdk-slim-bookworm, 22-ea-18-slim-bookworm, 22-ea-jdk-slim-bookworm, 22-ea-slim-bookworm, 22-jdk-slim-bookworm, 22-slim-bookworm, 22-ea-18-jdk-slim, 22-ea-18-slim, 22-ea-jdk-slim, 22-ea-slim, 22-jdk-slim, 22-slim
Architectures: amd64, arm64v8
-GitCommit: 34b09b2cbfa0edc7930818ea4ff070e3d42d5f89
-Directory: 17/jdk/slim-buster
+GitCommit: 577abd2ab9161bcadb1d7b64a26fc89ae9f34379
+Directory: 22/jdk/slim-bookworm
-Tags: 17-ea-14-jdk-alpine3.13, 17-ea-14-alpine3.13, 17-ea-jdk-alpine3.13, 17-ea-alpine3.13, 17-jdk-alpine3.13, 17-alpine3.13, 17-ea-14-jdk-alpine, 17-ea-14-alpine, 17-ea-jdk-alpine, 17-ea-alpine, 17-jdk-alpine, 17-alpine
-Architectures: amd64
-GitCommit: 255fbc7cf6da6d76869b420dd2fe0bc94539b5eb
-Directory: 17/jdk/alpine3.13
+Tags: 22-ea-18-jdk-bullseye, 22-ea-18-bullseye, 22-ea-jdk-bullseye, 22-ea-bullseye, 22-jdk-bullseye, 22-bullseye
+Architectures: amd64, arm64v8
+GitCommit: 577abd2ab9161bcadb1d7b64a26fc89ae9f34379
+Directory: 22/jdk/bullseye
-Tags: 17-ea-14-jdk-alpine3.12, 17-ea-14-alpine3.12, 17-ea-jdk-alpine3.12, 17-ea-alpine3.12, 17-jdk-alpine3.12, 17-alpine3.12
-Architectures: amd64
-GitCommit: 255fbc7cf6da6d76869b420dd2fe0bc94539b5eb
-Directory: 17/jdk/alpine3.12
+Tags: 22-ea-18-jdk-slim-bullseye, 22-ea-18-slim-bullseye, 22-ea-jdk-slim-bullseye, 22-ea-slim-bullseye, 22-jdk-slim-bullseye, 22-slim-bullseye
+Architectures: amd64, arm64v8
+GitCommit: 577abd2ab9161bcadb1d7b64a26fc89ae9f34379
+Directory: 22/jdk/slim-bullseye
-Tags: 17-ea-24-jdk-windowsservercore-1809, 17-ea-24-windowsservercore-1809, 17-ea-jdk-windowsservercore-1809, 17-ea-windowsservercore-1809, 17-jdk-windowsservercore-1809, 17-windowsservercore-1809
-SharedTags: 17-ea-24-jdk-windowsservercore, 17-ea-24-windowsservercore, 17-ea-jdk-windowsservercore, 17-ea-windowsservercore, 17-jdk-windowsservercore, 17-windowsservercore, 17-ea-24-jdk, 17-ea-24, 17-ea-jdk, 17-ea, 17-jdk, 17
+Tags: 22-ea-18-jdk-windowsservercore-ltsc2022, 22-ea-18-windowsservercore-ltsc2022, 22-ea-jdk-windowsservercore-ltsc2022, 22-ea-windowsservercore-ltsc2022, 22-jdk-windowsservercore-ltsc2022, 22-windowsservercore-ltsc2022
+SharedTags: 22-ea-18-jdk-windowsservercore, 22-ea-18-windowsservercore, 22-ea-jdk-windowsservercore, 22-ea-windowsservercore, 22-jdk-windowsservercore, 22-windowsservercore, 22-ea-18-jdk, 22-ea-18, 22-ea-jdk, 22-ea, 22-jdk, 22
Architectures: windows-amd64
-GitCommit: 34b09b2cbfa0edc7930818ea4ff070e3d42d5f89
-Directory: 17/jdk/windows/windowsservercore-1809
+GitCommit: 577abd2ab9161bcadb1d7b64a26fc89ae9f34379
+Directory: 22/jdk/windows/windowsservercore-ltsc2022
+Constraints: windowsservercore-ltsc2022
+
+Tags: 22-ea-18-jdk-windowsservercore-1809, 22-ea-18-windowsservercore-1809, 22-ea-jdk-windowsservercore-1809, 22-ea-windowsservercore-1809, 22-jdk-windowsservercore-1809, 22-windowsservercore-1809
+SharedTags: 22-ea-18-jdk-windowsservercore, 22-ea-18-windowsservercore, 22-ea-jdk-windowsservercore, 22-ea-windowsservercore, 22-jdk-windowsservercore, 22-windowsservercore, 22-ea-18-jdk, 22-ea-18, 22-ea-jdk, 22-ea, 22-jdk, 22
+Architectures: windows-amd64
+GitCommit: 577abd2ab9161bcadb1d7b64a26fc89ae9f34379
+Directory: 22/jdk/windows/windowsservercore-1809
Constraints: windowsservercore-1809
-Tags: 17-ea-24-jdk-windowsservercore-ltsc2016, 17-ea-24-windowsservercore-ltsc2016, 17-ea-jdk-windowsservercore-ltsc2016, 17-ea-windowsservercore-ltsc2016, 17-jdk-windowsservercore-ltsc2016, 17-windowsservercore-ltsc2016
-SharedTags: 17-ea-24-jdk-windowsservercore, 17-ea-24-windowsservercore, 17-ea-jdk-windowsservercore, 17-ea-windowsservercore, 17-jdk-windowsservercore, 17-windowsservercore, 17-ea-24-jdk, 17-ea-24, 17-ea-jdk, 17-ea, 17-jdk, 17
+Tags: 22-ea-18-jdk-nanoserver-1809, 22-ea-18-nanoserver-1809, 22-ea-jdk-nanoserver-1809, 22-ea-nanoserver-1809, 22-jdk-nanoserver-1809, 22-nanoserver-1809
+SharedTags: 22-ea-18-jdk-nanoserver, 22-ea-18-nanoserver, 22-ea-jdk-nanoserver, 22-ea-nanoserver, 22-jdk-nanoserver, 22-nanoserver
Architectures: windows-amd64
-GitCommit: 34b09b2cbfa0edc7930818ea4ff070e3d42d5f89
-Directory: 17/jdk/windows/windowsservercore-ltsc2016
-Constraints: windowsservercore-ltsc2016
-
-Tags: 17-ea-24-jdk-nanoserver-1809, 17-ea-24-nanoserver-1809, 17-ea-jdk-nanoserver-1809, 17-ea-nanoserver-1809, 17-jdk-nanoserver-1809, 17-nanoserver-1809
-SharedTags: 17-ea-24-jdk-nanoserver, 17-ea-24-nanoserver, 17-ea-jdk-nanoserver, 17-ea-nanoserver, 17-jdk-nanoserver, 17-nanoserver
-Architectures: windows-amd64
-GitCommit: 34b09b2cbfa0edc7930818ea4ff070e3d42d5f89
-Directory: 17/jdk/windows/nanoserver-1809
-Constraints: nanoserver-1809, windowsservercore-1809
-
-Tags: 16.0.1-jdk-oraclelinux8, 16.0.1-oraclelinux8, 16.0-jdk-oraclelinux8, 16.0-oraclelinux8, 16-jdk-oraclelinux8, 16-oraclelinux8, jdk-oraclelinux8, oraclelinux8, 16.0.1-jdk-oracle, 16.0.1-oracle, 16.0-jdk-oracle, 16.0-oracle, 16-jdk-oracle, 16-oracle, jdk-oracle, oracle
-SharedTags: 16.0.1-jdk, 16.0.1, 16.0-jdk, 16.0, 16-jdk, 16, jdk, latest
-Architectures: amd64, arm64v8
-GitCommit: 277bd48c8482ecbc70225442328ef34a7c8ff139
-Directory: 16/jdk/oraclelinux8
-
-Tags: 16.0.1-jdk-oraclelinux7, 16.0.1-oraclelinux7, 16.0-jdk-oraclelinux7, 16.0-oraclelinux7, 16-jdk-oraclelinux7, 16-oraclelinux7, jdk-oraclelinux7, oraclelinux7
-Architectures: amd64, arm64v8
-GitCommit: 277bd48c8482ecbc70225442328ef34a7c8ff139
-Directory: 16/jdk/oraclelinux7
-
-Tags: 16.0.1-jdk-buster, 16.0.1-buster, 16.0-jdk-buster, 16.0-buster, 16-jdk-buster, 16-buster, jdk-buster, buster
-Architectures: amd64, arm64v8
-GitCommit: 277bd48c8482ecbc70225442328ef34a7c8ff139
-Directory: 16/jdk/buster
-
-Tags: 16.0.1-jdk-slim-buster, 16.0.1-slim-buster, 16.0-jdk-slim-buster, 16.0-slim-buster, 16-jdk-slim-buster, 16-slim-buster, jdk-slim-buster, slim-buster, 16.0.1-jdk-slim, 16.0.1-slim, 16.0-jdk-slim, 16.0-slim, 16-jdk-slim, 16-slim, jdk-slim, slim
-Architectures: amd64, arm64v8
-GitCommit: 277bd48c8482ecbc70225442328ef34a7c8ff139
-Directory: 16/jdk/slim-buster
-
-Tags: 16.0.1-jdk-windowsservercore-1809, 16.0.1-windowsservercore-1809, 16.0-jdk-windowsservercore-1809, 16.0-windowsservercore-1809, 16-jdk-windowsservercore-1809, 16-windowsservercore-1809, jdk-windowsservercore-1809, windowsservercore-1809
-SharedTags: 16.0.1-jdk-windowsservercore, 16.0.1-windowsservercore, 16.0-jdk-windowsservercore, 16.0-windowsservercore, 16-jdk-windowsservercore, 16-windowsservercore, jdk-windowsservercore, windowsservercore, 16.0.1-jdk, 16.0.1, 16.0-jdk, 16.0, 16-jdk, 16, jdk, latest
-Architectures: windows-amd64
-GitCommit: 277bd48c8482ecbc70225442328ef34a7c8ff139
-Directory: 16/jdk/windows/windowsservercore-1809
-Constraints: windowsservercore-1809
-
-Tags: 16.0.1-jdk-windowsservercore-ltsc2016, 16.0.1-windowsservercore-ltsc2016, 16.0-jdk-windowsservercore-ltsc2016, 16.0-windowsservercore-ltsc2016, 16-jdk-windowsservercore-ltsc2016, 16-windowsservercore-ltsc2016, jdk-windowsservercore-ltsc2016, windowsservercore-ltsc2016
-SharedTags: 16.0.1-jdk-windowsservercore, 16.0.1-windowsservercore, 16.0-jdk-windowsservercore, 16.0-windowsservercore, 16-jdk-windowsservercore, 16-windowsservercore, jdk-windowsservercore, windowsservercore, 16.0.1-jdk, 16.0.1, 16.0-jdk, 16.0, 16-jdk, 16, jdk, latest
-Architectures: windows-amd64
-GitCommit: 277bd48c8482ecbc70225442328ef34a7c8ff139
-Directory: 16/jdk/windows/windowsservercore-ltsc2016
-Constraints: windowsservercore-ltsc2016
-
-Tags: 16.0.1-jdk-nanoserver-1809, 16.0.1-nanoserver-1809, 16.0-jdk-nanoserver-1809, 16.0-nanoserver-1809, 16-jdk-nanoserver-1809, 16-nanoserver-1809, jdk-nanoserver-1809, nanoserver-1809
-SharedTags: 16.0.1-jdk-nanoserver, 16.0.1-nanoserver, 16.0-jdk-nanoserver, 16.0-nanoserver, 16-jdk-nanoserver, 16-nanoserver, jdk-nanoserver, nanoserver
-Architectures: windows-amd64
-GitCommit: 277bd48c8482ecbc70225442328ef34a7c8ff139
-Directory: 16/jdk/windows/nanoserver-1809
-Constraints: nanoserver-1809, windowsservercore-1809
-
-Tags: 11.0.11-9-jdk-oraclelinux8, 11.0.11-9-oraclelinux8, 11.0.11-jdk-oraclelinux8, 11.0.11-oraclelinux8, 11.0-jdk-oraclelinux8, 11.0-oraclelinux8, 11-jdk-oraclelinux8, 11-oraclelinux8, 11.0.11-9-jdk-oracle, 11.0.11-9-oracle, 11.0.11-jdk-oracle, 11.0.11-oracle, 11.0-jdk-oracle, 11.0-oracle, 11-jdk-oracle, 11-oracle
-Architectures: amd64, arm64v8
-GitCommit: 2bff20bd81e3ce1172d3adefcfb5cb994c8e0e4d
-Directory: 11/jdk/oraclelinux8
-
-Tags: 11.0.11-9-jdk-oraclelinux7, 11.0.11-9-oraclelinux7, 11.0.11-jdk-oraclelinux7, 11.0.11-oraclelinux7, 11.0-jdk-oraclelinux7, 11.0-oraclelinux7, 11-jdk-oraclelinux7, 11-oraclelinux7
-Architectures: amd64, arm64v8
-GitCommit: 2bff20bd81e3ce1172d3adefcfb5cb994c8e0e4d
-Directory: 11/jdk/oraclelinux7
-
-Tags: 11.0.11-9-jdk-buster, 11.0.11-9-buster, 11.0.11-jdk-buster, 11.0.11-buster, 11.0-jdk-buster, 11.0-buster, 11-jdk-buster, 11-buster
-SharedTags: 11.0.11-9-jdk, 11.0.11-9, 11.0.11-jdk, 11.0.11, 11.0-jdk, 11.0, 11-jdk, 11
-Architectures: amd64, arm64v8
-GitCommit: 2bff20bd81e3ce1172d3adefcfb5cb994c8e0e4d
-Directory: 11/jdk/buster
-
-Tags: 11.0.11-9-jdk-slim-buster, 11.0.11-9-slim-buster, 11.0.11-jdk-slim-buster, 11.0.11-slim-buster, 11.0-jdk-slim-buster, 11.0-slim-buster, 11-jdk-slim-buster, 11-slim-buster, 11.0.11-9-jdk-slim, 11.0.11-9-slim, 11.0.11-jdk-slim, 11.0.11-slim, 11.0-jdk-slim, 11.0-slim, 11-jdk-slim, 11-slim
-Architectures: amd64, arm64v8
-GitCommit: 2bff20bd81e3ce1172d3adefcfb5cb994c8e0e4d
-Directory: 11/jdk/slim-buster
-
-Tags: 11.0.11-9-jdk-windowsservercore-1809, 11.0.11-9-windowsservercore-1809, 11.0.11-jdk-windowsservercore-1809, 11.0.11-windowsservercore-1809, 11.0-jdk-windowsservercore-1809, 11.0-windowsservercore-1809, 11-jdk-windowsservercore-1809, 11-windowsservercore-1809
-SharedTags: 11.0.11-9-jdk-windowsservercore, 11.0.11-9-windowsservercore, 11.0.11-jdk-windowsservercore, 11.0.11-windowsservercore, 11.0-jdk-windowsservercore, 11.0-windowsservercore, 11-jdk-windowsservercore, 11-windowsservercore, 11.0.11-9-jdk, 11.0.11-9, 11.0.11-jdk, 11.0.11, 11.0-jdk, 11.0, 11-jdk, 11
-Architectures: windows-amd64
-GitCommit: 2bff20bd81e3ce1172d3adefcfb5cb994c8e0e4d
-Directory: 11/jdk/windows/windowsservercore-1809
-Constraints: windowsservercore-1809
-
-Tags: 11.0.11-9-jdk-windowsservercore-ltsc2016, 11.0.11-9-windowsservercore-ltsc2016, 11.0.11-jdk-windowsservercore-ltsc2016, 11.0.11-windowsservercore-ltsc2016, 11.0-jdk-windowsservercore-ltsc2016, 11.0-windowsservercore-ltsc2016, 11-jdk-windowsservercore-ltsc2016, 11-windowsservercore-ltsc2016
-SharedTags: 11.0.11-9-jdk-windowsservercore, 11.0.11-9-windowsservercore, 11.0.11-jdk-windowsservercore, 11.0.11-windowsservercore, 11.0-jdk-windowsservercore, 11.0-windowsservercore, 11-jdk-windowsservercore, 11-windowsservercore, 11.0.11-9-jdk, 11.0.11-9, 11.0.11-jdk, 11.0.11, 11.0-jdk, 11.0, 11-jdk, 11
-Architectures: windows-amd64
-GitCommit: 2bff20bd81e3ce1172d3adefcfb5cb994c8e0e4d
-Directory: 11/jdk/windows/windowsservercore-ltsc2016
-Constraints: windowsservercore-ltsc2016
-
-Tags: 11.0.11-9-jdk-nanoserver-1809, 11.0.11-9-nanoserver-1809, 11.0.11-jdk-nanoserver-1809, 11.0.11-nanoserver-1809, 11.0-jdk-nanoserver-1809, 11.0-nanoserver-1809, 11-jdk-nanoserver-1809, 11-nanoserver-1809
-SharedTags: 11.0.11-9-jdk-nanoserver, 11.0.11-9-nanoserver, 11.0.11-jdk-nanoserver, 11.0.11-nanoserver, 11.0-jdk-nanoserver, 11.0-nanoserver, 11-jdk-nanoserver, 11-nanoserver
-Architectures: windows-amd64
-GitCommit: 2bff20bd81e3ce1172d3adefcfb5cb994c8e0e4d
-Directory: 11/jdk/windows/nanoserver-1809
-Constraints: nanoserver-1809, windowsservercore-1809
-
-Tags: 11.0.11-9-jre-buster, 11.0.11-jre-buster, 11.0-jre-buster, 11-jre-buster
-SharedTags: 11.0.11-9-jre, 11.0.11-jre, 11.0-jre, 11-jre
-Architectures: amd64, arm64v8
-GitCommit: e1db2c7a51d718978eea6ee608e1dc687627fba4
-Directory: 11/jre/buster
-
-Tags: 11.0.11-9-jre-slim-buster, 11.0.11-jre-slim-buster, 11.0-jre-slim-buster, 11-jre-slim-buster, 11.0.11-9-jre-slim, 11.0.11-jre-slim, 11.0-jre-slim, 11-jre-slim
-Architectures: amd64, arm64v8
-GitCommit: e1db2c7a51d718978eea6ee608e1dc687627fba4
-Directory: 11/jre/slim-buster
-
-Tags: 11.0.11-9-jre-windowsservercore-1809, 11.0.11-jre-windowsservercore-1809, 11.0-jre-windowsservercore-1809, 11-jre-windowsservercore-1809
-SharedTags: 11.0.11-9-jre-windowsservercore, 11.0.11-jre-windowsservercore, 11.0-jre-windowsservercore, 11-jre-windowsservercore, 11.0.11-9-jre, 11.0.11-jre, 11.0-jre, 11-jre
-Architectures: windows-amd64
-GitCommit: e1db2c7a51d718978eea6ee608e1dc687627fba4
-Directory: 11/jre/windows/windowsservercore-1809
-Constraints: windowsservercore-1809
-
-Tags: 11.0.11-9-jre-windowsservercore-ltsc2016, 11.0.11-jre-windowsservercore-ltsc2016, 11.0-jre-windowsservercore-ltsc2016, 11-jre-windowsservercore-ltsc2016
-SharedTags: 11.0.11-9-jre-windowsservercore, 11.0.11-jre-windowsservercore, 11.0-jre-windowsservercore, 11-jre-windowsservercore, 11.0.11-9-jre, 11.0.11-jre, 11.0-jre, 11-jre
-Architectures: windows-amd64
-GitCommit: e1db2c7a51d718978eea6ee608e1dc687627fba4
-Directory: 11/jre/windows/windowsservercore-ltsc2016
-Constraints: windowsservercore-ltsc2016
-
-Tags: 11.0.11-9-jre-nanoserver-1809, 11.0.11-jre-nanoserver-1809, 11.0-jre-nanoserver-1809, 11-jre-nanoserver-1809
-SharedTags: 11.0.11-9-jre-nanoserver, 11.0.11-jre-nanoserver, 11.0-jre-nanoserver, 11-jre-nanoserver
-Architectures: windows-amd64
-GitCommit: e1db2c7a51d718978eea6ee608e1dc687627fba4
-Directory: 11/jre/windows/nanoserver-1809
-Constraints: nanoserver-1809, windowsservercore-1809
-
-Tags: 8u292-jdk-oraclelinux8, 8u292-oraclelinux8, 8-jdk-oraclelinux8, 8-oraclelinux8, 8u292-jdk-oracle, 8u292-oracle, 8-jdk-oracle, 8-oracle
-Architectures: amd64, arm64v8
-GitCommit: 765a1c4dd6fa4fd9c2a0cf540e9c17ca73eb227b
-Directory: 8/jdk/oraclelinux8
-
-Tags: 8u292-jdk-oraclelinux7, 8u292-oraclelinux7, 8-jdk-oraclelinux7, 8-oraclelinux7
-Architectures: amd64, arm64v8
-GitCommit: 765a1c4dd6fa4fd9c2a0cf540e9c17ca73eb227b
-Directory: 8/jdk/oraclelinux7
-
-Tags: 8u292-jdk-buster, 8u292-buster, 8-jdk-buster, 8-buster
-SharedTags: 8u292-jdk, 8u292, 8-jdk, 8
-Architectures: amd64, arm64v8
-GitCommit: 765a1c4dd6fa4fd9c2a0cf540e9c17ca73eb227b
-Directory: 8/jdk/buster
-
-Tags: 8u292-jdk-slim-buster, 8u292-slim-buster, 8-jdk-slim-buster, 8-slim-buster, 8u292-jdk-slim, 8u292-slim, 8-jdk-slim, 8-slim
-Architectures: amd64, arm64v8
-GitCommit: 765a1c4dd6fa4fd9c2a0cf540e9c17ca73eb227b
-Directory: 8/jdk/slim-buster
-
-Tags: 8u292-jdk-windowsservercore-1809, 8u292-windowsservercore-1809, 8-jdk-windowsservercore-1809, 8-windowsservercore-1809
-SharedTags: 8u292-jdk-windowsservercore, 8u292-windowsservercore, 8-jdk-windowsservercore, 8-windowsservercore, 8u292-jdk, 8u292, 8-jdk, 8
-Architectures: windows-amd64
-GitCommit: 765a1c4dd6fa4fd9c2a0cf540e9c17ca73eb227b
-Directory: 8/jdk/windows/windowsservercore-1809
-Constraints: windowsservercore-1809
-
-Tags: 8u292-jdk-windowsservercore-ltsc2016, 8u292-windowsservercore-ltsc2016, 8-jdk-windowsservercore-ltsc2016, 8-windowsservercore-ltsc2016
-SharedTags: 8u292-jdk-windowsservercore, 8u292-windowsservercore, 8-jdk-windowsservercore, 8-windowsservercore, 8u292-jdk, 8u292, 8-jdk, 8
-Architectures: windows-amd64
-GitCommit: 765a1c4dd6fa4fd9c2a0cf540e9c17ca73eb227b
-Directory: 8/jdk/windows/windowsservercore-ltsc2016
-Constraints: windowsservercore-ltsc2016
-
-Tags: 8u292-jdk-nanoserver-1809, 8u292-nanoserver-1809, 8-jdk-nanoserver-1809, 8-nanoserver-1809
-SharedTags: 8u292-jdk-nanoserver, 8u292-nanoserver, 8-jdk-nanoserver, 8-nanoserver
-Architectures: windows-amd64
-GitCommit: 765a1c4dd6fa4fd9c2a0cf540e9c17ca73eb227b
-Directory: 8/jdk/windows/nanoserver-1809
-Constraints: nanoserver-1809, windowsservercore-1809
-
-Tags: 8u292-jre-buster, 8-jre-buster
-SharedTags: 8u292-jre, 8-jre
-Architectures: amd64, arm64v8
-GitCommit: 765a1c4dd6fa4fd9c2a0cf540e9c17ca73eb227b
-Directory: 8/jre/buster
-
-Tags: 8u292-jre-slim-buster, 8-jre-slim-buster, 8u292-jre-slim, 8-jre-slim
-Architectures: amd64, arm64v8
-GitCommit: 765a1c4dd6fa4fd9c2a0cf540e9c17ca73eb227b
-Directory: 8/jre/slim-buster
-
-Tags: 8u292-jre-windowsservercore-1809, 8-jre-windowsservercore-1809
-SharedTags: 8u292-jre-windowsservercore, 8-jre-windowsservercore, 8u292-jre, 8-jre
-Architectures: windows-amd64
-GitCommit: 765a1c4dd6fa4fd9c2a0cf540e9c17ca73eb227b
-Directory: 8/jre/windows/windowsservercore-1809
-Constraints: windowsservercore-1809
-
-Tags: 8u292-jre-windowsservercore-ltsc2016, 8-jre-windowsservercore-ltsc2016
-SharedTags: 8u292-jre-windowsservercore, 8-jre-windowsservercore, 8u292-jre, 8-jre
-Architectures: windows-amd64
-GitCommit: 765a1c4dd6fa4fd9c2a0cf540e9c17ca73eb227b
-Directory: 8/jre/windows/windowsservercore-ltsc2016
-Constraints: windowsservercore-ltsc2016
-
-Tags: 8u292-jre-nanoserver-1809, 8-jre-nanoserver-1809
-SharedTags: 8u292-jre-nanoserver, 8-jre-nanoserver
-Architectures: windows-amd64
-GitCommit: 765a1c4dd6fa4fd9c2a0cf540e9c17ca73eb227b
-Directory: 8/jre/windows/nanoserver-1809
+GitCommit: 577abd2ab9161bcadb1d7b64a26fc89ae9f34379
+Directory: 22/jdk/windows/nanoserver-1809
Constraints: nanoserver-1809, windowsservercore-1809
diff --git a/library/opensuse b/library/opensuse
deleted file mode 100644
index e1c159d97a..0000000000
--- a/library/opensuse
+++ /dev/null
@@ -1,6 +0,0 @@
-Maintainers: Flavio Castelli (@flavio),
- Aleksa Sarai (@cyphar),
- Jordi Massaguer Pla (@jordimassaguerpla),
- David Cassany Viladomat (@davidcassany),
- Fabian Vogt (@Vogtinator)
-GitRepo: https://github.com/openSUSE/docker-containers-build.git
diff --git a/library/oraclelinux b/library/oraclelinux
index a814a59f76..ae37616a96 100644
--- a/library/oraclelinux
+++ b/library/oraclelinux
@@ -4,12 +4,20 @@ GitCommit: 5c8a1c296acd6e90487cd261d16cf85fd6bcb73f
GitFetch: refs/heads/master
# https://github.com/oracle/container-images/tree/dist-amd64
amd64-GitFetch: refs/heads/dist-amd64
-amd64-GitCommit: 205d5068a197cdd708055526e24983a55b6786e3
+amd64-GitCommit: a6899fe3d6752118cfa1d57210e4de317f617891
# https://github.com/oracle/container-images/tree/dist-arm64v8
arm64v8-GitFetch: refs/heads/dist-arm64v8
-arm64v8-GitCommit: 7e959182c68121e446bf7a033fd6219a4256edc2
+arm64v8-GitCommit: 21bab0b84259a0082fdcf71f744f5f106ea376a2
-Tags: 8.4, 8
+Tags: 9
+Architectures: amd64, arm64v8
+Directory: 9
+
+Tags: 9-slim
+Architectures: amd64, arm64v8
+Directory: 9-slim
+
+Tags: 8.8, 8
Architectures: amd64, arm64v8
Directory: 8
@@ -17,6 +25,10 @@ Tags: 8-slim
Architectures: amd64, arm64v8
Directory: 8-slim
+Tags: 8-slim-fips
+Architectures: amd64, arm64v8
+Directory: 8-slim-fips
+
Tags: 7.9, 7
Architectures: amd64, arm64v8
Directory: 7
@@ -25,10 +37,6 @@ Tags: 7-slim
Architectures: amd64, arm64v8
Directory: 7-slim
-Tags: 6.10, 6
-Architectures: amd64
-Directory: 6
-
-Tags: 6-slim
-Architectures: amd64
-Directory: 6-slim
+Tags: 7-slim-fips
+Architectures: amd64, arm64v8
+Directory: 7-slim-fips
diff --git a/library/orientdb b/library/orientdb
index 1c14fe18bb..8dc9461bb3 100644
--- a/library/orientdb
+++ b/library/orientdb
@@ -1,53 +1,45 @@
Maintainers: Luigi Dell'Aquila (@luigidellaquila)
-Tags: 3.2.0, 3.2, latest
+Tags: 3.2.23, 3.2, latest
+Architectures: amd64, arm32v7, arm64v8
GitRepo: https://github.com/orientechnologies/orientdb-docker.git
-GitCommit: bb81d851b336fdee4bdaaa6ce9ad6566e91e3c4f
-Directory: release/3.2.x/3.2.0
+GitCommit: 8b3809e5012ff7fd5b929b1b198530b0d9647879
+Directory: release/3.2.x/3.2.23
-Tags: 3.2.0-tp3, 3.2-tp3
+Tags: 3.2.23-tp3, 3.2-tp3
+Architectures: amd64, arm32v7, arm64v8
GitRepo: https://github.com/orientechnologies/orientdb-docker.git
-GitCommit: bb81d851b336fdee4bdaaa6ce9ad6566e91e3c4f
-Directory: release/3.2.x/3.2.0-tp3
+GitCommit: 8b3809e5012ff7fd5b929b1b198530b0d9647879
+Directory: release/3.2.x/3.2.23-tp3
-Tags: 3.1.12, 3.1
+Tags: 3.1.20, 3.1
GitRepo: https://github.com/orientechnologies/orientdb-docker.git
-GitCommit: bb81d851b336fdee4bdaaa6ce9ad6566e91e3c4f
-Directory: release/3.1.x/3.1.12
+GitCommit: a8a42acbe19dad60a051afe08ed625e66587dd37
+Directory: release/3.1.x/3.1.20
-Tags: 3.1.12-tp3, 3.1-tp3
+Tags: 3.1.20-tp3, 3.1-tp3
GitRepo: https://github.com/orientechnologies/orientdb-docker.git
-GitCommit: bb81d851b336fdee4bdaaa6ce9ad6566e91e3c4f
-Directory: release/3.1.x/3.1.12-tp3
+GitCommit: a8a42acbe19dad60a051afe08ed625e66587dd37
+Directory: release/3.1.x/3.1.20-tp3
-Tags: 3.0.37, 3.0
+Tags: 3.0.44, 3.0
GitRepo: https://github.com/orientechnologies/orientdb-docker.git
-GitCommit: b9f85393f7c8a3c37dbde7c9015fc25fb5a9c433
-Directory: release/3.0.x/3.0.37
+GitCommit: a8a42acbe19dad60a051afe08ed625e66587dd37
+Directory: release/3.0.x/3.0.44
-Tags: 3.0.37-tp3, 3.0-tp3
+Tags: 3.0.44-tp3, 3.0-tp3
GitRepo: https://github.com/orientechnologies/orientdb-docker.git
-GitCommit: b9f85393f7c8a3c37dbde7c9015fc25fb5a9c433
-Directory: release/3.0.x/3.0.37-tp3
+GitCommit: a8a42acbe19dad60a051afe08ed625e66587dd37
+Directory: release/3.0.x/3.0.44-tp3
Tags: 2.2.37, 2.2
GitRepo: https://github.com/orientechnologies/orientdb-docker.git
-GitCommit: 0562973e21d0992bc799dcb7b64b1978b7e32ac3
+GitCommit: a8a42acbe19dad60a051afe08ed625e66587dd37
Directory: release/2.2.x/2.2.37
Tags: 2.2.37-spatial
GitRepo: https://github.com/orientechnologies/orientdb-docker.git
-GitCommit: 0562973e21d0992bc799dcb7b64b1978b7e32ac3
+GitCommit: a8a42acbe19dad60a051afe08ed625e66587dd37
Directory: release/2.2.x/2.2.37-spatial
-Tags: 2.1.25, 2.1
-GitRepo: https://github.com/orientechnologies/orientdb-docker.git
-GitCommit: 0562973e21d0992bc799dcb7b64b1978b7e32ac3
-Directory: release/2.1.x
-
-Tags: 2.0.18, 2.0
-GitRepo: https://github.com/orientechnologies/orientdb-docker.git
-GitCommit: 0562973e21d0992bc799dcb7b64b1978b7e32ac3
-Directory: release/2.0.x
-
diff --git a/library/percona b/library/percona
index 1d195ceab1..d4566a7f05 100644
--- a/library/percona
+++ b/library/percona
@@ -1,43 +1,43 @@
Maintainers: Evgeniy Patlan (@EvgeniyPatlan),
Viacheslav Sarzhan (@hors),
- Mykola Marzhan (@delgod),
Oleksandr Miroshnychenko (@vorsel),
- Illia Pshonkin (@Sudokamikaze)
+ Vadim Yalovets (@adivinho),
+ Surabhi Bhat (@surbhat1595)
GitRepo: https://github.com/percona/percona-docker.git
GitFetch: refs/heads/main
Architectures: amd64
-Tags: 8.0.23-14-centos, 8.0-centos, 8-centos, 8.0.23-14, 8.0, 8, ps-8.0.23-14, ps-8.0, ps-8
-GitCommit: 93b3cf2b7693c9dda94178fb3ce1d630e7f47a72
+Tags: 8.0.34-26-centos, 8.0-centos, 8-centos, 8.0.34-26, 8.0, 8, ps-8.0.34-26, ps-8.0, ps-8
+GitCommit: 565f49b8be3a1efa056fde70e10d638ad159516a
Directory: percona-server-8.0
File: Dockerfile
-Tags: 5.7.33-centos, 5.7-centos, 5-centos, centos, 5.7.33, 5.7, 5, ps-5.7.33, ps-5.7, ps-5, latest
-GitCommit: 9551c99eb560904aa3ea8a69c1e7f7fff3554c2b
+Tags: 5.7.43-centos, 5.7-centos, 5-centos, centos, 5.7.43, 5.7, 5, ps-5.7.43, ps-5.7, ps-5
+GitCommit: a11f997b281686769392ea14aa02daee97320c51
Directory: percona-server-5.7
File: Dockerfile-dockerhub
-Tags: 5.6.51-centos, 5.6-centos, 5.6.51, 5.6, ps-5.6.51, ps-5.6
-GitCommit: f31a00a8b59ee17f9305403b109fd1eb50256493
+Tags: 5.6.51-2-centos, 5.6-centos, 5.6.51-2, 5.6, ps-5.6.51-2, ps-5.6
+GitCommit: 4510d49bcce5cfce58a42c198d55399b144add83
Directory: percona-server-5.6
File: Dockerfile-dockerhub
-Tags: psmdb-4.4.5, psmdb-4.4
-GitCommit: 4bc78f495f344a3c0cef5a321d52cee5b95047b9
+Tags: psmdb-6.0.6, psmdb-6.0
+GitCommit: 80ab68b2d84c7c17c8cbc07edb35e35399fd0a54
+Directory: percona-server-mongodb-6.0
+File: Dockerfile
+
+Tags: psmdb-5.0.18, psmdb-5.0
+GitCommit: 80ab68b2d84c7c17c8cbc07edb35e35399fd0a54
+Directory: percona-server-mongodb-5.0
+File: Dockerfile
+
+Tags: psmdb-4.4.22, psmdb-4.4
+GitCommit: 80ab68b2d84c7c17c8cbc07edb35e35399fd0a54
Directory: percona-server-mongodb-4.4
File: Dockerfile
-Tags: psmdb-4.2.14, psmdb-4.2
-GitCommit: 5a7b7589afe005db9e296ebb2970225b5d5eb926
+Tags: psmdb-4.2.24, psmdb-4.2
+GitCommit: 80ab68b2d84c7c17c8cbc07edb35e35399fd0a54
Directory: percona-server-mongodb-4.2
File: Dockerfile
-
-Tags: psmdb-4.0.23, psmdb-4.0
-GitCommit: 123ac8939a7d8cbf265fb8a122ff1fe469445d93
-Directory: percona-server-mongodb-4.0
-File: Dockerfile
-
-Tags: psmdb-3.6.23, psmdb-3.6
-GitCommit: b32c7e632fe0d8b058ce32c0430a1783cfd557a0
-Directory: percona-server-mongodb-3.6
-File: Dockerfile
diff --git a/library/perl b/library/perl
index d0bac3c198..5d82ff758e 100644
--- a/library/perl
+++ b/library/perl
@@ -1,443 +1,137 @@
Maintainers: Peter Martini (@PeterMartini),
Zak B. Elep (@zakame)
GitRepo: https://github.com/perl/docker-perl.git
-GitCommit: 311f05366d91427d289740dd15fb9401dc4347ef
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: d2d8aab002a6637612ed920fd6bacf21db9025a1
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-Tags: 5.34.0, 5.34, 5, latest, 5.34.0-buster, 5.34-buster, 5-buster, buster
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-Directory: 5.034.000-main-buster
+Tags: 5.38.0, 5.38, 5, latest, stable, 5.38.0-bookworm, 5.38-bookworm, 5-bookworm, bookworm, stable-bookworm
+Directory: 5.038.000-main-bookworm
-Tags: 5.34.0-slim, 5.34-slim, 5-slim, slim, 5.34.0-slim-buster, 5.34-slim-buster, 5-slim-buster, slim-buster
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-Directory: 5.034.000-slim-buster
+Tags: 5.38.0-bullseye, 5.38-bullseye, 5-bullseye, bullseye, stable-bullseye
+Directory: 5.038.000-main-bullseye
-Tags: 5.34.0-threaded, 5.34-threaded, 5-threaded, threaded, 5.34.0-threaded-buster, 5.34-threaded-buster, 5-threaded-buster, threaded-buster
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-Directory: 5.034.000-main,threaded-buster
-
-Tags: 5.34.0-slim-threaded, 5.34-slim-threaded, 5-slim-threaded, slim-threaded, 5.34.0-slim-threaded-buster, 5.34-slim-threaded-buster, 5-slim-threaded-buster, slim-threaded-buster
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-Directory: 5.034.000-slim,threaded-buster
-
-Tags: 5.32.1, 5.32, 5.32.1-buster, 5.32-buster
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-Directory: 5.032.001-main-buster
-
-Tags: 5.32.1-stretch, 5.32-stretch, 5-stretch, stretch
+Tags: 5.38.0-buster, 5.38-buster, 5-buster, buster, stable-buster
Architectures: amd64, arm32v7, arm64v8, i386
-Directory: 5.032.001-main-stretch
+Directory: 5.038.000-main-buster
-Tags: 5.32.1-slim, 5.32-slim, 5.32.1-slim-buster, 5.32-slim-buster
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-Directory: 5.032.001-slim-buster
+Tags: 5.38.0-slim, 5.38-slim, 5-slim, slim, stable-slim, 5.38.0-slim-bookworm, 5.38-slim-bookworm, 5-slim-bookworm, slim-bookworm, stable-slim-bookworm
+Directory: 5.038.000-slim-bookworm
-Tags: 5.32.1-slim-stretch, 5.32-slim-stretch, 5-slim-stretch, slim-stretch
+Tags: 5.38.0-slim-bullseye, 5.38-slim-bullseye, 5-slim-bullseye, slim-bullseye, stable-slim-bullseye
+Directory: 5.038.000-slim-bullseye
+
+Tags: 5.38.0-slim-buster, 5.38-slim-buster, 5-slim-buster, slim-buster, stable-slim-buster
Architectures: amd64, arm32v7, arm64v8, i386
-Directory: 5.032.001-slim-stretch
+Directory: 5.038.000-slim-buster
-Tags: 5.32.1-threaded, 5.32-threaded, 5.32.1-threaded-buster, 5.32-threaded-buster
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-Directory: 5.032.001-main,threaded-buster
+Tags: 5.38.0-threaded, 5.38-threaded, 5-threaded, threaded, stable-threaded, 5.38.0-threaded-bookworm, 5.38-threaded-bookworm, 5-threaded-bookworm, threaded-bookworm, stable-threaded-bookworm
+Directory: 5.038.000-main,threaded-bookworm
-Tags: 5.32.1-threaded-stretch, 5.32-threaded-stretch, 5-threaded-stretch, threaded-stretch
+Tags: 5.38.0-threaded-bullseye, 5.38-threaded-bullseye, 5-threaded-bullseye, threaded-bullseye, stable-threaded-bullseye
+Directory: 5.038.000-main,threaded-bullseye
+
+Tags: 5.38.0-threaded-buster, 5.38-threaded-buster, 5-threaded-buster, threaded-buster, stable-threaded-buster
Architectures: amd64, arm32v7, arm64v8, i386
-Directory: 5.032.001-main,threaded-stretch
+Directory: 5.038.000-main,threaded-buster
-Tags: 5.32.1-slim-threaded, 5.32-slim-threaded, 5.32.1-slim-threaded-buster, 5.32-slim-threaded-buster
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-Directory: 5.032.001-slim,threaded-buster
+Tags: 5.38.0-slim-threaded, 5.38-slim-threaded, 5-slim-threaded, slim-threaded, stable-slim-threaded, 5.38.0-slim-threaded-bookworm, 5.38-slim-threaded-bookworm, 5-slim-threaded-bookworm, slim-threaded-bookworm, stable-slim-threaded-bookworm
+Directory: 5.038.000-slim,threaded-bookworm
-Tags: 5.32.1-slim-threaded-stretch, 5.32-slim-threaded-stretch, 5-slim-threaded-stretch, slim-threaded-stretch
+Tags: 5.38.0-slim-threaded-bullseye, 5.38-slim-threaded-bullseye, 5-slim-threaded-bullseye, slim-threaded-bullseye, stable-slim-threaded-bullseye
+Directory: 5.038.000-slim,threaded-bullseye
+
+Tags: 5.38.0-slim-threaded-buster, 5.38-slim-threaded-buster, 5-slim-threaded-buster, slim-threaded-buster, stable-slim-threaded-buster
Architectures: amd64, arm32v7, arm64v8, i386
-Directory: 5.032.001-slim,threaded-stretch
+Directory: 5.038.000-slim,threaded-buster
-Tags: 5.30.3, 5.30, 5.30.3-buster, 5.30-buster
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-Directory: 5.030.003-main-buster
+Tags: 5.36.1, 5.36, 5.36.1-bookworm, 5.36-bookworm
+Directory: 5.036.001-main-bookworm
-Tags: 5.30.3-stretch, 5.30-stretch
+Tags: 5.36.1-bullseye, 5.36-bullseye
+Directory: 5.036.001-main-bullseye
+
+Tags: 5.36.1-buster, 5.36-buster
Architectures: amd64, arm32v7, arm64v8, i386
-Directory: 5.030.003-main-stretch
+Directory: 5.036.001-main-buster
-Tags: 5.30.3-slim, 5.30-slim, 5.30.3-slim-buster, 5.30-slim-buster
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-Directory: 5.030.003-slim-buster
+Tags: 5.36.1-slim, 5.36-slim, 5.36.1-slim-bookworm, 5.36-slim-bookworm
+Directory: 5.036.001-slim-bookworm
-Tags: 5.30.3-slim-stretch, 5.30-slim-stretch
+Tags: 5.36.1-slim-bullseye, 5.36-slim-bullseye
+Directory: 5.036.001-slim-bullseye
+
+Tags: 5.36.1-slim-buster, 5.36-slim-buster
Architectures: amd64, arm32v7, arm64v8, i386
-Directory: 5.030.003-slim-stretch
+Directory: 5.036.001-slim-buster
-Tags: 5.30.3-threaded, 5.30-threaded, 5.30.3-threaded-buster, 5.30-threaded-buster
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-Directory: 5.030.003-main,threaded-buster
+Tags: 5.36.1-threaded, 5.36-threaded, 5.36.1-threaded-bookworm, 5.36-threaded-bookworm
+Directory: 5.036.001-main,threaded-bookworm
-Tags: 5.30.3-threaded-stretch, 5.30-threaded-stretch
+Tags: 5.36.1-threaded-bullseye, 5.36-threaded-bullseye
+Directory: 5.036.001-main,threaded-bullseye
+
+Tags: 5.36.1-threaded-buster, 5.36-threaded-buster
Architectures: amd64, arm32v7, arm64v8, i386
-Directory: 5.030.003-main,threaded-stretch
+Directory: 5.036.001-main,threaded-buster
-Tags: 5.30.3-slim-threaded, 5.30-slim-threaded, 5.30.3-slim-threaded-buster, 5.30-slim-threaded-buster
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-Directory: 5.030.003-slim,threaded-buster
+Tags: 5.36.1-slim-threaded, 5.36-slim-threaded, 5.36.1-slim-threaded-bookworm, 5.36-slim-threaded-bookworm
+Directory: 5.036.001-slim,threaded-bookworm
-Tags: 5.30.3-slim-threaded-stretch, 5.30-slim-threaded-stretch
+Tags: 5.36.1-slim-threaded-bullseye, 5.36-slim-threaded-bullseye
+Directory: 5.036.001-slim,threaded-bullseye
+
+Tags: 5.36.1-slim-threaded-buster, 5.36-slim-threaded-buster
Architectures: amd64, arm32v7, arm64v8, i386
-Directory: 5.030.003-slim,threaded-stretch
+Directory: 5.036.001-slim,threaded-buster
-#
-# THE FOLLOWING (EOL) TAGS ARE INTENDED AS A ONE-TIME BACKFILL/REBUILD
-#
-# (they will be removed after they are successfully rebuilt)
-#
+Tags: 5.34.1, 5.34, 5.34.1-bullseye, 5.34-bullseye
+Directory: 5.034.001-main-bullseye
-Tags: 5.28.3-buster, 5.28-buster
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-Directory: eol/5.028.003-main-buster
-
-Tags: 5.28.3-stretch, 5.28-stretch
+Tags: 5.34.1-buster, 5.34-buster
Architectures: amd64, arm32v7, arm64v8, i386
-Directory: eol/5.028.003-main-stretch
+Directory: 5.034.001-main-buster
-Tags: 5.28.3-slim-buster, 5.28-slim-buster
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-Directory: eol/5.028.003-slim-buster
+Tags: 5.34.1-slim, 5.34-slim, 5.34.1-slim-bullseye, 5.34-slim-bullseye
+Directory: 5.034.001-slim-bullseye
-Tags: 5.28.3-slim-stretch, 5.28-slim-stretch
+Tags: 5.34.1-slim-buster, 5.34-slim-buster
Architectures: amd64, arm32v7, arm64v8, i386
-Directory: eol/5.028.003-slim-stretch
+Directory: 5.034.001-slim-buster
-Tags: 5.28.3-threaded-buster, 5.28-threaded-buster
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-Directory: eol/5.028.003-main,threaded-buster
+Tags: 5.34.1-threaded, 5.34-threaded, 5.34.1-threaded-bullseye, 5.34-threaded-bullseye
+Directory: 5.034.001-main,threaded-bullseye
-Tags: 5.28.3-threaded-stretch, 5.28-threaded-stretch
+Tags: 5.34.1-threaded-buster, 5.34-threaded-buster
Architectures: amd64, arm32v7, arm64v8, i386
-Directory: eol/5.028.003-main,threaded-stretch
+Directory: 5.034.001-main,threaded-buster
-Tags: 5.28.3-slim-threaded-buster, 5.28-slim-threaded-buster
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-Directory: eol/5.028.003-slim,threaded-buster
+Tags: 5.34.1-slim-threaded, 5.34-slim-threaded, 5.34.1-slim-threaded-bullseye, 5.34-slim-threaded-bullseye
+Directory: 5.034.001-slim,threaded-bullseye
-Tags: 5.28.3-slim-threaded-stretch, 5.28-slim-threaded-stretch
+Tags: 5.34.1-slim-threaded-buster, 5.34-slim-threaded-buster
Architectures: amd64, arm32v7, arm64v8, i386
-Directory: eol/5.028.003-slim,threaded-stretch
+Directory: 5.034.001-slim,threaded-buster
-Tags: 5.26.3-buster, 5.26-buster
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-Directory: eol/5.026.003-main-buster
+Tags: 5.39.3, 5.39, devel, 5.39.3-bookworm, 5.39-bookworm, devel-bookworm
+Directory: 5.039.003-main-bookworm
-Tags: 5.26.3-stretch, 5.26-stretch
-Architectures: amd64, arm32v7, arm64v8, i386
-Directory: eol/5.026.003-main-stretch
+Tags: 5.39.3-bullseye, 5.39-bullseye, devel-bullseye
+Directory: 5.039.003-main-bullseye
-Tags: 5.26.3-slim-buster, 5.26-slim-buster
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-Directory: eol/5.026.003-slim-buster
+Tags: 5.39.3-slim, 5.39-slim, devel-slim, 5.39.3-slim-bookworm, 5.39-slim-bookworm, devel-slim-bookworm
+Directory: 5.039.003-slim-bookworm
-Tags: 5.26.3-slim-stretch, 5.26-slim-stretch
-Architectures: amd64, arm32v7, arm64v8, i386
-Directory: eol/5.026.003-slim-stretch
+Tags: 5.39.3-slim-bullseye, 5.39-slim-bullseye, devel-slim-bullseye
+Directory: 5.039.003-slim-bullseye
-Tags: 5.26.3-threaded-buster, 5.26-threaded-buster
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-Directory: eol/5.026.003-main,threaded-buster
+Tags: 5.39.3-threaded, 5.39-threaded, devel-threaded, 5.39.3-threaded-bookworm, 5.39-threaded-bookworm, devel-threaded-bookworm
+Directory: 5.039.003-main,threaded-bookworm
-Tags: 5.26.3-threaded-stretch, 5.26-threaded-stretch
-Architectures: amd64, arm32v7, arm64v8, i386
-Directory: eol/5.026.003-main,threaded-stretch
+Tags: 5.39.3-threaded-bullseye, 5.39-threaded-bullseye, devel-threaded-bullseye
+Directory: 5.039.003-main,threaded-bullseye
-Tags: 5.26.3-slim-threaded-buster, 5.26-slim-threaded-buster
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-Directory: eol/5.026.003-slim,threaded-buster
+Tags: 5.39.3-slim-threaded, 5.39-slim-threaded, devel-slim-threaded, 5.39.3-slim-threaded-bookworm, 5.39-slim-threaded-bookworm, devel-slim-threaded-bookworm
+Directory: 5.039.003-slim,threaded-bookworm
-Tags: 5.26.3-slim-threaded-stretch, 5.26-slim-threaded-stretch
-Architectures: amd64, arm32v7, arm64v8, i386
-Directory: eol/5.026.003-slim,threaded-stretch
-
-Tags: 5.24.4-buster, 5.24-buster
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-Directory: eol/5.024.004-main-buster
-
-Tags: 5.24.4-stretch, 5.24-stretch
-Architectures: amd64, arm32v7, arm64v8, i386
-Directory: eol/5.024.004-main-stretch
-
-Tags: 5.24.4-slim-buster, 5.24-slim-buster
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-Directory: eol/5.024.004-slim-buster
-
-Tags: 5.24.4-slim-stretch, 5.24-slim-stretch
-Architectures: amd64, arm32v7, arm64v8, i386
-Directory: eol/5.024.004-slim-stretch
-
-Tags: 5.24.4-threaded-buster, 5.24-threaded-buster
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-Directory: eol/5.024.004-main,threaded-buster
-
-Tags: 5.24.4-threaded-stretch, 5.24-threaded-stretch
-Architectures: amd64, arm32v7, arm64v8, i386
-Directory: eol/5.024.004-main,threaded-stretch
-
-Tags: 5.24.4-slim-threaded-buster, 5.24-slim-threaded-buster
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-Directory: eol/5.024.004-slim,threaded-buster
-
-Tags: 5.24.4-slim-threaded-stretch, 5.24-slim-threaded-stretch
-Architectures: amd64, arm32v7, arm64v8, i386
-Directory: eol/5.024.004-slim,threaded-stretch
-
-Tags: 5.22.4-buster, 5.22-buster
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-Directory: eol/5.022.004-main-buster
-
-Tags: 5.22.4-stretch, 5.22-stretch
-Architectures: amd64, arm32v7, arm64v8, i386
-Directory: eol/5.022.004-main-stretch
-
-Tags: 5.22.4-slim-buster, 5.22-slim-buster
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-Directory: eol/5.022.004-slim-buster
-
-Tags: 5.22.4-slim-stretch, 5.22-slim-stretch
-Architectures: amd64, arm32v7, arm64v8, i386
-Directory: eol/5.022.004-slim-stretch
-
-Tags: 5.22.4-threaded-buster, 5.22-threaded-buster
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-Directory: eol/5.022.004-main,threaded-buster
-
-Tags: 5.22.4-threaded-stretch, 5.22-threaded-stretch
-Architectures: amd64, arm32v7, arm64v8, i386
-Directory: eol/5.022.004-main,threaded-stretch
-
-Tags: 5.22.4-slim-threaded-buster, 5.22-slim-threaded-buster
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-Directory: eol/5.022.004-slim,threaded-buster
-
-Tags: 5.22.4-slim-threaded-stretch, 5.22-slim-threaded-stretch
-Architectures: amd64, arm32v7, arm64v8, i386
-Directory: eol/5.022.004-slim,threaded-stretch
-
-Tags: 5.20.3-buster, 5.20-buster
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-Directory: eol/5.020.003-main-buster
-
-Tags: 5.20.3-stretch, 5.20-stretch
-Architectures: amd64, arm32v7, arm64v8, i386
-Directory: eol/5.020.003-main-stretch
-
-Tags: 5.20.3-slim-buster, 5.20-slim-buster
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-Directory: eol/5.020.003-slim-buster
-
-Tags: 5.20.3-slim-stretch, 5.20-slim-stretch
-Architectures: amd64, arm32v7, arm64v8, i386
-Directory: eol/5.020.003-slim-stretch
-
-Tags: 5.20.3-threaded-buster, 5.20-threaded-buster
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-Directory: eol/5.020.003-main,threaded-buster
-
-Tags: 5.20.3-threaded-stretch, 5.20-threaded-stretch
-Architectures: amd64, arm32v7, arm64v8, i386
-Directory: eol/5.020.003-main,threaded-stretch
-
-Tags: 5.20.3-slim-threaded-buster, 5.20-slim-threaded-buster
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-Directory: eol/5.020.003-slim,threaded-buster
-
-Tags: 5.20.3-slim-threaded-stretch, 5.20-slim-threaded-stretch
-Architectures: amd64, arm32v7, arm64v8, i386
-Directory: eol/5.020.003-slim,threaded-stretch
-
-Tags: 5.18.4-buster, 5.18-buster
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-Directory: eol/5.018.004-main-buster
-
-Tags: 5.18.4-stretch, 5.18-stretch
-Architectures: amd64, arm32v7, arm64v8, i386
-Directory: eol/5.018.004-main-stretch
-
-Tags: 5.18.4-slim-buster, 5.18-slim-buster
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-Directory: eol/5.018.004-slim-buster
-
-Tags: 5.18.4-slim-stretch, 5.18-slim-stretch
-Architectures: amd64, arm32v7, arm64v8, i386
-Directory: eol/5.018.004-slim-stretch
-
-Tags: 5.18.4-threaded-buster, 5.18-threaded-buster
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-Directory: eol/5.018.004-main,threaded-buster
-
-Tags: 5.18.4-threaded-stretch, 5.18-threaded-stretch
-Architectures: amd64, arm32v7, arm64v8, i386
-Directory: eol/5.018.004-main,threaded-stretch
-
-Tags: 5.18.4-slim-threaded-buster, 5.18-slim-threaded-buster
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-Directory: eol/5.018.004-slim,threaded-buster
-
-Tags: 5.18.4-slim-threaded-stretch, 5.18-slim-threaded-stretch
-Architectures: amd64, arm32v7, arm64v8, i386
-Directory: eol/5.018.004-slim,threaded-stretch
-
-Tags: 5.16.3-buster, 5.16-buster
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-Directory: eol/5.016.003-main-buster
-
-Tags: 5.16.3-stretch, 5.16-stretch
-Architectures: amd64, arm32v7, arm64v8, i386
-Directory: eol/5.016.003-main-stretch
-
-Tags: 5.16.3-slim-buster, 5.16-slim-buster
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-Directory: eol/5.016.003-slim-buster
-
-Tags: 5.16.3-slim-stretch, 5.16-slim-stretch
-Architectures: amd64, arm32v7, arm64v8, i386
-Directory: eol/5.016.003-slim-stretch
-
-Tags: 5.16.3-threaded-buster, 5.16-threaded-buster
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-Directory: eol/5.016.003-main,threaded-buster
-
-Tags: 5.16.3-threaded-stretch, 5.16-threaded-stretch
-Architectures: amd64, arm32v7, arm64v8, i386
-Directory: eol/5.016.003-main,threaded-stretch
-
-Tags: 5.16.3-slim-threaded-buster, 5.16-slim-threaded-buster
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-Directory: eol/5.016.003-slim,threaded-buster
-
-Tags: 5.16.3-slim-threaded-stretch, 5.16-slim-threaded-stretch
-Architectures: amd64, arm32v7, arm64v8, i386
-Directory: eol/5.016.003-slim,threaded-stretch
-
-Tags: 5.14.4-buster, 5.14-buster
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-Directory: eol/5.014.004-main-buster
-
-Tags: 5.14.4-stretch, 5.14-stretch
-Architectures: amd64, arm32v7, arm64v8, i386
-Directory: eol/5.014.004-main-stretch
-
-Tags: 5.14.4-slim-buster, 5.14-slim-buster
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-Directory: eol/5.014.004-slim-buster
-
-Tags: 5.14.4-slim-stretch, 5.14-slim-stretch
-Architectures: amd64, arm32v7, arm64v8, i386
-Directory: eol/5.014.004-slim-stretch
-
-Tags: 5.14.4-threaded-buster, 5.14-threaded-buster
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-Directory: eol/5.014.004-main,threaded-buster
-
-Tags: 5.14.4-threaded-stretch, 5.14-threaded-stretch
-Architectures: amd64, arm32v7, arm64v8, i386
-Directory: eol/5.014.004-main,threaded-stretch
-
-Tags: 5.14.4-slim-threaded-buster, 5.14-slim-threaded-buster
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-Directory: eol/5.014.004-slim,threaded-buster
-
-Tags: 5.14.4-slim-threaded-stretch, 5.14-slim-threaded-stretch
-Architectures: amd64, arm32v7, arm64v8, i386
-Directory: eol/5.014.004-slim,threaded-stretch
-
-Tags: 5.12.5-buster, 5.12-buster
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-Directory: eol/5.012.005-main-buster
-
-Tags: 5.12.5-stretch, 5.12-stretch
-Architectures: amd64, arm32v7, arm64v8, i386
-Directory: eol/5.012.005-main-stretch
-
-Tags: 5.12.5-slim-buster, 5.12-slim-buster
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-Directory: eol/5.012.005-slim-buster
-
-Tags: 5.12.5-slim-stretch, 5.12-slim-stretch
-Architectures: amd64, arm32v7, arm64v8, i386
-Directory: eol/5.012.005-slim-stretch
-
-Tags: 5.12.5-threaded-buster, 5.12-threaded-buster
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-Directory: eol/5.012.005-main,threaded-buster
-
-Tags: 5.12.5-threaded-stretch, 5.12-threaded-stretch
-Architectures: amd64, arm32v7, arm64v8, i386
-Directory: eol/5.012.005-main,threaded-stretch
-
-Tags: 5.12.5-slim-threaded-buster, 5.12-slim-threaded-buster
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-Directory: eol/5.012.005-slim,threaded-buster
-
-Tags: 5.12.5-slim-threaded-stretch, 5.12-slim-threaded-stretch
-Architectures: amd64, arm32v7, arm64v8, i386
-Directory: eol/5.012.005-slim,threaded-stretch
-
-Tags: 5.10.1-buster, 5.10-buster
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-Directory: eol/5.010.001-main-buster
-
-Tags: 5.10.1-stretch, 5.10-stretch
-Architectures: amd64, arm32v7, arm64v8, i386
-Directory: eol/5.010.001-main-stretch
-
-Tags: 5.10.1-slim-buster, 5.10-slim-buster
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-Directory: eol/5.010.001-slim-buster
-
-Tags: 5.10.1-slim-stretch, 5.10-slim-stretch
-Architectures: amd64, arm32v7, arm64v8, i386
-Directory: eol/5.010.001-slim-stretch
-
-Tags: 5.10.1-threaded-buster, 5.10-threaded-buster
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-Directory: eol/5.010.001-main,threaded-buster
-
-Tags: 5.10.1-threaded-stretch, 5.10-threaded-stretch
-Architectures: amd64, arm32v7, arm64v8, i386
-Directory: eol/5.010.001-main,threaded-stretch
-
-Tags: 5.10.1-slim-threaded-buster, 5.10-slim-threaded-buster
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-Directory: eol/5.010.001-slim,threaded-buster
-
-Tags: 5.10.1-slim-threaded-stretch, 5.10-slim-threaded-stretch
-Architectures: amd64, arm32v7, arm64v8, i386
-Directory: eol/5.010.001-slim,threaded-stretch
-
-Tags: 5.8.9-buster, 5.8-buster
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-Directory: eol/5.008.009-main-buster
-
-Tags: 5.8.9-stretch, 5.8-stretch
-Architectures: amd64, arm32v7, arm64v8, i386
-Directory: eol/5.008.009-main-stretch
-
-Tags: 5.8.9-slim-buster, 5.8-slim-buster
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-Directory: eol/5.008.009-slim-buster
-
-Tags: 5.8.9-slim-stretch, 5.8-slim-stretch
-Architectures: amd64, arm32v7, arm64v8, i386
-Directory: eol/5.008.009-slim-stretch
-
-Tags: 5.8.9-threaded-buster, 5.8-threaded-buster
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-Directory: eol/5.008.009-main,threaded-buster
-
-Tags: 5.8.9-threaded-stretch, 5.8-threaded-stretch
-Architectures: amd64, arm32v7, arm64v8, i386
-Directory: eol/5.008.009-main,threaded-stretch
-
-Tags: 5.8.9-slim-threaded-buster, 5.8-slim-threaded-buster
-Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-Directory: eol/5.008.009-slim,threaded-buster
-
-Tags: 5.8.9-slim-threaded-stretch, 5.8-slim-threaded-stretch
-Architectures: amd64, arm32v7, arm64v8, i386
-Directory: eol/5.008.009-slim,threaded-stretch
+Tags: 5.39.3-slim-threaded-bullseye, 5.39-slim-threaded-bullseye, devel-slim-threaded-bullseye
+Directory: 5.039.003-slim,threaded-bullseye
diff --git a/library/photon b/library/photon
index 63970e495a..dc1c3c1a8d 100644
--- a/library/photon
+++ b/library/photon
@@ -1,27 +1,28 @@
-# this file is generated via https://github.com/vmware/photon-docker-image/blob/b018a869c90bb837e15bc97457d26eaedf9f9bed/generate-stackbrew-library.sh
+# this file is generated via https://github.com/vmware/photon-docker-image/blob/7daed48579f09439e736aba7795b12b119862e2a/generate-stackbrew-library.sh
Maintainers: Fabio Rapposelli (@frapposelli),
+ Michelle Wang (@michellew),
Alexey Makhalov (@YustasSwamp)
GitRepo: https://github.com/vmware/photon-docker-image.git
Directory: docker
-Tags: 4.0, 4.0-20210521, latest
+
+Tags: 5.0, 5.0-20230923, latest
Architectures: amd64, arm64v8
-GitFetch: refs/heads/x86_64/4.0-20210521
-GitCommit: dbb4541d4aeab980c8507ae418c8b066509a232e
-arm64v8-GitFetch: refs/heads/aarch64/4.0-20210521
-arm64v8-GitCommit: 993bfd3ed0983bd1b6399001117c0eac2ae11c93
+GitFetch: refs/heads/x86_64/5.0-20230923
+GitCommit: c0d25ad3be1cd40dcbfd3767220be9085f1dd23f
+arm64v8-GitFetch: refs/heads/aarch64/5.0-20230923
+arm64v8-GitCommit: a68aa2ce0ed1584bc07e13826163b8154ca91714
-Tags: 3.0, 3.0-20210521
+Tags: 4.0, 4.0-20230916
Architectures: amd64, arm64v8
-GitFetch: refs/heads/x86_64/3.0-20210521
-GitCommit: 4cc89b1409b4ad883e67c1c2a8e7f46c67537528
-arm64v8-GitFetch: refs/heads/aarch64/3.0-20210521
-arm64v8-GitCommit: 0d55a4875881d9300c71853853fe58d550611a4f
+GitFetch: refs/heads/x86_64/4.0-20230916
+GitCommit: 60a27c92f26c7b9285c3eed17bcb93c97cbd3129
+arm64v8-GitFetch: refs/heads/aarch64/4.0-20230916
+arm64v8-GitCommit: 5d73264a7d82daa28d7cd77418bfbb505315a649
-Tags: 1.0, 1.0-20210521
-GitFetch: refs/heads/1.0-20210521
-GitCommit: 1be8d8afbf0c153aed230538c7518acebed54791
-
-Tags: 2.0, 2.0-20210521
-GitFetch: refs/heads/2.0-20210521
-GitCommit: 5dfbe1f04d7a1be5bf6b0085cbbd0fd0f5fc4ff0
+Tags: 3.0, 3.0-20230923
+Architectures: amd64, arm64v8
+GitFetch: refs/heads/x86_64/3.0-20230923
+GitCommit: a61dffbb1e0537dd11d28b8e1a6a3059586a398e
+arm64v8-GitFetch: refs/heads/aarch64/3.0-20230923
+arm64v8-GitCommit: 9c2b3ffbc0eb9f95e2a639f6cb2fef5454e7eb95
diff --git a/library/php b/library/php
index 121a650275..330909e7ea 100644
--- a/library/php
+++ b/library/php
@@ -1,165 +1,285 @@
-# this file is generated via https://github.com/docker-library/php/blob/c70a901d7f8f0bf6e25d1bf07379783f0c8f5a7d/generate-stackbrew-library.sh
+# this file is generated via https://github.com/docker-library/php/blob/cc901e9594f79c305d9508e5b5df572eb93245b4/generate-stackbrew-library.sh
Maintainers: Tianon Gravi (@tianon),
Joseph Ferguson (@yosifkit)
GitRepo: https://github.com/docker-library/php.git
-Tags: 8.0.6-cli-buster, 8.0-cli-buster, 8-cli-buster, cli-buster, 8.0.6-buster, 8.0-buster, 8-buster, buster, 8.0.6-cli, 8.0-cli, 8-cli, cli, 8.0.6, 8.0, 8, latest
+Tags: 8.3.0RC3-cli-bookworm, 8.3-rc-cli-bookworm, 8.3.0RC3-bookworm, 8.3-rc-bookworm, 8.3.0RC3-cli, 8.3-rc-cli, 8.3.0RC3, 8.3-rc
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: 81ceb39449dc0d42fcecf455b6f372b0b5f3f426
+GitCommit: 45f11a419d9aaa3951be8322641c64f220bde623
+Directory: 8.3-rc/bookworm/cli
+
+Tags: 8.3.0RC3-apache-bookworm, 8.3-rc-apache-bookworm, 8.3.0RC3-apache, 8.3-rc-apache
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: 45f11a419d9aaa3951be8322641c64f220bde623
+Directory: 8.3-rc/bookworm/apache
+
+Tags: 8.3.0RC3-fpm-bookworm, 8.3-rc-fpm-bookworm, 8.3.0RC3-fpm, 8.3-rc-fpm
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: 45f11a419d9aaa3951be8322641c64f220bde623
+Directory: 8.3-rc/bookworm/fpm
+
+Tags: 8.3.0RC3-zts-bookworm, 8.3-rc-zts-bookworm, 8.3.0RC3-zts, 8.3-rc-zts
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: 45f11a419d9aaa3951be8322641c64f220bde623
+Directory: 8.3-rc/bookworm/zts
+
+Tags: 8.3.0RC3-cli-bullseye, 8.3-rc-cli-bullseye, 8.3.0RC3-bullseye, 8.3-rc-bullseye
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: 45f11a419d9aaa3951be8322641c64f220bde623
+Directory: 8.3-rc/bullseye/cli
+
+Tags: 8.3.0RC3-apache-bullseye, 8.3-rc-apache-bullseye
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: 45f11a419d9aaa3951be8322641c64f220bde623
+Directory: 8.3-rc/bullseye/apache
+
+Tags: 8.3.0RC3-fpm-bullseye, 8.3-rc-fpm-bullseye
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: 45f11a419d9aaa3951be8322641c64f220bde623
+Directory: 8.3-rc/bullseye/fpm
+
+Tags: 8.3.0RC3-zts-bullseye, 8.3-rc-zts-bullseye
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: 45f11a419d9aaa3951be8322641c64f220bde623
+Directory: 8.3-rc/bullseye/zts
+
+Tags: 8.3.0RC3-cli-alpine3.18, 8.3-rc-cli-alpine3.18, 8.3.0RC3-alpine3.18, 8.3-rc-alpine3.18, 8.3.0RC3-cli-alpine, 8.3-rc-cli-alpine, 8.3.0RC3-alpine, 8.3-rc-alpine
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: 45f11a419d9aaa3951be8322641c64f220bde623
+Directory: 8.3-rc/alpine3.18/cli
+
+Tags: 8.3.0RC3-fpm-alpine3.18, 8.3-rc-fpm-alpine3.18, 8.3.0RC3-fpm-alpine, 8.3-rc-fpm-alpine
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: 45f11a419d9aaa3951be8322641c64f220bde623
+Directory: 8.3-rc/alpine3.18/fpm
+
+Tags: 8.3.0RC3-zts-alpine3.18, 8.3-rc-zts-alpine3.18, 8.3.0RC3-zts-alpine, 8.3-rc-zts-alpine
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: 45f11a419d9aaa3951be8322641c64f220bde623
+Directory: 8.3-rc/alpine3.18/zts
+
+Tags: 8.3.0RC3-cli-alpine3.17, 8.3-rc-cli-alpine3.17, 8.3.0RC3-alpine3.17, 8.3-rc-alpine3.17
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: 45f11a419d9aaa3951be8322641c64f220bde623
+Directory: 8.3-rc/alpine3.17/cli
+
+Tags: 8.3.0RC3-fpm-alpine3.17, 8.3-rc-fpm-alpine3.17
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: 45f11a419d9aaa3951be8322641c64f220bde623
+Directory: 8.3-rc/alpine3.17/fpm
+
+Tags: 8.3.0RC3-zts-alpine3.17, 8.3-rc-zts-alpine3.17
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: 45f11a419d9aaa3951be8322641c64f220bde623
+Directory: 8.3-rc/alpine3.17/zts
+
+Tags: 8.2.11-cli-bookworm, 8.2-cli-bookworm, 8-cli-bookworm, cli-bookworm, 8.2.11-bookworm, 8.2-bookworm, 8-bookworm, bookworm, 8.2.11-cli, 8.2-cli, 8-cli, cli, 8.2.11, 8.2, 8, latest
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: 7f89b1440e0122cc0edaf4ee0dbd8e1d7510df73
+Directory: 8.2/bookworm/cli
+
+Tags: 8.2.11-apache-bookworm, 8.2-apache-bookworm, 8-apache-bookworm, apache-bookworm, 8.2.11-apache, 8.2-apache, 8-apache, apache
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: 7f89b1440e0122cc0edaf4ee0dbd8e1d7510df73
+Directory: 8.2/bookworm/apache
+
+Tags: 8.2.11-fpm-bookworm, 8.2-fpm-bookworm, 8-fpm-bookworm, fpm-bookworm, 8.2.11-fpm, 8.2-fpm, 8-fpm, fpm
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: 7f89b1440e0122cc0edaf4ee0dbd8e1d7510df73
+Directory: 8.2/bookworm/fpm
+
+Tags: 8.2.11-zts-bookworm, 8.2-zts-bookworm, 8-zts-bookworm, zts-bookworm, 8.2.11-zts, 8.2-zts, 8-zts, zts
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: 7f89b1440e0122cc0edaf4ee0dbd8e1d7510df73
+Directory: 8.2/bookworm/zts
+
+Tags: 8.2.11-cli-bullseye, 8.2-cli-bullseye, 8-cli-bullseye, cli-bullseye, 8.2.11-bullseye, 8.2-bullseye, 8-bullseye, bullseye
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: 7f89b1440e0122cc0edaf4ee0dbd8e1d7510df73
+Directory: 8.2/bullseye/cli
+
+Tags: 8.2.11-apache-bullseye, 8.2-apache-bullseye, 8-apache-bullseye, apache-bullseye
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: 7f89b1440e0122cc0edaf4ee0dbd8e1d7510df73
+Directory: 8.2/bullseye/apache
+
+Tags: 8.2.11-fpm-bullseye, 8.2-fpm-bullseye, 8-fpm-bullseye, fpm-bullseye
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: 7f89b1440e0122cc0edaf4ee0dbd8e1d7510df73
+Directory: 8.2/bullseye/fpm
+
+Tags: 8.2.11-zts-bullseye, 8.2-zts-bullseye, 8-zts-bullseye, zts-bullseye
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: 7f89b1440e0122cc0edaf4ee0dbd8e1d7510df73
+Directory: 8.2/bullseye/zts
+
+Tags: 8.2.11-cli-alpine3.18, 8.2-cli-alpine3.18, 8-cli-alpine3.18, cli-alpine3.18, 8.2.11-alpine3.18, 8.2-alpine3.18, 8-alpine3.18, alpine3.18, 8.2.11-cli-alpine, 8.2-cli-alpine, 8-cli-alpine, cli-alpine, 8.2.11-alpine, 8.2-alpine, 8-alpine, alpine
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: 7f89b1440e0122cc0edaf4ee0dbd8e1d7510df73
+Directory: 8.2/alpine3.18/cli
+
+Tags: 8.2.11-fpm-alpine3.18, 8.2-fpm-alpine3.18, 8-fpm-alpine3.18, fpm-alpine3.18, 8.2.11-fpm-alpine, 8.2-fpm-alpine, 8-fpm-alpine, fpm-alpine
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: 7f89b1440e0122cc0edaf4ee0dbd8e1d7510df73
+Directory: 8.2/alpine3.18/fpm
+
+Tags: 8.2.11-zts-alpine3.18, 8.2-zts-alpine3.18, 8-zts-alpine3.18, zts-alpine3.18, 8.2.11-zts-alpine, 8.2-zts-alpine, 8-zts-alpine, zts-alpine
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: 7f89b1440e0122cc0edaf4ee0dbd8e1d7510df73
+Directory: 8.2/alpine3.18/zts
+
+Tags: 8.2.11-cli-alpine3.17, 8.2-cli-alpine3.17, 8-cli-alpine3.17, cli-alpine3.17, 8.2.11-alpine3.17, 8.2-alpine3.17, 8-alpine3.17, alpine3.17
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: 7f89b1440e0122cc0edaf4ee0dbd8e1d7510df73
+Directory: 8.2/alpine3.17/cli
+
+Tags: 8.2.11-fpm-alpine3.17, 8.2-fpm-alpine3.17, 8-fpm-alpine3.17, fpm-alpine3.17
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: 7f89b1440e0122cc0edaf4ee0dbd8e1d7510df73
+Directory: 8.2/alpine3.17/fpm
+
+Tags: 8.2.11-zts-alpine3.17, 8.2-zts-alpine3.17, 8-zts-alpine3.17, zts-alpine3.17
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: 7f89b1440e0122cc0edaf4ee0dbd8e1d7510df73
+Directory: 8.2/alpine3.17/zts
+
+Tags: 8.1.24-cli-bookworm, 8.1-cli-bookworm, 8.1.24-bookworm, 8.1-bookworm, 8.1.24-cli, 8.1-cli, 8.1.24, 8.1
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: dd8ca598756729ec69591046750ee6b49099d067
+Directory: 8.1/bookworm/cli
+
+Tags: 8.1.24-apache-bookworm, 8.1-apache-bookworm, 8.1.24-apache, 8.1-apache
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: dd8ca598756729ec69591046750ee6b49099d067
+Directory: 8.1/bookworm/apache
+
+Tags: 8.1.24-fpm-bookworm, 8.1-fpm-bookworm, 8.1.24-fpm, 8.1-fpm
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: dd8ca598756729ec69591046750ee6b49099d067
+Directory: 8.1/bookworm/fpm
+
+Tags: 8.1.24-zts-bookworm, 8.1-zts-bookworm, 8.1.24-zts, 8.1-zts
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: dd8ca598756729ec69591046750ee6b49099d067
+Directory: 8.1/bookworm/zts
+
+Tags: 8.1.24-cli-bullseye, 8.1-cli-bullseye, 8.1.24-bullseye, 8.1-bullseye
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: dd8ca598756729ec69591046750ee6b49099d067
+Directory: 8.1/bullseye/cli
+
+Tags: 8.1.24-apache-bullseye, 8.1-apache-bullseye
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: dd8ca598756729ec69591046750ee6b49099d067
+Directory: 8.1/bullseye/apache
+
+Tags: 8.1.24-fpm-bullseye, 8.1-fpm-bullseye
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: dd8ca598756729ec69591046750ee6b49099d067
+Directory: 8.1/bullseye/fpm
+
+Tags: 8.1.24-zts-bullseye, 8.1-zts-bullseye
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: dd8ca598756729ec69591046750ee6b49099d067
+Directory: 8.1/bullseye/zts
+
+Tags: 8.1.24-cli-alpine3.18, 8.1-cli-alpine3.18, 8.1.24-alpine3.18, 8.1-alpine3.18, 8.1.24-cli-alpine, 8.1-cli-alpine, 8.1.24-alpine, 8.1-alpine
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: dd8ca598756729ec69591046750ee6b49099d067
+Directory: 8.1/alpine3.18/cli
+
+Tags: 8.1.24-fpm-alpine3.18, 8.1-fpm-alpine3.18, 8.1.24-fpm-alpine, 8.1-fpm-alpine
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: dd8ca598756729ec69591046750ee6b49099d067
+Directory: 8.1/alpine3.18/fpm
+
+Tags: 8.1.24-zts-alpine3.18, 8.1-zts-alpine3.18, 8.1.24-zts-alpine, 8.1-zts-alpine
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: dd8ca598756729ec69591046750ee6b49099d067
+Directory: 8.1/alpine3.18/zts
+
+Tags: 8.1.24-cli-alpine3.17, 8.1-cli-alpine3.17, 8.1.24-alpine3.17, 8.1-alpine3.17
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: dd8ca598756729ec69591046750ee6b49099d067
+Directory: 8.1/alpine3.17/cli
+
+Tags: 8.1.24-fpm-alpine3.17, 8.1-fpm-alpine3.17
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: dd8ca598756729ec69591046750ee6b49099d067
+Directory: 8.1/alpine3.17/fpm
+
+Tags: 8.1.24-zts-alpine3.17, 8.1-zts-alpine3.17
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: dd8ca598756729ec69591046750ee6b49099d067
+Directory: 8.1/alpine3.17/zts
+
+Tags: 8.1.24-cli-alpine3.16, 8.1-cli-alpine3.16, 8.1.24-alpine3.16, 8.1-alpine3.16
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: dd8ca598756729ec69591046750ee6b49099d067
+Directory: 8.1/alpine3.16/cli
+
+Tags: 8.1.24-fpm-alpine3.16, 8.1-fpm-alpine3.16
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: dd8ca598756729ec69591046750ee6b49099d067
+Directory: 8.1/alpine3.16/fpm
+
+Tags: 8.1.24-zts-alpine3.16, 8.1-zts-alpine3.16
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: dd8ca598756729ec69591046750ee6b49099d067
+Directory: 8.1/alpine3.16/zts
+
+Tags: 8.0.30-cli-bullseye, 8.0-cli-bullseye, 8.0.30-bullseye, 8.0-bullseye, 8.0.30-cli, 8.0-cli, 8.0.30, 8.0
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: 41c9ad0b43a50bbf46564f27779a01105df49b9a
+Directory: 8.0/bullseye/cli
+
+Tags: 8.0.30-apache-bullseye, 8.0-apache-bullseye, 8.0.30-apache, 8.0-apache
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: 41c9ad0b43a50bbf46564f27779a01105df49b9a
+Directory: 8.0/bullseye/apache
+
+Tags: 8.0.30-fpm-bullseye, 8.0-fpm-bullseye, 8.0.30-fpm, 8.0-fpm
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: 41c9ad0b43a50bbf46564f27779a01105df49b9a
+Directory: 8.0/bullseye/fpm
+
+Tags: 8.0.30-zts-bullseye, 8.0-zts-bullseye, 8.0.30-zts, 8.0-zts
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: 41c9ad0b43a50bbf46564f27779a01105df49b9a
+Directory: 8.0/bullseye/zts
+
+Tags: 8.0.30-cli-buster, 8.0-cli-buster, 8.0.30-buster, 8.0-buster
+Architectures: amd64, arm32v7, arm64v8, i386
+GitCommit: 41c9ad0b43a50bbf46564f27779a01105df49b9a
Directory: 8.0/buster/cli
-Tags: 8.0.6-apache-buster, 8.0-apache-buster, 8-apache-buster, apache-buster, 8.0.6-apache, 8.0-apache, 8-apache, apache
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: 81ceb39449dc0d42fcecf455b6f372b0b5f3f426
+Tags: 8.0.30-apache-buster, 8.0-apache-buster
+Architectures: amd64, arm32v7, arm64v8, i386
+GitCommit: 41c9ad0b43a50bbf46564f27779a01105df49b9a
Directory: 8.0/buster/apache
-Tags: 8.0.6-fpm-buster, 8.0-fpm-buster, 8-fpm-buster, fpm-buster, 8.0.6-fpm, 8.0-fpm, 8-fpm, fpm
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: 81ceb39449dc0d42fcecf455b6f372b0b5f3f426
+Tags: 8.0.30-fpm-buster, 8.0-fpm-buster
+Architectures: amd64, arm32v7, arm64v8, i386
+GitCommit: 41c9ad0b43a50bbf46564f27779a01105df49b9a
Directory: 8.0/buster/fpm
-Tags: 8.0.6-zts-buster, 8.0-zts-buster, 8-zts-buster, zts-buster, 8.0.6-zts, 8.0-zts, 8-zts, zts
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: 81ceb39449dc0d42fcecf455b6f372b0b5f3f426
+Tags: 8.0.30-zts-buster, 8.0-zts-buster
+Architectures: amd64, arm32v7, arm64v8, i386
+GitCommit: 41c9ad0b43a50bbf46564f27779a01105df49b9a
Directory: 8.0/buster/zts
-Tags: 8.0.6-cli-alpine3.13, 8.0-cli-alpine3.13, 8-cli-alpine3.13, cli-alpine3.13, 8.0.6-alpine3.13, 8.0-alpine3.13, 8-alpine3.13, alpine3.13, 8.0.6-cli-alpine, 8.0-cli-alpine, 8-cli-alpine, cli-alpine, 8.0.6-alpine, 8.0-alpine, 8-alpine, alpine
+Tags: 8.0.30-cli-alpine3.16, 8.0-cli-alpine3.16, 8.0.30-alpine3.16, 8.0-alpine3.16, 8.0.30-cli-alpine, 8.0-cli-alpine, 8.0.30-alpine, 8.0-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 81ceb39449dc0d42fcecf455b6f372b0b5f3f426
-Directory: 8.0/alpine3.13/cli
+GitCommit: 41c9ad0b43a50bbf46564f27779a01105df49b9a
+Directory: 8.0/alpine3.16/cli
-Tags: 8.0.6-fpm-alpine3.13, 8.0-fpm-alpine3.13, 8-fpm-alpine3.13, fpm-alpine3.13, 8.0.6-fpm-alpine, 8.0-fpm-alpine, 8-fpm-alpine, fpm-alpine
+Tags: 8.0.30-fpm-alpine3.16, 8.0-fpm-alpine3.16, 8.0.30-fpm-alpine, 8.0-fpm-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 81ceb39449dc0d42fcecf455b6f372b0b5f3f426
-Directory: 8.0/alpine3.13/fpm
+GitCommit: 41c9ad0b43a50bbf46564f27779a01105df49b9a
+Directory: 8.0/alpine3.16/fpm
-Tags: 8.0.6-cli-alpine3.12, 8.0-cli-alpine3.12, 8-cli-alpine3.12, cli-alpine3.12, 8.0.6-alpine3.12, 8.0-alpine3.12, 8-alpine3.12, alpine3.12
+Tags: 8.0.30-zts-alpine3.16, 8.0-zts-alpine3.16, 8.0.30-zts-alpine, 8.0-zts-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 81ceb39449dc0d42fcecf455b6f372b0b5f3f426
-Directory: 8.0/alpine3.12/cli
-
-Tags: 8.0.6-fpm-alpine3.12, 8.0-fpm-alpine3.12, 8-fpm-alpine3.12, fpm-alpine3.12
-Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 81ceb39449dc0d42fcecf455b6f372b0b5f3f426
-Directory: 8.0/alpine3.12/fpm
-
-Tags: 7.4.19-cli-buster, 7.4-cli-buster, 7-cli-buster, 7.4.19-buster, 7.4-buster, 7-buster, 7.4.19-cli, 7.4-cli, 7-cli, 7.4.19, 7.4, 7
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: 47e681a74116da5a99e804bef5a7808df40d831f
-Directory: 7.4/buster/cli
-
-Tags: 7.4.19-apache-buster, 7.4-apache-buster, 7-apache-buster, 7.4.19-apache, 7.4-apache, 7-apache
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: 47e681a74116da5a99e804bef5a7808df40d831f
-Directory: 7.4/buster/apache
-
-Tags: 7.4.19-fpm-buster, 7.4-fpm-buster, 7-fpm-buster, 7.4.19-fpm, 7.4-fpm, 7-fpm
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: 47e681a74116da5a99e804bef5a7808df40d831f
-Directory: 7.4/buster/fpm
-
-Tags: 7.4.19-zts-buster, 7.4-zts-buster, 7-zts-buster, 7.4.19-zts, 7.4-zts, 7-zts
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: 47e681a74116da5a99e804bef5a7808df40d831f
-Directory: 7.4/buster/zts
-
-Tags: 7.4.19-cli-alpine3.13, 7.4-cli-alpine3.13, 7-cli-alpine3.13, 7.4.19-alpine3.13, 7.4-alpine3.13, 7-alpine3.13, 7.4.19-cli-alpine, 7.4-cli-alpine, 7-cli-alpine, 7.4.19-alpine, 7.4-alpine, 7-alpine
-Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 47e681a74116da5a99e804bef5a7808df40d831f
-Directory: 7.4/alpine3.13/cli
-
-Tags: 7.4.19-fpm-alpine3.13, 7.4-fpm-alpine3.13, 7-fpm-alpine3.13, 7.4.19-fpm-alpine, 7.4-fpm-alpine, 7-fpm-alpine
-Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 47e681a74116da5a99e804bef5a7808df40d831f
-Directory: 7.4/alpine3.13/fpm
-
-Tags: 7.4.19-zts-alpine3.13, 7.4-zts-alpine3.13, 7-zts-alpine3.13, 7.4.19-zts-alpine, 7.4-zts-alpine, 7-zts-alpine
-Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 47e681a74116da5a99e804bef5a7808df40d831f
-Directory: 7.4/alpine3.13/zts
-
-Tags: 7.4.19-cli-alpine3.12, 7.4-cli-alpine3.12, 7-cli-alpine3.12, 7.4.19-alpine3.12, 7.4-alpine3.12, 7-alpine3.12
-Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 47e681a74116da5a99e804bef5a7808df40d831f
-Directory: 7.4/alpine3.12/cli
-
-Tags: 7.4.19-fpm-alpine3.12, 7.4-fpm-alpine3.12, 7-fpm-alpine3.12
-Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 47e681a74116da5a99e804bef5a7808df40d831f
-Directory: 7.4/alpine3.12/fpm
-
-Tags: 7.4.19-zts-alpine3.12, 7.4-zts-alpine3.12, 7-zts-alpine3.12
-Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 47e681a74116da5a99e804bef5a7808df40d831f
-Directory: 7.4/alpine3.12/zts
-
-Tags: 7.3.28-cli-buster, 7.3-cli-buster, 7.3.28-buster, 7.3-buster, 7.3.28-cli, 7.3-cli, 7.3.28, 7.3
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: 6196a28e342a7936e4a6e89e16a5ea87bf9e8cbe
-Directory: 7.3/buster/cli
-
-Tags: 7.3.28-apache-buster, 7.3-apache-buster, 7.3.28-apache, 7.3-apache
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: 6196a28e342a7936e4a6e89e16a5ea87bf9e8cbe
-Directory: 7.3/buster/apache
-
-Tags: 7.3.28-fpm-buster, 7.3-fpm-buster, 7.3.28-fpm, 7.3-fpm
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: 6196a28e342a7936e4a6e89e16a5ea87bf9e8cbe
-Directory: 7.3/buster/fpm
-
-Tags: 7.3.28-zts-buster, 7.3-zts-buster, 7.3.28-zts, 7.3-zts
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: 6196a28e342a7936e4a6e89e16a5ea87bf9e8cbe
-Directory: 7.3/buster/zts
-
-Tags: 7.3.28-cli-stretch, 7.3-cli-stretch, 7.3.28-stretch, 7.3-stretch
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386
-GitCommit: 6196a28e342a7936e4a6e89e16a5ea87bf9e8cbe
-Directory: 7.3/stretch/cli
-
-Tags: 7.3.28-apache-stretch, 7.3-apache-stretch
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386
-GitCommit: 6196a28e342a7936e4a6e89e16a5ea87bf9e8cbe
-Directory: 7.3/stretch/apache
-
-Tags: 7.3.28-fpm-stretch, 7.3-fpm-stretch
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386
-GitCommit: 6196a28e342a7936e4a6e89e16a5ea87bf9e8cbe
-Directory: 7.3/stretch/fpm
-
-Tags: 7.3.28-zts-stretch, 7.3-zts-stretch
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386
-GitCommit: 6196a28e342a7936e4a6e89e16a5ea87bf9e8cbe
-Directory: 7.3/stretch/zts
-
-Tags: 7.3.28-cli-alpine3.13, 7.3-cli-alpine3.13, 7.3.28-alpine3.13, 7.3-alpine3.13, 7.3.28-cli-alpine, 7.3-cli-alpine, 7.3.28-alpine, 7.3-alpine
-Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 6196a28e342a7936e4a6e89e16a5ea87bf9e8cbe
-Directory: 7.3/alpine3.13/cli
-
-Tags: 7.3.28-fpm-alpine3.13, 7.3-fpm-alpine3.13, 7.3.28-fpm-alpine, 7.3-fpm-alpine
-Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 6196a28e342a7936e4a6e89e16a5ea87bf9e8cbe
-Directory: 7.3/alpine3.13/fpm
-
-Tags: 7.3.28-zts-alpine3.13, 7.3-zts-alpine3.13, 7.3.28-zts-alpine, 7.3-zts-alpine
-Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 6196a28e342a7936e4a6e89e16a5ea87bf9e8cbe
-Directory: 7.3/alpine3.13/zts
-
-Tags: 7.3.28-cli-alpine3.12, 7.3-cli-alpine3.12, 7.3.28-alpine3.12, 7.3-alpine3.12
-Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 6196a28e342a7936e4a6e89e16a5ea87bf9e8cbe
-Directory: 7.3/alpine3.12/cli
-
-Tags: 7.3.28-fpm-alpine3.12, 7.3-fpm-alpine3.12
-Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 6196a28e342a7936e4a6e89e16a5ea87bf9e8cbe
-Directory: 7.3/alpine3.12/fpm
-
-Tags: 7.3.28-zts-alpine3.12, 7.3-zts-alpine3.12
-Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 6196a28e342a7936e4a6e89e16a5ea87bf9e8cbe
-Directory: 7.3/alpine3.12/zts
+GitCommit: 41c9ad0b43a50bbf46564f27779a01105df49b9a
+Directory: 8.0/alpine3.16/zts
diff --git a/library/php-zendserver b/library/php-zendserver
index 1da134d76b..7c5ce57957 100644
--- a/library/php-zendserver
+++ b/library/php-zendserver
@@ -1,7 +1,7 @@
Maintainers: Heigo Sinilind (@hsinilind),
Rain Viigipuu (@rainviigipuu)
GitRepo: https://github.com/zendtech/php-zendserver-docker.git
-GitCommit: f56e31421325fcef7c3619d9c582a30c647a545b
+GitCommit: bcd65b82acb4f3b5b67f8c657c52f08bc52d8789
Tags: 8.5, 8.5-php5.6, 5.6
Directory: 8.5/5.6
@@ -9,5 +9,8 @@ Directory: 8.5/5.6
Tags: 9.1
Directory: 9.1/7.1
-Tags: 2019.0, latest
+Tags: 2019.0
Directory: 2019.0
+
+Tags: 2021.0, latest
+Directory: 2021.0
diff --git a/library/phpmyadmin b/library/phpmyadmin
index ce735db11a..609bcb4ee0 100644
--- a/library/phpmyadmin
+++ b/library/phpmyadmin
@@ -1,19 +1,19 @@
-# This file is generated via https://github.com/phpmyadmin/docker/blob/785cd48c4892a4748c0c629099c15b42570949d3/generate-stackbrew-library.sh
+# This file is generated via https://github.com/phpmyadmin/docker/blob/692333aa2d7ffd02f8763862295f78b4c61e6fed/generate-stackbrew-library.sh
Maintainers: Isaac Bennetch (@ibennetch),
William Desportes (@williamdes)
GitRepo: https://github.com/phpmyadmin/docker.git
-Tags: 5.1.0-apache, 5.1-apache, 5-apache, apache, 5.1.0, 5.1, 5, latest
+Tags: 5.2.1-apache, 5.2-apache, 5-apache, apache, 5.2.1, 5.2, 5, latest
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: 3d8c2ba403fa091a19c6f16762d50663e57f8969
+GitCommit: da4b8f273a0a81078185076683ed92a382814ef3
Directory: apache
-Tags: 5.1.0-fpm, 5.1-fpm, 5-fpm, fpm
+Tags: 5.2.1-fpm, 5.2-fpm, 5-fpm, fpm
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: 3d8c2ba403fa091a19c6f16762d50663e57f8969
+GitCommit: da4b8f273a0a81078185076683ed92a382814ef3
Directory: fpm
-Tags: 5.1.0-fpm-alpine, 5.1-fpm-alpine, 5-fpm-alpine, fpm-alpine
+Tags: 5.2.1-fpm-alpine, 5.2-fpm-alpine, 5-fpm-alpine, fpm-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 3d8c2ba403fa091a19c6f16762d50663e57f8969
+GitCommit: 8674356a6d0f67eb89d0200647832fc3853781fd
Directory: fpm-alpine
diff --git a/library/plone b/library/plone
index 941d3e5d16..110d94e7f8 100644
--- a/library/plone
+++ b/library/plone
@@ -1,25 +1,12 @@
Maintainers: Alin Voinea (@avoinea),
Piero Nicolli (@pnicolli),
Sven Strack (@svx),
- Antonio De Marinis (@demarant)
+ Antonio De Marinis (@demarant),
+ Iulian Petchesi (@Petchesi-Iulian),
+ Valentin Dumitru (@valipod)
GitRepo: https://github.com/plone/plone.docker.git
-Tags: 5.2.4-python38, 5.2-python38, 5-python38, python38, 5.2.4, 5.2, 5, latest
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: a516871e08532c8a343f9e9e713c8abc8d80aae6
-Directory: 5.2/5.2.4/debian
-
-Tags: 5.2.4-python37, 5.2-python37, 5-python37, python37
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: a516871e08532c8a343f9e9e713c8abc8d80aae6
-Directory: 5.2/5.2.4/python37
-
-Tags: 5.2.4-python36, 5.2-python36, 5-python36, python36
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: a516871e08532c8a343f9e9e713c8abc8d80aae6
-Directory: 5.2/5.2.4/python36
-
-Tags: 5.2.4-alpine, 5.2-alpine, 5-alpine, alpine
-Architectures: amd64, arm32v6, arm64v8, i386, ppc64le, s390x
-GitCommit: a516871e08532c8a343f9e9e713c8abc8d80aae6
-Directory: 5.2/5.2.4/alpine
+Tags: 5.2.13-python38, 5.2-python38, 5-python38, python38, 5.2.13, 5.2, 5, latest
+Architectures: amd64, arm64v8
+GitCommit: fd5a572ead9cabb20b9fcb24e16631f673610118
+Directory: 5.2/5.2.13/debian
diff --git a/library/postfixadmin b/library/postfixadmin
index 3d30321949..db1c3871cb 100644
--- a/library/postfixadmin
+++ b/library/postfixadmin
@@ -2,17 +2,17 @@
Maintainers: David Goodwin (@DavidGoodwin)
GitRepo: https://github.com/postfixadmin/docker.git
-Tags: 3.3.9-apache, 3.3-apache, 3-apache, apache, 3.3.9, 3.3, 3, latest
+Tags: 3.3.13-apache, 3.3-apache, 3-apache, apache, 3.3.13, 3.3, 3, latest
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
Directory: apache
-GitCommit: 1b677083c85185c721ada312307150ac242e6103
+GitCommit: f0eccac1ed27a05031c515591d3c9f29502efb27
-Tags: 3.3.9-fpm, 3.3-fpm, 3-fpm, fpm
+Tags: 3.3.13-fpm, 3.3-fpm, 3-fpm, fpm
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
Directory: fpm
-GitCommit: 1b677083c85185c721ada312307150ac242e6103
+GitCommit: f0eccac1ed27a05031c515591d3c9f29502efb27
-Tags: 3.3.9-fpm-alpine, 3.3-fpm-alpine, 3-fpm-alpine, fpm-alpine
+Tags: 3.3.13-fpm-alpine, 3.3-fpm-alpine, 3-fpm-alpine, fpm-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
Directory: fpm-alpine
-GitCommit: 1b677083c85185c721ada312307150ac242e6103
+GitCommit: 5030ec70f6a0dec12e39f5194fb29575b169f7b7
diff --git a/library/postgres b/library/postgres
index a78fd62d43..7262e1912e 100644
--- a/library/postgres
+++ b/library/postgres
@@ -1,65 +1,125 @@
-# this file is generated via https://github.com/docker-library/postgres/blob/dba8ec0bf97b220682d2cfe417e5d4f367df8a92/generate-stackbrew-library.sh
+# this file is generated via https://github.com/docker-library/postgres/blob/7df6bc166fbf0d7f28c85700235012317a22f88e/generate-stackbrew-library.sh
Maintainers: Tianon Gravi (@tianon),
Joseph Ferguson (@yosifkit)
GitRepo: https://github.com/docker-library/postgres.git
-Tags: 13.3, 13, latest
+Tags: 16.0, 16, latest, 16.0-bookworm, 16-bookworm, bookworm
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: aed4d450b287b8fb3e834e21df8eeee37e0f8d28
-Directory: 13
+GitCommit: 7442464585e3cd75554976cbe94819a42da10bbd
+Directory: 16/bookworm
-Tags: 13.3-alpine, 13-alpine, alpine
-Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 4a82bbde194ff4d32e90629b0a50b9398d374c12
-Directory: 13/alpine
-
-Tags: 12.7, 12
+Tags: 16.0-bullseye, 16-bullseye, bullseye
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
-GitCommit: 553451e3c51f3baa2e793ce405369eb948b6e2d1
-Directory: 12
+GitCommit: 7442464585e3cd75554976cbe94819a42da10bbd
+Directory: 16/bullseye
-Tags: 12.7-alpine, 12-alpine
+Tags: 16.0-alpine3.18, 16-alpine3.18, alpine3.18, 16.0-alpine, 16-alpine, alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 8536a3ba9d8a33bcab49d8cf42d42412c120aa14
-Directory: 12/alpine
+GitCommit: 6f4ae836406b010948f01fbcb400a31dca4fdf52
+Directory: 16/alpine3.18
-Tags: 11.12, 11
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386
-GitCommit: a37f640216530c5e02c91fd37a9a5f230e8fc5b7
-Directory: 11
-
-Tags: 11.12-alpine, 11-alpine
+Tags: 16.0-alpine3.17, 16-alpine3.17, alpine3.17
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 34821014a8bbfe91c86f323dde1630ac32a6ffc9
-Directory: 11/alpine
+GitCommit: 6f4ae836406b010948f01fbcb400a31dca4fdf52
+Directory: 16/alpine3.17
-Tags: 10.17, 10
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386
-GitCommit: 376f87ce3b00273c5ea1f5446d6876227d5ddf07
-Directory: 10
+Tags: 15.4, 15, 15.4-bookworm, 15-bookworm
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: 8a631b939a0b4197cb6bef49b50b6c40c80ddf5b
+Directory: 15/bookworm
-Tags: 10.17-alpine, 10-alpine
+Tags: 15.4-bullseye, 15-bullseye
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: 8a631b939a0b4197cb6bef49b50b6c40c80ddf5b
+Directory: 15/bullseye
+
+Tags: 15.4-alpine3.18, 15-alpine3.18, 15.4-alpine, 15-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: ea6eb8151f10fa6cb9be0f93c3e89f37bfd85fbf
-Directory: 10/alpine
+GitCommit: 6f4ae836406b010948f01fbcb400a31dca4fdf52
+Directory: 15/alpine3.18
-Tags: 9.6.22, 9.6, 9
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386
-GitCommit: 94c2885ff2030b25dc85eee1898e891d7d4b8bad
-Directory: 9.6
-
-Tags: 9.6.22-alpine, 9.6-alpine, 9-alpine
+Tags: 15.4-alpine3.17, 15-alpine3.17
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 720ab505571bd3eddf0f4b04462cae5b9835f287
-Directory: 9.6/alpine
+GitCommit: 6f4ae836406b010948f01fbcb400a31dca4fdf52
+Directory: 15/alpine3.17
-Tags: 9.5.25, 9.5
-Architectures: amd64, arm32v5, arm32v7, arm64v8, i386
-GitCommit: b122f60426e69df9d6effbda45fe2ef659c1d4f2
-Directory: 9.5
+Tags: 14.9, 14, 14.9-bookworm, 14-bookworm
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: 05f691067b29d8fb4211a47da37a381d58d36691
+Directory: 14/bookworm
-Tags: 9.5.25-alpine, 9.5-alpine
+Tags: 14.9-bullseye, 14-bullseye
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: 05f691067b29d8fb4211a47da37a381d58d36691
+Directory: 14/bullseye
+
+Tags: 14.9-alpine3.18, 14-alpine3.18, 14.9-alpine, 14-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 6667795da15f1a2d2791021659f2f766828a4321
-Directory: 9.5/alpine
+GitCommit: 6f4ae836406b010948f01fbcb400a31dca4fdf52
+Directory: 14/alpine3.18
+
+Tags: 14.9-alpine3.17, 14-alpine3.17
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: 6f4ae836406b010948f01fbcb400a31dca4fdf52
+Directory: 14/alpine3.17
+
+Tags: 13.12, 13, 13.12-bookworm, 13-bookworm
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: 69cf8b8aac63224380f943bd6428f088ddfb3435
+Directory: 13/bookworm
+
+Tags: 13.12-bullseye, 13-bullseye
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: 69cf8b8aac63224380f943bd6428f088ddfb3435
+Directory: 13/bullseye
+
+Tags: 13.12-alpine3.18, 13-alpine3.18, 13.12-alpine, 13-alpine
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: 6f4ae836406b010948f01fbcb400a31dca4fdf52
+Directory: 13/alpine3.18
+
+Tags: 13.12-alpine3.17, 13-alpine3.17
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: 6f4ae836406b010948f01fbcb400a31dca4fdf52
+Directory: 13/alpine3.17
+
+Tags: 12.16, 12, 12.16-bookworm, 12-bookworm
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: 9061f74afc30391adb6a1a35d4f7b605ecaa09b9
+Directory: 12/bookworm
+
+Tags: 12.16-bullseye, 12-bullseye
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: 9061f74afc30391adb6a1a35d4f7b605ecaa09b9
+Directory: 12/bullseye
+
+Tags: 12.16-alpine3.18, 12-alpine3.18, 12.16-alpine, 12-alpine
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: 6f4ae836406b010948f01fbcb400a31dca4fdf52
+Directory: 12/alpine3.18
+
+Tags: 12.16-alpine3.17, 12-alpine3.17
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: 6f4ae836406b010948f01fbcb400a31dca4fdf52
+Directory: 12/alpine3.17
+
+Tags: 11.21-bookworm, 11-bookworm
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: 16fa0f1d18f7c46f7dcac1e250b680fcb1a2e051
+Directory: 11/bookworm
+
+Tags: 11.21-bullseye, 11-bullseye
+Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
+GitCommit: 16fa0f1d18f7c46f7dcac1e250b680fcb1a2e051
+Directory: 11/bullseye
+
+Tags: 11.21-alpine3.18, 11-alpine3.18, 11.21-alpine, 11-alpine
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: 6f4ae836406b010948f01fbcb400a31dca4fdf52
+Directory: 11/alpine3.18
+
+Tags: 11.21-alpine3.17, 11-alpine3.17
+Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
+GitCommit: 6f4ae836406b010948f01fbcb400a31dca4fdf52
+Directory: 11/alpine3.17
diff --git a/library/pypy b/library/pypy
index 641875744d..8e82718539 100644
--- a/library/pypy
+++ b/library/pypy
@@ -1,41 +1,110 @@
-# this file is generated via https://github.com/docker-library/pypy/blob/596e037750c79f94e3ac5cb9ec2ca28961987599/generate-stackbrew-library.sh
+# this file is generated via https://github.com/docker-library/pypy/blob/c40535e566fdd8a081584412826c59e1fa40a256/generate-stackbrew-library.sh
Maintainers: Tianon Gravi (@tianon),
Joseph Ferguson (@yosifkit)
GitRepo: https://github.com/docker-library/pypy.git
-Tags: 3.7-7.3.5-buster, 3.7-7.3-buster, 3.7-7-buster, 3.7-buster, 3-7.3.5-buster, 3-7.3-buster, 3-7-buster, 3-buster, buster
-SharedTags: 3.7-7.3.5, 3.7-7.3, 3.7-7, 3.7, 3-7.3.5, 3-7.3, 3-7, 3, latest
-Architectures: amd64, arm64v8, i386, s390x
-GitCommit: ad122d7739f0d5e422be892847f10f809a14bf95
-Directory: 3.7/buster
+Tags: 3.10-7.3.12-bookworm, 3.10-7.3-bookworm, 3.10-7-bookworm, 3.10-bookworm, 3-7.3.12-bookworm, 3-7.3-bookworm, 3-7-bookworm, 3-bookworm, bookworm
+Architectures: amd64, arm64v8, i386
+GitCommit: c40535e566fdd8a081584412826c59e1fa40a256
+Directory: 3.10/bookworm
-Tags: 3.7-7.3.5-slim, 3.7-7.3-slim, 3.7-7-slim, 3.7-slim, 3-7.3.5-slim, 3-7.3-slim, 3-7-slim, 3-slim, slim, 3.7-7.3.5-slim-buster, 3.7-7.3-slim-buster, 3.7-7-slim-buster, 3.7-slim-buster, 3-7.3.5-slim-buster, 3-7.3-slim-buster, 3-7-slim-buster, 3-slim-buster, slim-buster
-Architectures: amd64, arm64v8, i386, s390x
-GitCommit: ad122d7739f0d5e422be892847f10f809a14bf95
-Directory: 3.7/slim-buster
+Tags: 3.10-7.3.12-slim-bookworm, 3.10-7.3-slim-bookworm, 3.10-7-slim-bookworm, 3.10-slim-bookworm, 3-7.3.12-slim-bookworm, 3-7.3-slim-bookworm, 3-7-slim-bookworm, 3-slim-bookworm, slim-bookworm
+Architectures: amd64, arm64v8, i386
+GitCommit: c40535e566fdd8a081584412826c59e1fa40a256
+Directory: 3.10/slim-bookworm
-Tags: 3.7-7.3.5-windowsservercore-1809, 3.7-7.3-windowsservercore-1809, 3.7-7-windowsservercore-1809, 3.7-windowsservercore-1809, 3-7.3.5-windowsservercore-1809, 3-7.3-windowsservercore-1809, 3-7-windowsservercore-1809, 3-windowsservercore-1809, windowsservercore-1809
-SharedTags: 3.7-7.3.5, 3.7-7.3, 3.7-7, 3.7, 3-7.3.5, 3-7.3, 3-7, 3, latest, 3.7-7.3.5-windowsservercore, 3.7-7.3-windowsservercore, 3.7-7-windowsservercore, 3.7-windowsservercore, 3-7.3.5-windowsservercore, 3-7.3-windowsservercore, 3-7-windowsservercore, 3-windowsservercore, windowsservercore
+Tags: 3.10-7.3.12-bullseye, 3.10-7.3-bullseye, 3.10-7-bullseye, 3.10-bullseye, 3-7.3.12-bullseye, 3-7.3-bullseye, 3-7-bullseye, 3-bullseye, bullseye
+SharedTags: 3.10-7.3.12, 3.10-7.3, 3.10-7, 3.10, 3-7.3.12, 3-7.3, 3-7, 3, latest
+Architectures: amd64, arm64v8, i386
+GitCommit: c40535e566fdd8a081584412826c59e1fa40a256
+Directory: 3.10/bullseye
+
+Tags: 3.10-7.3.12-slim, 3.10-7.3-slim, 3.10-7-slim, 3.10-slim, 3-7.3.12-slim, 3-7.3-slim, 3-7-slim, 3-slim, slim, 3.10-7.3.12-slim-bullseye, 3.10-7.3-slim-bullseye, 3.10-7-slim-bullseye, 3.10-slim-bullseye, 3-7.3.12-slim-bullseye, 3-7.3-slim-bullseye, 3-7-slim-bullseye, 3-slim-bullseye, slim-bullseye
+Architectures: amd64, arm64v8, i386
+GitCommit: c40535e566fdd8a081584412826c59e1fa40a256
+Directory: 3.10/slim-bullseye
+
+Tags: 3.10-7.3.12-windowsservercore-ltsc2022, 3.10-7.3-windowsservercore-ltsc2022, 3.10-7-windowsservercore-ltsc2022, 3.10-windowsservercore-ltsc2022, 3-7.3.12-windowsservercore-ltsc2022, 3-7.3-windowsservercore-ltsc2022, 3-7-windowsservercore-ltsc2022, 3-windowsservercore-ltsc2022, windowsservercore-ltsc2022
+SharedTags: 3.10-7.3.12, 3.10-7.3, 3.10-7, 3.10, 3-7.3.12, 3-7.3, 3-7, 3, latest, 3.10-7.3.12-windowsservercore, 3.10-7.3-windowsservercore, 3.10-7-windowsservercore, 3.10-windowsservercore, 3-7.3.12-windowsservercore, 3-7.3-windowsservercore, 3-7-windowsservercore, 3-windowsservercore, windowsservercore
Architectures: windows-amd64
-GitCommit: ad122d7739f0d5e422be892847f10f809a14bf95
-Directory: 3.7/windows/windowsservercore-1809
+GitCommit: c40535e566fdd8a081584412826c59e1fa40a256
+Directory: 3.10/windows/windowsservercore-ltsc2022
+Constraints: windowsservercore-ltsc2022
+
+Tags: 3.10-7.3.12-windowsservercore-1809, 3.10-7.3-windowsservercore-1809, 3.10-7-windowsservercore-1809, 3.10-windowsservercore-1809, 3-7.3.12-windowsservercore-1809, 3-7.3-windowsservercore-1809, 3-7-windowsservercore-1809, 3-windowsservercore-1809, windowsservercore-1809
+SharedTags: 3.10-7.3.12, 3.10-7.3, 3.10-7, 3.10, 3-7.3.12, 3-7.3, 3-7, 3, latest, 3.10-7.3.12-windowsservercore, 3.10-7.3-windowsservercore, 3.10-7-windowsservercore, 3.10-windowsservercore, 3-7.3.12-windowsservercore, 3-7.3-windowsservercore, 3-7-windowsservercore, 3-windowsservercore, windowsservercore
+Architectures: windows-amd64
+GitCommit: c40535e566fdd8a081584412826c59e1fa40a256
+Directory: 3.10/windows/windowsservercore-1809
Constraints: windowsservercore-1809
-Tags: 2.7-7.3.5-buster, 2.7-7.3-buster, 2.7-7-buster, 2.7-buster, 2-7.3.5-buster, 2-7.3-buster, 2-7-buster, 2-buster
-SharedTags: 2.7-7.3.5, 2.7-7.3, 2.7-7, 2.7, 2-7.3.5, 2-7.3, 2-7, 2
+Tags: 3.9-7.3.12-bookworm, 3.9-7.3-bookworm, 3.9-7-bookworm, 3.9-bookworm
Architectures: amd64, arm64v8, i386
-GitCommit: 21958c24c2a1357eb2464331598705649f2f7896
-Directory: 2.7/buster
+GitCommit: 4a2918a33ab52da23ce6cd3b0754ba54521cf1e0
+Directory: 3.9/bookworm
-Tags: 2.7-7.3.5-slim, 2.7-7.3-slim, 2.7-7-slim, 2.7-slim, 2-7.3.5-slim, 2-7.3-slim, 2-7-slim, 2-slim, 2.7-7.3.5-slim-buster, 2.7-7.3-slim-buster, 2.7-7-slim-buster, 2.7-slim-buster, 2-7.3.5-slim-buster, 2-7.3-slim-buster, 2-7-slim-buster, 2-slim-buster
+Tags: 3.9-7.3.12-slim-bookworm, 3.9-7.3-slim-bookworm, 3.9-7-slim-bookworm, 3.9-slim-bookworm
Architectures: amd64, arm64v8, i386
-GitCommit: 21958c24c2a1357eb2464331598705649f2f7896
-Directory: 2.7/slim-buster
+GitCommit: 4a2918a33ab52da23ce6cd3b0754ba54521cf1e0
+Directory: 3.9/slim-bookworm
-Tags: 2.7-7.3.5-windowsservercore-1809, 2.7-7.3-windowsservercore-1809, 2.7-7-windowsservercore-1809, 2.7-windowsservercore-1809, 2-7.3.5-windowsservercore-1809, 2-7.3-windowsservercore-1809, 2-7-windowsservercore-1809, 2-windowsservercore-1809
-SharedTags: 2.7-7.3.5, 2.7-7.3, 2.7-7, 2.7, 2-7.3.5, 2-7.3, 2-7, 2, 2.7-7.3.5-windowsservercore, 2.7-7.3-windowsservercore, 2.7-7-windowsservercore, 2.7-windowsservercore, 2-7.3.5-windowsservercore, 2-7.3-windowsservercore, 2-7-windowsservercore, 2-windowsservercore
+Tags: 3.9-7.3.12-bullseye, 3.9-7.3-bullseye, 3.9-7-bullseye, 3.9-bullseye
+SharedTags: 3.9-7.3.12, 3.9-7.3, 3.9-7, 3.9
+Architectures: amd64, arm64v8, i386
+GitCommit: 4a2918a33ab52da23ce6cd3b0754ba54521cf1e0
+Directory: 3.9/bullseye
+
+Tags: 3.9-7.3.12-slim, 3.9-7.3-slim, 3.9-7-slim, 3.9-slim, 3.9-7.3.12-slim-bullseye, 3.9-7.3-slim-bullseye, 3.9-7-slim-bullseye, 3.9-slim-bullseye
+Architectures: amd64, arm64v8, i386
+GitCommit: 4a2918a33ab52da23ce6cd3b0754ba54521cf1e0
+Directory: 3.9/slim-bullseye
+
+Tags: 3.9-7.3.12-windowsservercore-ltsc2022, 3.9-7.3-windowsservercore-ltsc2022, 3.9-7-windowsservercore-ltsc2022, 3.9-windowsservercore-ltsc2022
+SharedTags: 3.9-7.3.12, 3.9-7.3, 3.9-7, 3.9, 3.9-7.3.12-windowsservercore, 3.9-7.3-windowsservercore, 3.9-7-windowsservercore, 3.9-windowsservercore
Architectures: windows-amd64
-GitCommit: 21958c24c2a1357eb2464331598705649f2f7896
+GitCommit: 4a2918a33ab52da23ce6cd3b0754ba54521cf1e0
+Directory: 3.9/windows/windowsservercore-ltsc2022
+Constraints: windowsservercore-ltsc2022
+
+Tags: 3.9-7.3.12-windowsservercore-1809, 3.9-7.3-windowsservercore-1809, 3.9-7-windowsservercore-1809, 3.9-windowsservercore-1809
+SharedTags: 3.9-7.3.12, 3.9-7.3, 3.9-7, 3.9, 3.9-7.3.12-windowsservercore, 3.9-7.3-windowsservercore, 3.9-7-windowsservercore, 3.9-windowsservercore
+Architectures: windows-amd64
+GitCommit: 4a2918a33ab52da23ce6cd3b0754ba54521cf1e0
+Directory: 3.9/windows/windowsservercore-1809
+Constraints: windowsservercore-1809
+
+Tags: 2.7-7.3.13-bookworm, 2.7-7.3-bookworm, 2.7-7-bookworm, 2.7-bookworm, 2-7.3.13-bookworm, 2-7.3-bookworm, 2-7-bookworm, 2-bookworm
+Architectures: amd64, arm64v8, i386
+GitCommit: aa454a51687d87368d17c300dd06e4916ab4c539
+Directory: 2.7/bookworm
+
+Tags: 2.7-7.3.13-slim-bookworm, 2.7-7.3-slim-bookworm, 2.7-7-slim-bookworm, 2.7-slim-bookworm, 2-7.3.13-slim-bookworm, 2-7.3-slim-bookworm, 2-7-slim-bookworm, 2-slim-bookworm
+Architectures: amd64, arm64v8, i386
+GitCommit: aa454a51687d87368d17c300dd06e4916ab4c539
+Directory: 2.7/slim-bookworm
+
+Tags: 2.7-7.3.13-bullseye, 2.7-7.3-bullseye, 2.7-7-bullseye, 2.7-bullseye, 2-7.3.13-bullseye, 2-7.3-bullseye, 2-7-bullseye, 2-bullseye
+SharedTags: 2.7-7.3.13, 2.7-7.3, 2.7-7, 2.7, 2-7.3.13, 2-7.3, 2-7, 2
+Architectures: amd64, arm64v8, i386
+GitCommit: aa454a51687d87368d17c300dd06e4916ab4c539
+Directory: 2.7/bullseye
+
+Tags: 2.7-7.3.13-slim, 2.7-7.3-slim, 2.7-7-slim, 2.7-slim, 2-7.3.13-slim, 2-7.3-slim, 2-7-slim, 2-slim, 2.7-7.3.13-slim-bullseye, 2.7-7.3-slim-bullseye, 2.7-7-slim-bullseye, 2.7-slim-bullseye, 2-7.3.13-slim-bullseye, 2-7.3-slim-bullseye, 2-7-slim-bullseye, 2-slim-bullseye
+Architectures: amd64, arm64v8, i386
+GitCommit: aa454a51687d87368d17c300dd06e4916ab4c539
+Directory: 2.7/slim-bullseye
+
+Tags: 2.7-7.3.13-windowsservercore-ltsc2022, 2.7-7.3-windowsservercore-ltsc2022, 2.7-7-windowsservercore-ltsc2022, 2.7-windowsservercore-ltsc2022, 2-7.3.13-windowsservercore-ltsc2022, 2-7.3-windowsservercore-ltsc2022, 2-7-windowsservercore-ltsc2022, 2-windowsservercore-ltsc2022
+SharedTags: 2.7-7.3.13, 2.7-7.3, 2.7-7, 2.7, 2-7.3.13, 2-7.3, 2-7, 2, 2.7-7.3.13-windowsservercore, 2.7-7.3-windowsservercore, 2.7-7-windowsservercore, 2.7-windowsservercore, 2-7.3.13-windowsservercore, 2-7.3-windowsservercore, 2-7-windowsservercore, 2-windowsservercore
+Architectures: windows-amd64
+GitCommit: aa454a51687d87368d17c300dd06e4916ab4c539
+Directory: 2.7/windows/windowsservercore-ltsc2022
+Constraints: windowsservercore-ltsc2022
+
+Tags: 2.7-7.3.13-windowsservercore-1809, 2.7-7.3-windowsservercore-1809, 2.7-7-windowsservercore-1809, 2.7-windowsservercore-1809, 2-7.3.13-windowsservercore-1809, 2-7.3-windowsservercore-1809, 2-7-windowsservercore-1809, 2-windowsservercore-1809
+SharedTags: 2.7-7.3.13, 2.7-7.3, 2.7-7, 2.7, 2-7.3.13, 2-7.3, 2-7, 2, 2.7-7.3.13-windowsservercore, 2.7-7.3-windowsservercore, 2.7-7-windowsservercore, 2.7-windowsservercore, 2-7.3.13-windowsservercore, 2-7.3-windowsservercore, 2-7-windowsservercore, 2-windowsservercore
+Architectures: windows-amd64
+GitCommit: aa454a51687d87368d17c300dd06e4916ab4c539
Directory: 2.7/windows/windowsservercore-1809
Constraints: windowsservercore-1809
diff --git a/library/python b/library/python
index b2acccddcc..af6430a43e 100644
--- a/library/python
+++ b/library/python
@@ -1,172 +1,193 @@
-# this file is generated via https://github.com/docker-library/python/blob/77bc1b09cb908b61e12fed603286516e4b5a9877/generate-stackbrew-library.sh
+# this file is generated via https://github.com/docker-library/python/blob/7eefa0c4911bcf998ff5f880df51dc7f8bbf6dec/generate-stackbrew-library.sh
Maintainers: Tianon Gravi