Merge branch 'docker-library:master' into master

This commit is contained in:
Adrian Nöthlich 2023-10-09 10:51:57 +02:00 committed by GitHub
commit edbdd76b98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
254 changed files with 8309 additions and 6569 deletions

View File

@ -0,0 +1 @@
docker/dockerfile:1@sha256:39b85bbfa7536a5feceb7372a0817649ecb2724562a38360f4d6a7782a409b14

View File

@ -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

64
.bin/docker-buildx-ensure.sh Executable file
View File

@ -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"

55
.buildkit-build-contexts.sh Executable file
View File

@ -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

View File

@ -0,0 +1 @@
sha256:ac85f380a63b13dfcefa89046420e1781752bab202122f8f50032edf31be0021

View File

@ -0,0 +1 @@
sha256:40032a50e6841b886507a17805318566fdfc9085a2e8590524aeaa7caf11d2d0

16
.external-pins/file.sh Executable file
View File

@ -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

19
.external-pins/list.sh Executable file
View File

@ -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)

View File

@ -0,0 +1 @@
sha256:4bb2610b0e4f848e81d091cba672b0308a8eebf6c4a4f006e9c4c12b85d1823e

View File

@ -0,0 +1 @@
sha256:6562c9a2580260e4f2e3a081cc2cf1d960899cbce7c4568fb851e4848ca50e07

View File

@ -0,0 +1 @@
sha256:3cba12bffca83466997158c8a0d38f20a18fb14f5ec62cd6454dfdd328278d87

View File

@ -0,0 +1 @@
sha256:d227d7ab11f4aa0da7779adc31616924cf0b15846a10313d83a644541208f80b

View File

@ -0,0 +1 @@
sha256:890dcae054e3039f6c6b76bf0da80a130fa6e6bb1f3624063ef0210ac2c57b06

View File

@ -0,0 +1 @@
sha256:621f5245fb3e8597a626163cdf1229e1f8311e07ab71bb1e9332014b51c59f9c

View File

@ -0,0 +1 @@
sha256:a7143118671dfc61aca46e8ab9e488500495a3c4c73a69577ca9386564614c13

View File

@ -0,0 +1 @@
sha256:0dfa71a7ec2caf445e7ac6b7422ae67f3518960bd6dbf62a7b77fa7a6cfc02b1

View File

@ -0,0 +1 @@
sha256:351ed8b24d440c348486efd99587046e88bb966890a9207a5851d3a34a4dd346

26
.external-pins/tag.sh Executable file
View File

@ -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

25
.external-pins/update.sh Executable file
View File

@ -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

19
.github/workflows/.bashbrew/action.yml vendored Normal file
View File

@ -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'

View File

@ -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

View File

@ -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 = "<details>\n<summary>" + commentText + "</summary>\n\n```diff\n" + diff + "\n```\n\n</details>";
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 = "<details>\n<summary>" + commentText + "</summary>\n\n```diff\n" + diff + "\n```\n\n</details>";
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

View File

@ -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"

View File

@ -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

View File

@ -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

View File

@ -3,7 +3,7 @@
Tianon Gravi <admwiggin@gmail.com> (@tianon)
Joseph Ferguson <yosifkit@gmail.com> (@yosifkit)
# Emeritus: Talon Bowler <nolat301@gmail.com> (@moghedrin)
# Emeritus: Talon Bowler <nolat301@gmail.com> (@daghack)
# Emeritus: Peter Salvatore <peter@psftw.com> (@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).

View File

@ -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)

View File

@ -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 <larry@hastings.org>" 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 <admwiggin@gmail.com> (@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 `<manifest-filename>:<tag>` (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.

11
SECURITY.md Normal file
View File

@ -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.

View File

@ -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) -}}

View File

@ -1 +0,0 @@
0.1.1

View File

@ -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 \

View File

@ -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 <tim@bastelstu.be> (@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

View File

@ -1,387 +0,0 @@
# AdoptOpenJDK official images for OpenJDK with HotSpot and OpenJDK with Eclipse OpenJ9.
Maintainers: George Adams <george.adams@microsoft.com> (@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

View File

@ -1,13 +1,16 @@
Maintainers: Lucien Volmar <lucien@aerospike.com> (@volmarl),
Michael Coberly <mcoberly@aerospike.com> (@mcoberly2),
Phuc Vinh <pvinh@aerospike.com> (@pvinh-spike)
Phuc Vinh <pvinh@aerospike.com> (@pvinh-spike),
Kevin Porter <kporter@aerospike.com> (@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

View File

@ -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 <cloud-infra@almalinux.org> (@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

View File

@ -1,22 +1,23 @@
Maintainers: Natanael Copa <ncopa@alpinelinux.org> (@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/

View File

@ -4,27 +4,32 @@ Maintainers: ALT Linux Team Cloud <alt-cloud@altlinux.org> (@alt-cloud),
Mikhail Gordeev <obirvalger@altlunux.org> (@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/

View File

@ -1,35 +1,203 @@
Maintainers: Amazon Corretto Team <corretto-team@amazon.com> (@corretto),
James Guo <junguoj@amazon.com> (@jguo11),
Dan Lutker <lutkerd@amazon.com> (@lutkerd),
Ben Taylor <benty@amazon.com> (@benty-amzn),
Clive Verghese <verghese@amazon.com> (@cliveverghese)
Joshua Cao <joshcao@amazon.com> (@caojoshua),
David Alvarez <alvdavi@amazon.com> (@alvdavi),
Rui Li <ruiamzn@amazon.com> (@rgithubli),
Sergey Bylokhov <bylokhov@amazon.com> (@mrserb),
Victor Rudometov <vicrud@amazon.com> (@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

View File

@ -1,32 +1,33 @@
Maintainers: Amazon Linux <amazon-linux@amazon.com> (@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

15
library/api-firewall Normal file
View File

@ -0,0 +1,15 @@
Maintainers: Ivan Novikov <in@wallarm.com> (@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

View File

@ -1,10 +1,18 @@
Maintainers: Frank Celler <info@arangodb.com> (@fceller), Wilfried Goesgens <w.goesgens@arangodb.org> (@dothebart), Vadim Kondratyev <vadim@arangodb.org> (@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

View File

@ -5,13 +5,13 @@ Maintainers: Santiago Torres-Arias <santiago@archlinux.org> (@SantiagoTorres),
Justin Kromlinger <hashworks@archlinux.org> (@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

View File

@ -1,16 +1,15 @@
Maintainers: Mike Pirog <mike@kalabox.io> (@pirog),
Geoff St. Pierre <serundeputy@gmail.com> (@serundeputy),
Jen Lampton <jen+docker@jeneration.com> (@jenlampton),
Pol Dellaiera <pol.dellaiera@protonmail.com> (@drupol),
Greg Netsas <greg@userfriendly.tech> (@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

View File

@ -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 <admwiggin@gmail.com> (@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

View File

@ -1,24 +1,24 @@
Maintainers: Baptiste Mesta <baptiste.mesta@bonitasoft.org> (@baptistemesta),
Danila Mazour <danila.mazour@bonitasoft.org> (@danila-m),
Maintainers: Danila Mazour <danila.mazour@bonitasoft.org> (@danila-m),
Emmanuel Duchastenier <emmanuel.duchastenier@bonitasoft.org> (@educhastenier),
Pascal Garcia <pascal.garcia@bonitasoft.org> (@passga),
Anthony Birembaut <anthony.birembaut@bonitasoft.org> (@abirembaut),
Dumitru Corini <dumitru.corini@bonitasoft.org> (@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
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

View File

@ -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 <admwiggin@gmail.com> (@tianon),
Joseph Ferguson <yosifkit@gmail.com> (@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

View File

@ -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 <admwiggin@gmail.com> (@tianon),
Joseph Ferguson <yosifkit@gmail.com> (@yosifkit),
Jérôme Petazzoni <jerome.petazzoni@gmail.com> (@jpetazzo)
Joseph Ferguson <yosifkit@gmail.com> (@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

View File

@ -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

View File

@ -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 <admwiggin@gmail.com> (@tianon),
Joseph Ferguson <yosifkit@gmail.com> (@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

View File

@ -2,15 +2,6 @@ Maintainers: The CentOS Project <cloud-ops@centos.org> (@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

View File

@ -1,14 +1,8 @@
Maintainers: Jonathan A. Sternberg <jonathan@influxdata.com> (@jsternberg),
Bucky Schwarz <bucky@influxdata.com> (@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 <bucky@influxdata.com> (@hoorayimhelping),
Brandon Pfeifer <bpfeifer@influxdata.com> (@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

View File

@ -3,12 +3,11 @@
Maintainers: Tianon Gravi <admwiggin@gmail.com> (@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

View File

@ -2,5 +2,5 @@ Maintainers: William Douglas <william.douglas@intel.com> (@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

View File

@ -1,98 +1,167 @@
Maintainers: Paul Lam <paul@quantisan.com> (@Quantisan),
Wes Morgan <wes@wesmorgan.me> (@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

View File

@ -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

View File

@ -1,25 +1,20 @@
Maintainers: Consul Team <consul@hashicorp.com> (@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

View File

@ -1,7 +1,7 @@
Maintainers: Nicolas Albert <nicolasa@convertigo.com> (@nicolas-albert), Olivier Picciotto <olivier.picciotto@convertigo.com> (@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

View File

@ -1,65 +1,38 @@
Maintainers: Couchbase Docker Team <docker@couchbase.com> (@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

View File

@ -1,24 +1,27 @@
# see https://couchdb.apache.org/
# also the announce@couchdb.apache.org mailing list
Maintainers: Joan Touzet <wohali@apache.org> (@wohali)
Maintainers: Joan Touzet <wohali@apache.org> (@wohali), Jan Lehnardt <jan@apache.org> (@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

View File

@ -4,31 +4,18 @@ Maintainers: Mathias Fußenegger <mathias@crate.io> (@mfussenegger),
Andreas Motl <andreas.motl@crate.io> (@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

View File

@ -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

View File

@ -1,7 +1,12 @@
Maintainers: Alexander Thomas <athom@google.com> (@athomas), Tony Pujals <tonypujals@google.com> (@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

View File

@ -4,34 +4,50 @@
Maintainers: Tianon Gravi <tianon@debian.org> (@tianon),
Paul Tagliamonte <paultag@debian.org> (@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

View File

@ -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@dockerproject.org> (@tianon),
Joseph Ferguson <yosifkit@gmail.com> (@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

View File

@ -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 <admwiggin@gmail.com> (@tianon),
Joseph Ferguson <yosifkit@gmail.com> (@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

View File

@ -1,19 +1,13 @@
Maintainers: Roger Light <roger@atchoo.org> (@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

493
library/eclipse-temurin Normal file
View File

@ -0,0 +1,493 @@
# Eclipse Temurin OpenJDK images provided by the Eclipse Foundation.
Maintainers: George Adams <george.adams@microsoft.com> (@gdams),
Stewart Addison <sxa@redhat.com> (@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

View File

@ -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

View File

@ -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 <admwiggin@gmail.com> (@tianon),
Joseph Ferguson <yosifkit@gmail.com> (@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

View File

@ -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@users.noreply.github.com> (@c0b),
Tristan Sloughter <t@crashfast.com> (@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

27
library/emqx Normal file
View File

@ -0,0 +1,27 @@
Maintainers: Rory Z <rory-z@outlook.com> (@rory-z), Ivan Dyachkov <ivan.dyachkov@emqx.io> (@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

View File

@ -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 <denc716@gmail.com> (@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

View File

@ -1,44 +0,0 @@
Maintainers: Li Ruilin <liruilin4@huawei.com> (@Kazero0),
Liu Hua <sdu.liu@huawei.com> (@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

View File

@ -1,40 +1,38 @@
Maintainers: Clement Verna <cverna@fedoraproject.org> (@cverna), Vipul Siddharth <siddharthvipul1@fedoraproject.org> (@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/

View File

@ -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 <dev@flink.apache.org> (@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
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

View File

@ -3,13 +3,13 @@ Maintainers: Masahiro Nakagawa <repeatedly@gmail.com> (@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

View File

@ -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 <info@friendi.ca> (@friendica), Philipp Holzer <admin@philipp.info> (@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

View File

@ -1,14 +0,0 @@
Maintainers: Dave Curylo <dave@curylo.org> (@ninjarobot),
Steve Desmond <steve@stevedesmond.ca> (@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

View File

@ -1,62 +1,19 @@
Maintainers: Tully Foote <tfoote+buildfarm@osrfoundation.org> (@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

View File

@ -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 <admwiggin@gmail.com> (@tianon),
Joseph Ferguson <yosifkit@gmail.com> (@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

View File

@ -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 <jo@doublebyte.net> (@doublebyte1),
Juan Luis Rodriguez <juanluisrp@geocat.net> (@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

View File

@ -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 <admwiggin@gmail.com> (@tianon),
Joseph Ferguson <yosifkit@gmail.com> (@yosifkit)
Joseph Ferguson <yosifkit@gmail.com> (@yosifkit),
Austin Burdine <austin@acburdine.me> (@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

View File

@ -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 <admwiggin@gmail.com> (@tianon),
Joseph Ferguson <yosifkit@gmail.com> (@yosifkit),
Johan Euphrosine <proppy@google.com> (@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

View File

@ -1,121 +1,167 @@
Maintainers: Keegan Witt <keeganwitt@gmail.com> (@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

View File

@ -1,74 +1,31 @@
Maintainers: Keegan Witt <keeganwitt@gmail.com> (@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

View File

@ -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 <admwiggin@gmail.com> (@tianon),
Joseph Ferguson <yosifkit@gmail.com> (@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

View File

@ -1,20 +1,43 @@
Maintainers: Peter Salvatore <peter@psftw.com> (@psftw),
Herbert Valerio Riedel <hvr@gnu.org> (@hvr),
Alistair Burrowes <afburrowes@gmail.com> (@AlistairB)
Maintainers: Albert Krewinkel <albert+docker@tarleb.com> (@tarleb),
Andrei Dziahel <develop7@develop7.info> (@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

View File

@ -1,282 +1,257 @@
Maintainers: Andy Li <andy@onthewings.net> (@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

View File

@ -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 <admwiggin@gmail.com> (@tianon),
Joseph Ferguson <yosifkit@gmail.com> (@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

View File

@ -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 <thijs@varni.sh> (@thijsferyn),
Guillaume Quintard <guillaume@varni.sh> (@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

View File

@ -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 <admwiggin@gmail.com> (@tianon),
Joseph Ferguson <yosifkit@gmail.com> (@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

View File

@ -1,124 +1,119 @@
Maintainers: Paul Tagliamonte <paultag@hylang.org> (@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

163
library/ibm-semeru-runtimes Normal file
View File

@ -0,0 +1,163 @@
# IBM Semeru Runtimes official Docker images.
Maintainers: Surya Narkedimilli <snarkedi@in.ibm.com> (@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

View File

@ -1,34 +1,21 @@
# ibmjava official images
#ibmjava official images
Maintainers: Dinakar Guniguntala <dinakar.g@in.ibm.com> (@dinogun)
Maintainers: Jayashree Gopi <jayasg12@in.ibm.com> (@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

View File

@ -1,49 +1,55 @@
Maintainers: Cody Shepherd (@codyshepherd), Daniel Moran <dmoran@influxdata.com> (@danxmoran)
GitRepo: git://github.com/influxdata/influxdata-docker
GitCommit: 8d81b0d850949889038cd8652a9b2a32088ec3c3
Maintainers: Brandon Pfeifer <bpfeifer@influxdata.com> (@bnpfeife),
Jeffrey Smith <jsmith@influxdata.com> (@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

View File

@ -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 <acidburn@google.com> (@jessfraz),
Tianon Gravi <admwiggin@gmail.com> (@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

View File

@ -4,122 +4,237 @@ Maintainers: Greg Wilkins <gregw@webtide.com> (@gregw),
Joakim Erdfelt <joakim@webtide.com> (@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

View File

@ -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 <harald.leithner@community.joomla.org> (@HLeithner)
Maintainers: Llewellyn van der Merwe <llewellyn.van-der-merwe@community.joomla.org> (@Llewellynvdm),
Harald Leithner <harald.leithner@community.joomla.org> (@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

View File

@ -3,40 +3,53 @@ Maintainers: JRuby Admin <admin@jruby.org> (@jruby),
Thomas E Enebo <tom.enebo@gmail.com> (@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

Some files were not shown because too many files have changed in this diff Show More