Compare commits

...

No commits in common. "master" and "release/20210718.0.29333" have entirely different histories.

402 changed files with 15025 additions and 2 deletions

1
.dockerignore Symbolic link
View File

@ -0,0 +1 @@
.gitignore

2
.gitattributes vendored Normal file
View File

@ -0,0 +1,2 @@
# https://github.com/actions/checkout/issues/135#issuecomment-613361104
* text eol=lf

9
.github/ISSUE_TEMPLATE.md vendored Normal file
View File

@ -0,0 +1,9 @@
<!--
WAIT! Before you file an issue here, please keep in mind that your issue is _probably_ more appropriately filed somewhere else.
Specifically, if your issue is in regards to the documentation of an image, it should be filed at https://github.com/docker-library/docs/issues
If your issue is in regards to a specific image, please see the "Issues" section of the relevant image's description on the Docker Hub for information about where to file issues for that image. For example, issues with the "python" image should be filed at https://github.com/docker-library/python/issues, NOT here.
-->

57
.github/workflows/generate.sh vendored Executable file
View File

@ -0,0 +1,57 @@
#!/usr/bin/env bash
set -Eeuo pipefail
bashbrewDir="$1"; shift
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-)"
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="$(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"
| .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"))
)
# 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
| .runs.test |= gsub("[^\n\t ]+/run[.]sh "; "./test/run.sh ")
]' <<<"$newStrategy")"
jq -c . <<<"$newStrategy" > /dev/null # sanity check
strategy="$(jq -c '
# https://stackoverflow.com/a/53666584/433558
def meld(a; b):
if (a | type) == "object" and (b | type) == "object" then
# for some reason, "a" and "b" go out of scope for reduce??
a as $a | b as $b |
reduce (a + b | keys_unsorted[]) as $k
({}; .[$k] = meld($a[$k]; $b[$k]))
elif (a | type) == "array" and (b | type) == "array" then
a + b
elif b == null then
a
else
b
end;
meld(.[0]; .[1])
' <<<"[$strategy,$newStrategy]")"
done
jq -c . <<<"$strategy" > /dev/null # sanity check
if [ -t 1 ]; then
jq <<<"$strategy"
else
cat <<<"$strategy"
fi

111
.github/workflows/munge-pr.yml vendored Normal file
View File

@ -0,0 +1,111 @@
name: Munge PR
on:
pull_request_target:
defaults:
run:
shell: 'bash -Eeuo pipefail -x {0}'
env:
# https://github.com/docker-library/bashbrew/issues/10
GIT_LFS_SKIP_SMUDGE: 1
jobs:
apply-labels:
name: Apply Labels
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
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
run: |
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'
fi
labels="$(jq -Rsc 'rtrimstr("\n") | split("\n") | { labels: ., count: length }' <<<"$labels")"
jq . <<<"$labels"
echo "::set-output name=labels::$labels"
- name: Apply Labels
uses: actions/github-script@v3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
const data = ${{ steps.labels.outputs.labels }};
github.issues.addLabels({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.payload.pull_request.number,
labels: data.labels,
});
if: fromJSON(steps.labels.outputs.labels).count > 0
diff:
name: Diff Comment
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
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
- 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"
docker build --tag oisupport/bashbrew:diff-pr .
- id: diff
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
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 + ':';
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,
});
}
}
}
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({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.payload.pull_request.number,
body: body,
});
}
if: fromJSON(steps.diff.outputs.length) > 0

60
.github/workflows/naughty.sh vendored Executable file
View File

@ -0,0 +1,60 @@
#!/usr/bin/env bash
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-)"
repos="$(xargs -rn1 basename <<<"$changes")"
set -- $repos
fi
if [ "$#" -eq 0 ]; then
echo >&2 'No library/ changes detected, skipping.'
exit
fi
export BASHBREW_LIBRARY="$PWD/library"
bashbrew from --uniq "$@" > /dev/null
if badTags="$(bashbrew list "$@" | grep -E ':.+latest.*|:.*latest.+')" && [ -n "$badTags" ]; then
echo >&2
echo >&2 "Incorrectly formatted 'latest' tags detected:"
echo >&2 ' ' $badTags
echo >&2
echo >&2 'Read https://github.com/docker-library/official-images#tags-and-aliases for more details.'
echo >&2
exit 1
fi
naughtyFrom="$(./naughty-from.sh "$@")"
if [ -n "$naughtyFrom" ]; then
echo >&2
echo >&2 "Invalid 'FROM' + 'Architectures' combinations detected:"
echo >&2
echo >&2 "$naughtyFrom"
echo >&2
echo >&2 'Read https://github.com/docker-library/official-images#multiple-architectures for more details.'
echo >&2
exit 1
fi
naughtyConstraints="$(./naughty-constraints.sh "$@")"
if [ -n "$naughtyConstraints" ]; then
echo >&2
echo >&2 "Invalid 'FROM' + 'Constraints' combinations detected:"
echo >&2
echo >&2 "$naughtyConstraints"
echo >&2
exit 1
fi
naughtyCommits="$(./naughty-commits.sh "$@")"
if [ -n "$naughtyCommits" ]; then
echo >&2
echo >&2 "Unpleasant commits detected:"
echo >&2
echo >&2 "$naughtyCommits"
echo >&2
exit 1
fi

74
.github/workflows/test-pr.yml vendored Normal file
View File

@ -0,0 +1,74 @@
name: Test PR
on:
pull_request:
defaults:
run:
shell: 'bash -Eeuo pipefail -x {0}'
env:
# https://github.com/docker-library/bashbrew/issues/10
GIT_LFS_SKIP_SMUDGE: 1
jobs:
naughty:
name: Naughty
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- 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
generate-jobs:
name: Generate Jobs
runs-on: ubuntu-latest
outputs:
strategy: ${{ steps.generate-jobs.outputs.strategy }}
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- 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)"
jq . <<<"$strategy" # sanity check / debugging aid
echo "::set-output name=strategy::$strategy"
test:
needs: generate-jobs
strategy: ${{ fromJson(needs.generate-jobs.outputs.strategy) }}
name: ${{ matrix.name }}
runs-on: ${{ matrix.os }}
steps:
- name: Prepare Git
run: |
# enable symlinks on Windows (https://git-scm.com/docs/git-config#Documentation/git-config.txt-coresymlinks)
git config --global core.symlinks true
# also, make sure Windows symlinks are *real* symlinks (https://github.com/git-for-windows/git/pull/156)
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
- name: Prepare Environment
run: ${{ matrix.runs.prepare }}
- name: Pull Dependencies
run: ${{ matrix.runs.pull }}
- name: Build ${{ matrix.name }}
run: ${{ matrix.runs.build }}
- name: History ${{ matrix.name }}
run: ${{ matrix.runs.history }}
- name: Test ${{ matrix.name }}
run: ${{ matrix.runs.test }}
- name: '"docker images"'
run: ${{ matrix.runs.images }}

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.git

49
CODE-OF-CONDUCT.md Normal file
View File

@ -0,0 +1,49 @@
# Contributor Covenant Code of Conduct
## Our Pledge
We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation.
We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.
## Our Standards
Examples of behavior that contributes to a positive environment for our community include:
- Demonstrating empathy and kindness toward other people
- Being respectful of differing opinions, viewpoints, and experiences
- Giving and gracefully accepting constructive feedback
- Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience
- Focusing on what is best not just for us as individuals, but for the overall community
Examples of unacceptable behavior include:
- The use of sexualized language or imagery, and sexual attention or advances of any kind
- Trolling, insulting or derogatory comments, and personal or political attacks
- Public or private harassment
- Publishing others' private information, such as a physical or email address, without their explicit permission
- Other conduct which could reasonably be considered inappropriate in a professional setting
## Enforcement Responsibilities
Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful.
Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate.
## Scope
This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event.
## Enforcement
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement as listed in [the MAINTAINERS file](https://github.com/docker-library/official-images/blob/master/MAINTAINERS). All complaints will be reviewed and investigated promptly and fairly.
All community leaders are obligated to respect the privacy and security of the reporter of any incident.
## Attribution
This Code of Conduct is adapted from the [Contributor Covenant](https://www.contributor-covenant.org), version 2.0, available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity).
For answers to common questions about this code of conduct, see the FAQ at https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations.

23
Dockerfile Normal file
View File

@ -0,0 +1,23 @@
# FYI, this base image is built via test-pr.sh (from https://github.com/docker-library/bashbrew/tree/master/Dockerfile)
FROM oisupport/bashbrew:base
RUN set -eux; \
apt-get update; \
apt-get install -y --no-install-recommends \
# wget for downloading files (especially in tests, which run in this environment)
ca-certificates \
wget \
# git for cloning source code
git \
# gawk for diff-pr.sh
gawk \
# tar -tf in diff-pr.sh
bzip2 \
; \
rm -rf /var/lib/apt/lists/*
ENV DIR /usr/src/official-images
ENV BASHBREW_LIBRARY $DIR/library
WORKDIR $DIR
COPY . $DIR

191
LICENSE Normal file
View File

@ -0,0 +1,191 @@
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction,
and distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by
the copyright owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all
other entities that control, are controlled by, or are under common
control with that entity. For the purposes of this definition,
"control" means (i) the power, direct or indirect, to cause the
direction or management of such entity, whether by contract or
otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity
exercising permissions granted by this License.
"Source" form shall mean the preferred form for making modifications,
including but not limited to software source code, documentation
source, and configuration files.
"Object" form shall mean any form resulting from mechanical
transformation or translation of a Source form, including but
not limited to compiled object code, generated documentation,
and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or
Object form, made available under the License, as indicated by a
copyright notice that is included in or attached to the work
(an example is provided in the Appendix below).
"Derivative Works" shall mean any work, whether in Source or Object
form, that is based on (or derived from) the Work and for which the
editorial revisions, annotations, elaborations, or other modifications
represent, as a whole, an original work of authorship. For the purposes
of this License, Derivative Works shall not include works that remain
separable from, or merely link (or bind by name) to the interfaces of,
the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including
the original version of the Work and any modifications or additions
to that Work or Derivative Works thereof, that is intentionally
submitted to Licensor for inclusion in the Work by the copyright owner
or by an individual or Legal Entity authorized to submit on behalf of
the copyright owner. For the purposes of this definition, "submitted"
means any form of electronic, verbal, or written communication sent
to the Licensor or its representatives, including but not limited to
communication on electronic mailing lists, source code control systems,
and issue tracking systems that are managed by, or on behalf of, the
Licensor for the purpose of discussing and improving the Work, but
excluding communication that is conspicuously marked or otherwise
designated in writing by the copyright owner as "Not a Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity
on behalf of whom a Contribution has been received by Licensor and
subsequently incorporated within the Work.
2. Grant of Copyright License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
copyright license to reproduce, prepare Derivative Works of,
publicly display, publicly perform, sublicense, and distribute the
Work and such Derivative Works in Source or Object form.
3. Grant of Patent License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
(except as stated in this section) patent license to make, have made,
use, offer to sell, sell, import, and otherwise transfer the Work,
where such license applies only to those patent claims licensable
by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s)
with the Work to which such Contribution(s) was submitted. If You
institute patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Work
or a Contribution incorporated within the Work constitutes direct
or contributory patent infringement, then any patent licenses
granted to You under this License for that Work shall terminate
as of the date such litigation is filed.
4. Redistribution. You may reproduce and distribute copies of the
Work or Derivative Works thereof in any medium, with or without
modifications, and in Source or Object form, provided that You
meet the following conditions:
(a) You must give any other recipients of the Work or
Derivative Works a copy of this License; and
(b) You must cause any modified files to carry prominent notices
stating that You changed the files; and
(c) You must retain, in the Source form of any Derivative Works
that You distribute, all copyright, patent, trademark, and
attribution notices from the Source form of the Work,
excluding those notices that do not pertain to any part of
the Derivative Works; and
(d) If the Work includes a "NOTICE" text file as part of its
distribution, then any Derivative Works that You distribute must
include a readable copy of the attribution notices contained
within such NOTICE file, excluding those notices that do not
pertain to any part of the Derivative Works, in at least one
of the following places: within a NOTICE text file distributed
as part of the Derivative Works; within the Source form or
documentation, if provided along with the Derivative Works; or,
within a display generated by the Derivative Works, if and
wherever such third-party notices normally appear. The contents
of the NOTICE file are for informational purposes only and
do not modify the License. You may add Your own attribution
notices within Derivative Works that You distribute, alongside
or as an addendum to the NOTICE text from the Work, provided
that such additional attribution notices cannot be construed
as modifying the License.
You may add Your own copyright statement to Your modifications and
may provide additional or different license terms and conditions
for use, reproduction, or distribution of Your modifications, or
for any such Derivative Works as a whole, provided Your use,
reproduction, and distribution of the Work otherwise complies with
the conditions stated in this License.
5. Submission of Contributions. Unless You explicitly state otherwise,
any Contribution intentionally submitted for inclusion in the Work
by You to the Licensor shall be under the terms and conditions of
this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify
the terms of any separate license agreement you may have executed
with Licensor regarding such Contributions.
6. Trademarks. This License does not grant permission to use the trade
names, trademarks, service marks, or product names of the Licensor,
except as required for reasonable and customary use in describing the
origin of the Work and reproducing the content of the NOTICE file.
7. Disclaimer of Warranty. Unless required by applicable law or
agreed to in writing, Licensor provides the Work (and each
Contributor provides its Contributions) on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied, including, without limitation, any warranties or conditions
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
PARTICULAR PURPOSE. You are solely responsible for determining the
appropriateness of using or redistributing the Work and assume any
risks associated with Your exercise of permissions under this License.
8. Limitation of Liability. In no event and under no legal theory,
whether in tort (including negligence), contract, or otherwise,
unless required by applicable law (such as deliberate and grossly
negligent acts) or agreed to in writing, shall any Contributor be
liable to You for damages, including any direct, indirect, special,
incidental, or consequential damages of any character arising as a
result of this License or out of the use or inability to use the
Work (including but not limited to damages for loss of goodwill,
work stoppage, computer failure or malfunction, or any and all
other commercial damages or losses), even if such Contributor
has been advised of the possibility of such damages.
9. Accepting Warranty or Additional Liability. While redistributing
the Work or Derivative Works thereof, You may choose to offer,
and charge a fee for, acceptance of support, warranty, indemnity,
or other liability obligations and/or rights consistent with this
License. However, in accepting such obligations, You may act only
on Your own behalf and on Your sole responsibility, not on behalf
of any other Contributor, and only if You agree to indemnify,
defend, and hold each Contributor harmless for any liability
incurred by, or claims asserted against, such Contributor by reason
of your accepting any such warranty or additional liability.
END OF TERMS AND CONDITIONS
Copyright 2014 Docker, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

9
MAINTAINERS Normal file
View File

@ -0,0 +1,9 @@
# This file lists the maintainers of the Official Images program at large, not necessarily the maintainers of any given image.
Tianon Gravi <admwiggin@gmail.com> (@tianon)
Joseph Ferguson <yosifkit@gmail.com> (@yosifkit)
# Emeritus: Talon Bowler <nolat301@gmail.com> (@moghedrin)
# 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).

13
NEW-IMAGE-CHECKLIST.md Normal file
View File

@ -0,0 +1,13 @@
# Checklist for Review
**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?
- [ ] 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)
- [ ] official-images maintainer dockerization review for best practices and cache gotchas/improvements (ala [the official review guidelines](https://github.com/docker-library/official-images/blob/master/README.md#review-guidelines))?
- [ ] 2+ official-images maintainer dockerization review?
- [ ] existing official images have been considered as a base? (ie, if `foobar` needs Node.js, has `FROM node:...` instead of grabbing `node` via other means been considered?)
- [ ] if `FROM scratch`, tarballs only exist in a single commit within the associated history?
- [ ] passes current tests? any simple new tests that might be appropriate to add? (https://github.com/docker-library/official-images/tree/master/test)

445
README.md
View File

@ -1,3 +1,444 @@
# docker-library/official-images Fork
# Docker Official Images
This is a fork of [docker-library/official-images](https://github.com/docker-library/official-images). It is used by the Arch Linux team to create [automated pull requests](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/master/.gitlab-ci.yml).
## Table of Contents
<!-- AUTOGENERATED TOC -->
1. [Docker Official Images](#docker-official-images)
1. [Table of Contents](#table-of-contents)
2. [What are "Official Images"?](#what-are-official-images)
3. [Architectures other than amd64?](#architectures-other-than-amd64)
4. [More FAQs?](#more-faqs)
5. [Contributing to the standard library](#contributing-to-the-standard-library)
1. [Review Guidelines](#review-guidelines)
1. [Maintainership](#maintainership)
2. [Repeatability](#repeatability)
3. [Consistency](#consistency)
4. [Clarity](#clarity)
5. [init](#init)
6. [Cacheability](#cacheability)
7. [Security](#security)
1. [Image Build](#image-build)
2. [Runtime Configuration](#runtime-configuration)
3. [Security Releases](#security-releases)
8. [Multiple Architectures](#multiple-architectures)
2. [Commitment](#commitment)
6. [Library definition files](#library-definition-files)
1. [Filenames](#filenames)
2. [Tags and aliases](#tags-and-aliases)
3. [Instruction format](#instruction-format)
4. [Creating a new repository](#creating-a-new-repository)
5. [Adding a new tag in an existing repository (that you're the maintainer of)](#adding-a-new-tag-in-an-existing-repository-that-youre-the-maintainer-of)
6. [Change to a tag in an existing repository (that you're the maintainer of)](#change-to-a-tag-in-an-existing-repository-that-youre-the-maintainer-of)
7. [Bashbrew](#bashbrew)
<!-- AUTOGENERATED TOC -->
## What are "Official Images"?
The Docker Official Images are curated images [hosted on Docker Hub](https://hub.docker.com/u/library). The main tenets are:
- Focus on [Free](https://www.debian.org/social_contract#guidelines) and [Open-Source](https://opensource.org/) Software
- Support [multiple architectures](#architectures-other-than-amd64)
- Exemplify [`Dockerfile` best practices](https://docs.docker.com/develop/develop-images/dockerfile_best-practices/)
- [Actively rebuild](#library-definition-files) for updates and security fixes
- Adhere to upstream recommendations
- Add minimal quality-of-life behavior for the container environment where fit
See [Docker's documentation](https://docs.docker.com/docker-hub/official_repos/) for a good high-level overview of the program.
In essence we strive to heed upstream's recommendations on how they intend for their software to be consumed. Many images are maintained in collaboration with the relevant upstream project if not maintained directly by them. Additionally we aim to exemplify the best practices for Dockerfiles to serve as a reference when making or deriving your own images from them.
(If you are a representative of an upstream for which there exists an image and you would like to get involved, please see the [Maintainership](#maintainership) section below!)
## Architectures other than amd64?
Some images have been ported for other architectures, and many of these are officially supported (to various degrees).
- Architectures officially supported by Docker, Inc. for running Docker: (see [download.docker.com](https://download.docker.com/linux/))
- ARMv6 32-bit (`arm32v6`): https://hub.docker.com/u/arm32v6/
- ARMv7 32-bit (`arm32v7`): https://hub.docker.com/u/arm32v7/
- ARMv8 64-bit (`arm64v8`): https://hub.docker.com/u/arm64v8/
- Linux x86-64 (`amd64`): https://hub.docker.com/u/amd64/
- Windows x86-64 (`windows-amd64`): https://hub.docker.com/u/winamd64/
- Other architectures built by official images: (but *not* officially supported by Docker, Inc.)
- ARMv5 32-bit (`arm32v5`): https://hub.docker.com/u/arm32v5/
- 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.
If you're curious about how these are built, head over to https://doi-janky.infosiftr.net/job/multiarch/ to see the build scaffolding.
See the [multi-arch section](#multiple-architectures) below for recommendations in adding more architectures to an official image.
## More FAQs?
Yes! We have [a dedicated FAQ repository](https://github.com/docker-library/faq) where we try to collect other common questions (both about the program and about our practices).
## Contributing to the standard library
Thank you for your interest in the Docker official images project! We strive to make these instructions as simple and straightforward as possible, but if you find yourself lost, don't hesitate to seek us out on [Libera.Chat IRC](https://libera.chat) in channel `#docker-library` or by creating a GitHub issue here.
Be sure to familiarize yourself with [Official Repositories on Docker Hub](https://docs.docker.com/docker-hub/official_repos/) and the [Best practices for writing Dockerfiles](https://docs.docker.com/articles/dockerfile_best-practices/) in the Docker documentation. These will be the foundation of the review process performed by the official images maintainers. If you'd like the review process to go more smoothly, please ensure that your `Dockerfile`s adhere to all the points mentioned there, as well as [below](README.md#review-guidelines), before submitting a pull request.
Also, the Hub descriptions for these images are currently stored separately in the [`docker-library/docs` repository](https://github.com/docker-library/docs), whose [`README.md` file](https://github.com/docker-library/docs/blob/master/README.md) explains more about how it's structured and how to contribute to it. Please be prepared to submit a PR there as well, pending acceptance of your image here.
### Review Guidelines
Because the official images are intended to be learning tools for those new to Docker as well as the base images for advanced users to build their production releases, we review each proposed `Dockerfile` to ensure that it meets a minimum standard for quality and maintainability. While some of that standard is hard to define (due to subjectivity), as much as possible is defined here, while also adhering to the "Best Practices" where appropriate.
A checklist which may be used by the maintainers during review can be found in [`NEW-IMAGE-CHECKLIST.md`](NEW-IMAGE-CHECKLIST.md).
#### Maintainership
Version bumps and security fixes should be attended to in a timely manner.
If you do not represent upstream and upstream becomes interested in maintaining the image, steps should be taken to ensure a smooth transition of image maintainership over to upstream.
For upstreams interested in taking over maintainership of an existing repository, the first step is to get involved in the existing repository. Making comments on issues, proposing changes, and making yourself known within the "image community" (even if that "community" is just the current maintainer) are all important places to start to ensure that the transition is unsurprising to existing contributors and users.
When taking over an existing repository, please ensure that the entire Git history of the original repository is kept in the new upstream-maintained repository to make sure the review process isn't stalled during the transition. This is most easily accomplished by forking the new from the existing repository, but can also be accomplished by fetching the commits directly from the original and pushing them into the new repo (ie, `git fetch https://github.com/jsmith/example.git master`, `git rebase FETCH_HEAD`, `git push -f`). On GitHub, an alternative is to move ownership of the git repository. This can be accomplished without giving either group admin access to the other owner's repository:
- create temporary intermediary organization
- [docker-library-transitioner](https://github.com/docker-library-transitioner) is available for this purpose if you would like our help
- give old and new owners admin access to intermediary organization
- old owner transfers repo ownership to intermediary organization
- new owner transfers repo ownership to its new home
- recommend that old owner does not fork new repo back into the old organization to ensure that GitHub redirects will just work
#### Repeatability
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/)
#### Consistency
All official images should provide a consistent interface. A beginning user should be able to `docker run official-image bash` (or `sh`) without needing to learn about `--entrypoint`. It is also nice for advanced users to take advantage of entrypoint, so that they can `docker run official-image --arg1 --arg2` without having to specify the binary to execute.
1. If the startup process does not need arguments, just use `CMD`:
```Dockerfile
CMD ["irb"]
```
2. If there is initialization that needs to be done on start, like creating the initial database, use an `ENTRYPOINT` along with `CMD`:
```Dockerfile
ENTRYPOINT ["/docker-entrypoint.sh"]
CMD ["postgres"]
```
1. Ensure that `docker run official-image bash` (or `sh`) works too. The easiest way is to check for the expected command and if it is something else, just `exec "$@"` (run whatever was passed, properly keeping the arguments escaped).
```sh
#!/bin/sh
set -e
# this if will check if the first argument is a flag
# but only works if all arguments require a hyphenated flag
# -v; -SL; -f arg; etc will work, but not arg1 arg2
if [ "$#" -eq 0 ] || [ "${1#-}" != "$1" ]; then
set -- mongod "$@"
fi
# check for the expected command
if [ "$1" = 'mongod' ]; then
# init db stuff....
# use gosu (or su-exec) to drop to a non-root user
exec gosu mongod "$@"
fi
# else default to run whatever the user wanted like "bash" or "sh"
exec "$@"
```
3. If the image only contains the main executable and its linked libraries (ie no shell) then it is fine to use the executable as the `ENTRYPOINT`, since that is the only thing that can run:
```Dockerfile
ENTRYPOINT ["fully-static-binary"]
CMD ["--help"]
```
The most common indicator of whether this is appropriate is that the image `Dockerfile` starts with [`scratch`](https://registry.hub.docker.com/_/scratch/) (`FROM scratch`).
#### Clarity
Try to make the `Dockerfile` easy to understand/read. It may be tempting, for the sake of brevity, to put complicated initialization details into a standalone script and merely add a `RUN` command in the `Dockerfile`. However, this causes the resulting `Dockerfile` to be overly opaque, and such `Dockerfile`s are unlikely to pass review. Instead, it is recommended to put all the commands for initialization into the `Dockerfile` as appropriate `RUN` or `ENV` command combinations. To find good examples, look at the current official images.
Some examples at the time of writing:
- [php](https://github.com/docker-library/php/blob/b4aeb948e2e240c732d78890ff03285b16e8edda/5.6/Dockerfile)
- [python](https://github.com/docker-library/python/blob/3e5826ad0c6e29f07f6dc7ff8f30b4c54385d1bb/3.4/Dockerfile)
- [ruby:2.2](https://github.com/docker-library/ruby/blob/e34b201a0f0b49818fc8373f6a9148e13d546bdf/2.2/Dockerfile)
#### init
Following the Docker guidelines it is highly recommended that the resulting image be just one concern per container; predominantly this means just one process per container, so there is no need for a full init system. There are two situations where an init-like process would be helpful for the container. The first being signal handling. If the process launched does not handle `SIGTERM` by exiting, it will not be killed since it is PID 1 in the container (see "NOTE" at the end of the [Foreground section](https://docs.docker.com/engine/reference/run/#foreground) in the docker docs). The second situation would be zombie reaping. If the process spawns child processes and does not properly reap them it will lead to a full process table, which can prevent the whole system from spawning any new processes. For both of these concerns we recommend [tini](https://github.com/krallin/tini). It is incredibly small, has minimal external dependencies, fills each of these roles, and does only the necessary parts of reaping and signal forwarding.
Be sure to use tini in `CMD` or `ENTRYPOINT` as appropriate.
It is best to install tini from a distribution-provided package (ex. `apt-get install tini`). If tini is not available in your distribution or is too old, here is a snippet of a `Dockerfile` to add in tini:
```Dockerfile
# Install tini for signal processing and zombie killing
ENV TINI_VERSION v0.18.0
ENV TINI_SIGN_KEY 595E85A6B1B4779EA4DAAEC70B588DFF0527A9B7
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 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; \
chmod +x /usr/local/bin/tini; \
tini --version
```
#### Cacheability
This is one place that experience ends up trumping documentation for the path to enlightenment, but the following tips might help:
- Avoid `COPY`/`ADD` whenever possible, but when necessary, be as specific as possible (ie, `COPY one-file.sh /somewhere/` instead of `COPY . /somewhere`).
The reason for this is that the cache for `COPY` instructions considers file `mtime` changes to be a cache bust, which can make the cache behavior of `COPY` unpredictable sometimes, especially when `.git` is part of what needs to be `COPY`ed (for example).
- Ensure that lines which are less likely to change come before lines that are more likely to change (with the caveat that each line should generate an image that still runs successfully without assumptions of later lines).
For example, the line that contains the software version number (`ENV MYSOFTWARE_VERSION 4.2`) should come after a line that sets up the APT repository `.list` file (`RUN echo 'deb http://example.com/mysoftware/debian some-suite main' > /etc/apt/sources.list.d/mysoftware.list`).
#### Security
##### Image Build
The `Dockerfile` should be written to help mitigate interception attacks during build. Our requirements focus on three main objectives: verifying the source, verifying author, and verifying the content; these are respectively accomplished by the following: using https where possible; importing PGP keys with the full fingerprint in the `Dockerfile` to check signatures; embedding checksums directly in the `Dockerfile`. All three should be used when possible. Just https and embedded checksum can be used when no signature is published. As a last resort, just an embedded checksum is acceptable if the site doesn't have https available and no signature.
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 [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.
Below are some examples:
- **Preferred**: *download over https, PGP key full fingerprint import and `asc` verification, embedded checksum verified.*
```Dockerfile
ENV PYTHON_DOWNLOAD_SHA512 (sha512-value-here)
RUN set -eux; \
curl -fL "https://www.python.org/ftp/python/$PYTHON_VERSION/Python-$PYTHON_VERSION.tar.xz" -o python.tar.xz; \
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 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; \
# install
```
- **Alternate**: *full key fingerprint imported to apt which will check signatures and checksums when packages are downloaded and installed.*
```Dockerfile
RUN set -eux; \
key='A4A9406876FCBD3C456770C88C718D3B5072E1F5'; \
export GNUPGHOME="$(mktemp -d)"; \
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"; \
apt-key list > /dev/null
RUN set -eux; \
echo "deb http://repo.mysql.com/apt/debian/ stretch mysql-${MYSQL_MAJOR}" > /etc/apt/sources.list.d/mysql.list; \
apt-get update; \
apt-get install -y mysql-community-client="${MYSQL_VERSION}" mysql-community-server-core="${MYSQL_VERSION}"; \
rm -rf /var/lib/apt/lists/*; \
# ...
```
(As a side note, `rm -rf /var/lib/apt/lists/*` is *roughly* the opposite of `apt-get update` -- it ensures that the layer doesn't include the extra ~8MB of APT package list data, and enforces [appropriate `apt-get update` usage](https://docs.docker.com/develop/develop-images/dockerfile_best-practices/#apt-get).)
- **Less Secure Alternate**: *embed the checksum into the `Dockerfile`.*
```Dockerfile
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 --strict --check; \
# install
```
- **Note:** the use of either SHA1 or MD5 should be considered a "checksum of last resort" as both are considered generally unsafe:
- ["Single-block collision for MD5" from 2012](https://marc-stevens.nl/research/md5-1block-collision/)
- ["Announcing the first SHA1 collision" from 2017](https://security.googleblog.com/2017/02/announcing-first-sha1-collision.html)
- **Unacceptable**: *download the file over http(s) with no verification.*
```Dockerfile
RUN curl -fL "https://julialang.s3.amazonaws.com/bin/linux/x64/${JULIA_VERSION%[.-]*}/julia-${JULIA_VERSION}-linux-x86_64.tar.gz" | tar ... \
# install
```
##### Runtime Configuration
By default, Docker containers are executed with reduced privileges: whitelisted Linux capabilities, Control Groups, and a default Seccomp profile (1.10+ w/ host support). Software running in a container may require additional privileges in order to function correctly, and there are a number of command line options to customize container execution. See [`docker run` Reference](https://docs.docker.com/engine/reference/run/) and [Seccomp for Docker](https://docs.docker.com/engine/security/seccomp/) for reference.
Official Repositories that require additional privileges should specify the minimal set of command line options for the software to function, and may still be rejected if this introduces significant portability or security issues. In general, `--privileged` is not allowed, but a combination of `--cap-add` and `--device` options may be acceptable. Additionally, `--volume` can be tricky as there are many host filesystem locations that introduce portability/security issues (e.g. X11 socket).
##### Security Releases
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).
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.2/architecture/oci-platform.go#L14-L27):
- `amd64`
- `arm32v6`
- `arm32v7`
- `arm64v8`
- `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`.
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.
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),
Joseph Ferguson <yosifkit@gmail.com> (@yosifkit)
GitRepo: https://github.com/docker-library/hello-world.git
GitCommit: 7d0ee592e4ed60e2da9d59331e16ecdcadc1ed87
Tags: latest
Architectures: amd64, arm32v5, arm32v7, arm64v8, ppc64le, s390x
# all the same commit; easy for us to generate this way since they could be different
amd64-GitCommit: 7d0ee592e4ed60e2da9d59331e16ecdcadc1ed87
amd64-Directory: amd64/hello-world
arm32v5-GitCommit: 7d0ee592e4ed60e2da9d59331e16ecdcadc1ed87
arm32v5-Directory: arm32v5/hello-world
arm32v7-GitCommit: 7d0ee592e4ed60e2da9d59331e16ecdcadc1ed87
arm32v7-Directory: arm32v7/hello-world
arm64v8-GitCommit: 7d0ee592e4ed60e2da9d59331e16ecdcadc1ed87
arm64v8-Directory: arm64v8/hello-world
ppc64le-GitCommit: 7d0ee592e4ed60e2da9d59331e16ecdcadc1ed87
ppc64le-Directory: ppc64le/hello-world
s390x-GitCommit: 7d0ee592e4ed60e2da9d59331e16ecdcadc1ed87
s390x-Directory: s390x/hello-world
Tags: nanoserver
Architectures: windows-amd64
# if there is only one architecture, you can use the unprefixed fields
Directory: amd64/hello-world/nanoserver
# or use the prefixed versions
windows-amd64-GitCommit: 7d0ee592e4ed60e2da9d59331e16ecdcadc1ed87
Constraints: nanoserver
```
See the [instruction format section](#instruction-format) for more information on the format of the library file.
### Commitment
Proposing a new official image should not be undertaken lightly. We expect and require a commitment to maintain your image (including and especially timely updates as appropriate, as noted above).
## 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: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.
It is highly recommended that you browse some of the existing `library/` file contents (and history to get a feel for how they change over time) before creating a new one to become familiar with the prevailing conventions and further help streamline the review process (so that we can focus on content instead of esoteric formatting or tag usage/naming).
### Filenames
The filename of a definition file will determine the name of the image repository it creates on the Docker Hub. For example, the `library/ubuntu` file will create tags in the `ubuntu` repository.
### Tags and aliases
The tags of a repository should reflect upstream's versions or variations. For example, Ubuntu 14.04 is also known as Ubuntu Trusty Tahr, but often as simply Ubuntu Trusty (especially in usage), so `ubuntu:14.04` (version number) and `ubuntu:trusty` (version name) are appropriate aliases for the same image contents. In Docker, the `latest` tag is a special case, but it's a bit of a misnomer; `latest` really is the "default" tag. When one does `docker run xyz`, Docker interprets that to mean `docker run xyz:latest`. Given that background, no other tag ever contains the string `latest`, since it's not something users are expected or encouraged to actually type out (ie, `xyz:latest` should really be used as simply `xyz`). Put another way, having an alias for the "highest 2.2-series release of XYZ" should be `xyz:2.2`, not `xyz:2.2-latest`. Similarly, if there is an Alpine variant of `xyz:latest`, it should be aliased as `xyz:alpine`, not `xyz:alpine-latest` or `xyz:latest-alpine`.
It is strongly encouraged that version number tags be given aliases which make it easy for the user to stay on the "most recent" release of a particular series. For example, given currently supported XYZ Software versions of 2.3.7 and 2.2.4, suggested aliases would be `Tags: 2.3.7, 2.3, 2, latest` and `Tags: 2.2.4, 2.2`, respectively. In this example, the user can use `xyz:2.2` to easily use the most recent patch release of the 2.2 series, or `xyz:2` if less granularity is needed (Python is a good example of where that's most obviously useful -- `python:2` and `python:3` are very different, and can be thought of as the `latest` tag for each of the major release tracks of Python).
As described above, `latest` is really "default", so the image that it is an alias for should reflect which version or variation of the software users should use if they do not know or do not care which version they use. Using Ubuntu as an example, `ubuntu:latest` points to the most recent LTS release, given that it is what the majority of users should be using if they know they want Ubuntu but do not know or care which version (especially considering it will be the most "stable" and well-supported release at any given time).
### Instruction format
The manifest file format is officially based on [RFC 2822](https://www.ietf.org/rfc/rfc2822.txt), and as such should be familiar to folks who are already familiar with the "headers" of many popular internet protocols/formats such as HTTP or email.
The primary additions are inspired by the way Debian commonly uses 2822 -- namely, lines starting with `#` are ignored and "entries" are separated by a blank line.
The first entry is the "global" metadata for the image. The only required field in the global entry is `Maintainers`, whose value is comma-separated in the format of `Name <email> (@github)` or `Name (@github)`. Any field specified in the global entry will be the default for the rest of the entries and can be overridden in an individual entry.
# this is a comment and will be ignored
Maintainers: John Smith <jsmith@example.com> (@example-jsmith),
Anne Smith <asmith@example.com> (@example-asmith)
GitRepo: https://github.com/example/docker-example.git
GitCommit: deadbeefdeadbeefdeadbeefdeadbeefdeadbeef
# this is also a comment, and will also be ignored
Tags: 1.2.3, 1.2, 1, latest
Directory: 1
Tags: 2.0-rc1, 2.0-rc, 2-rc, rc
GitRepo: https://github.com/example/docker-example-rc.git
GitFetch: refs/heads/2.0-pre-release
GitCommit: beefdeadbeefdeadbeefdeadbeefdeadbeefdead
Directory: 2
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).
See the [multi-arch section](#multiple-architectures) for details on how to specify a different `GitRepo`, `GitFetch`, `GitCommit`, or `Directory` for a specific architecture.
### Creating a new repository
- Create a new file in the `library/` folder. Its name will be the name of your repository on the Hub.
- Add your tag definitions using the appropriate syntax (see above).
- Create a pull request adding the file from your forked repository to this one. Please be sure to add details as to what your repository does.
### Adding a new tag in an existing repository (that you're the maintainer of)
- Add your tag definition using the instruction format documented above.
- Create a pull request from your Git repository to this one. Please be sure to add details about what's new, if possible.
### Change to a tag in an existing repository (that you're the maintainer of)
- Update the relevant tag definition using the instruction format documented above.
- Create a pull request from your Git repository to this one. Please be sure to add details about what's changed, if possible.
## Bashbrew
Bashbrew (`bashbrew`) is a tool for cloning, building, tagging, and pushing the Docker official images. See [the Bashbrew `README`](https://github.com/docker-library/bashbrew#readme) for more information.

43
_bashbrew-cat-sorted.sh Executable file
View File

@ -0,0 +1,43 @@
#!/usr/bin/env bash
set -Eeuo pipefail
# a mimic of "bashbrew cat" which should sort slightly more deterministically (so even full-order-changing PRs should have reasonable diffs)
images="$(
bashbrew list --repos --uniq "$@" \
| sort -uV \
| xargs -r bashbrew list --repos --uniq --build-order
)"
set -- $images
declare -A seenGlobal=()
first=1
for img; do
if [ -n "$first" ]; then
first=
else
echo; echo
fi
if [ "$#" -gt 1 ]; then
echo "# $img"
fi
repo="${img%:*}"
if [ -z "${seenGlobal["$repo"]:-}" ]; then
bashbrew cat --format '{{ printf "%s\n" (.Manifest.Global.ClearDefaults defaults) }}' "$img"
seenGlobal["$repo"]="$img"
else
echo "# (see also ${seenGlobal["$repo"]} above)"
fi
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) -}}
{{- end -}}
'
done

1
bashbrew-version Normal file
View File

@ -0,0 +1 @@
0.1.2

295
diff-pr.sh Executable file
View File

@ -0,0 +1,295 @@
#!/usr/bin/env bash
set -Eeuo pipefail
shopt -s dotglob
# make sure we can GTFO
trap 'echo >&2 Ctrl+C captured, exiting; exit 1' SIGINT
# if bashbrew is missing, bail early with a sane error
bashbrew --version > /dev/null
usage() {
cat <<-EOUSAGE
usage: $0 [PR number] [repo[:tag]]
ie: $0 1024
$0 9001 debian php django
EOUSAGE
}
# TODO flags parsing
allFiles=
listTarballContents=1
findCopies='20%'
uninterestingTarballContent=(
# "config_diff_2017_01_07.log"
'var/log/YaST2/'
# "ks-script-mqmz_080.log"
# "ks-script-ycfq606i.log"
'var/log/anaconda/'
# "2016-12-20/"
'var/lib/yum/history/'
'var/lib/dnf/history/'
# "a/f8c032d2be757e1a70f00336b55c434219fee230-acl-2.2.51-12.el7-x86_64/var_uuid"
'var/lib/yum/yumdb/'
'var/lib/dnf/yumdb/'
# "b42ff584.0"
'etc/pki/tls/rootcerts/'
# "09/401f736622f2c9258d14388ebd47900bbab126"
'usr/lib/.build-id/'
)
# prints "$2$1$3$1...$N"
join() {
local sep="$1"; shift
local out; printf -v out "${sep//%/%%}%s" "$@"
echo "${out#$sep}"
}
uninterestingTarballGrep="^([.]?/)?($(join '|' "${uninterestingTarballContent[@]}"))"
if [ "$#" -eq 0 ]; then
usage >&2
exit 1
fi
pull="$1" # PR number
shift
diffDir="$(readlink -f "$BASH_SOURCE")"
diffDir="$(dirname "$diffDir")"
tempDir="$(mktemp -d)"
trap "rm -rf '$tempDir'" EXIT
cd "$tempDir"
git clone --quiet \
https://github.com/docker-library/official-images.git \
oi
if [ "$pull" != '0' ]; then
git -C oi fetch --quiet \
origin "pull/$pull/merge":refs/heads/pull
else
git -C oi fetch --quiet --update-shallow \
"$diffDir" HEAD:refs/heads/pull
fi
if [ "$#" -eq 0 ]; then
images="$(git -C oi/library diff --name-only HEAD...pull -- .)"
[ -n "$images" ] || exit 0
images="$(xargs -n1 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
export BASHBREW_ARCH
# TODO something less hacky than "git archive" hackery, like a "bashbrew archive" or "bashbrew context" or something
template='
tempDir="$(mktemp -d)"
{{- "\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
{{- " " -}}
{{- "--prefix=" -}}
{{- $outDir -}}
{{- "/" -}}
{{- " " -}}
{{- .ArchGitCommit $arch -}}
{{- ":" -}}
{{- $dir := .ArchDirectory $arch -}}
{{- (eq $dir ".") | ternary "" $dir -}}
{{- "\n" -}}
mkdir -p "$tempDir/{{- $outDir -}}" && echo "{{- .ArchFile $arch -}}" > "$tempDir/{{- $outDir -}}/.bashbrew-dockerfile-name"
{{- "\n" -}}
{{- end -}}
tar -cC "$tempDir" . && rm -rf "$tempDir"
'
copy-tar() {
local src="$1"; shift
local dst="$1"; shift
if [ -n "$allFiles" ]; then
mkdir -p "$dst"
cp -al "$src"/*/ "$dst/"
return
fi
local d dockerfiles=()
for d in "$src"/*/.bashbrew-dockerfile-name; 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" )
fi
fi
rm "$d" # remove the ".bashbrew-dockerfile-name" file we created
done
for d in "${dockerfiles[@]}"; do
local dDir; dDir="$(dirname "$d")"
local dDirName; dDirName="$(basename "$dDir")"
# TODO choke on "syntax" parser directive
# TODO handle "escape" parser directive reasonably
local flatDockerfile; flatDockerfile="$(
gawk '
BEGIN { line = "" }
/^[[:space:]]*#/ {
gsub(/^[[:space:]]+/, "")
print
next
}
{
if (match($0, /^(.*)(\\[[:space:]]*)$/, m)) {
line = line m[1]
next
}
print line $0
line = ""
}
' "$d"
)"
local IFS=$'\n'
local copyAddContext; copyAddContext="$(awk '
toupper($1) == "COPY" || toupper($1) == "ADD" {
for (i = 2; i < NF; i++) {
if ($i ~ /^--from=/) {
next
}
if ($i !~ /^--chown=/) {
print $i
}
}
}
' <<<"$flatDockerfile")"
local dBase; dBase="$(basename "$d")"
local files=(
"$dBase"
$copyAddContext
# some extra files which are likely interesting if they exist, but no big loss if they do not
' .dockerignore' # will be used automatically by "docker build"
' *.manifest' # debian/ubuntu "package versions" list
' *.ks' # fedora "kickstart" (rootfs build script)
' build*.txt' # ubuntu "build-info.txt", debian "build-command.txt"
# usefulness yet to be proven:
#' *.log'
#' {MD5,SHA1,SHA256}SUMS'
#' *.{md5,sha1,sha256}'
# (the space prefix is removed below and is used to ignore non-matching globs so that bad "Dockerfile" entries appropriately lead to failure)
)
unset IFS
mkdir -p "$dst/$dDirName"
local f origF failureMatters
for origF in "${files[@]}"; do
f="${origF# }" # trim off leading space (indicates we don't care about failure)
[ "$f" = "$origF" ] && failureMatters=1 || failureMatters=
local globbed
# "find: warning: -path ./xxx/ will not match anything because it ends with /."
local findGlobbedPath="${f%/}"
findGlobbedPath="${findGlobbedPath#./}"
local globbedStr; globbedStr="$(cd "$dDir" && find -path "./$findGlobbedPath")"
local -a globbed=( $globbedStr )
if [ "${#globbed[@]}" -eq 0 ]; then
globbed=( "$f" )
fi
local g
for g in "${globbed[@]}"; do
local srcG="$dDir/$g" dstG="$dst/$dDirName/$g"
if [ -z "$failureMatters" ] && [ ! -e "$srcG" ]; then
continue
fi
local gDir; gDir="$(dirname "$dstG")"
mkdir -p "$gDir"
cp -alT "$srcG" "$dstG"
if [ -n "$listTarballContents" ]; then
case "$g" in
*.tar.* | *.tgz)
if [ -s "$dstG" ]; then
tar -tf "$dstG" \
| grep -vE "$uninterestingTarballGrep" \
| sed -e 's!^[.]/!!' \
| sort \
> "$dstG 'tar -t'"
fi
;;
esac
fi
done
done
done
}
mkdir temp
git -C temp init --quiet
git -C temp config user.name 'Bogus'
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
git -C temp add . || :
git -C temp commit --quiet --allow-empty -m 'initial' || :
git -C oi clean --quiet --force
git -C oi checkout --quiet pull
# handle "deleted-image" PRs gracefully :(
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
git -C temp add .
git -C temp diff \
--find-copies-harder \
--find-copies="$findCopies" \
--find-renames="$findCopies" \
--ignore-blank-lines \
--ignore-space-at-eol \
--ignore-space-change \
--irreversible-delete \
--minimal \
--staged

14
library/adminer Normal file
View File

@ -0,0 +1,14 @@
# this file is generated via https://github.com/TimWolla/docker-adminer/blob/a46dbffde41a1f48f61e5881033a21011f472de1/generate-stackbrew-library.sh
Maintainers: Tim Düsterhus <tim@bastelstu.be> (@TimWolla)
GitRepo: https://github.com/TimWolla/docker-adminer.git
Tags: 4.8.1-standalone, 4-standalone, standalone, 4.8.1, 4, latest
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: 9957ca52b8f442213fb116503dc7d0e18d4dc228
Directory: 4
Tags: 4.8.1-fastcgi, 4-fastcgi, fastcgi
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: 9957ca52b8f442213fb116503dc7d0e18d4dc228
Directory: 4/fastcgi

387
library/adoptopenjdk Normal file
View File

@ -0,0 +1,387 @@
# 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

13
library/aerospike Normal file
View File

@ -0,0 +1,13 @@
Maintainers: Lucien Volmar <lucien@aerospike.com> (@volmarl),
Michael Coberly <mcoberly@aerospike.com> (@mcoberly2),
Phuc Vinh <pvinh@aerospike.com> (@pvinh-spike)
Tags: ee-5.6.0.7
Architectures: amd64
GitRepo: https://github.com/aerospike/aerospike-server-enterprise.docker.git
GitCommit: 45cf25d03cc09c085ae9ead9acf65ea96208da13
Tags: ce-5.6.0.7
Architectures: amd64
GitRepo: https://github.com/aerospike/aerospike-server.docker.git
GitCommit: 1cc1bfb70507800477859076f3e385cc2b3eb413

16
library/almalinux Normal file
View File

@ -0,0 +1,16 @@
Maintainers: The AlmaLinux OS Foundation <cloud-infra@almalinux.org> (@AlmaLinux)
GitRepo: https://github.com/AlmaLinux/docker-images.git
Tags: latest, 8, 8.4
GitFetch: refs/heads/almalinux-8-x86_64
GitCommit: 875d1e6ce39cf5a5495148fce53471f9be49a4c3
arm64v8-GitFetch: refs/heads/almalinux-8-aarch64
arm64v8-GitCommit: 54188857c898d835b22e23d273f8022cb8d1f1ce
Architectures: amd64, arm64v8
Tags: minimal, 8-minimal, 8.4-minimal
GitFetch: refs/heads/almalinux-8-x86_64-minimal
GitCommit: bc74e29d58210f825911fe73cd7ec0f724d1f78f
arm64v8-GitFetch: refs/heads/almalinux-8-aarch64-minimal
arm64v8-GitCommit: c0291ce4ff7d7bedb0fef86a863cb7405fb77520
Architectures: amd64, arm64v8

63
library/alpine Normal file
View File

@ -0,0 +1,63 @@
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
GitFetch: refs/heads/edge
GitCommit: 489953694b9dd165f615dc01971971ddf55701f8
arm64v8-Directory: aarch64/
arm32v6-Directory: armhf/
arm32v7-Directory: armv7/
ppc64le-Directory: ppc64le/
s390x-Directory: s390x/
i386-Directory: x86/
amd64-Directory: x86_64/
Tags: 3.14.0, 3.14, 3, latest
Architectures: arm64v8, arm32v6, arm32v7, ppc64le, s390x, i386, amd64
GitFetch: refs/heads/v3.14
GitCommit: 6cde5b1c2838b647382fdbc71b5d3cef54c5c157
arm64v8-Directory: aarch64/
arm32v6-Directory: armhf/
arm32v7-Directory: armv7/
ppc64le-Directory: ppc64le/
s390x-Directory: s390x/
i386-Directory: x86/
amd64-Directory: x86_64/
Tags: 3.13.5, 3.13
Architectures: arm64v8, arm32v6, arm32v7, ppc64le, s390x, i386, amd64
GitFetch: refs/heads/v3.13
GitCommit: 37579d92b9faa70398240431bc46720242faa5e5
arm64v8-Directory: aarch64/
arm32v6-Directory: armhf/
arm32v7-Directory: armv7/
ppc64le-Directory: ppc64le/
s390x-Directory: s390x/
i386-Directory: x86/
amd64-Directory: x86_64/
Tags: 3.12.7, 3.12
Architectures: arm64v8, arm32v6, arm32v7, ppc64le, s390x, i386, amd64
GitFetch: refs/heads/v3.12
GitCommit: 8b8051f1c11daff18ada363488e145af9e201802
arm64v8-Directory: aarch64/
arm32v6-Directory: armhf/
arm32v7-Directory: armv7/
ppc64le-Directory: ppc64le/
s390x-Directory: s390x/
i386-Directory: x86/
amd64-Directory: x86_64/
Tags: 3.11.11, 3.11
Architectures: arm64v8, arm32v6, arm32v7, ppc64le, s390x, i386, amd64
GitFetch: refs/heads/v3.11
GitCommit: 2cd76fb18830708f4af5a6927c3aa40867a4e8bb
arm64v8-Directory: aarch64/
arm32v6-Directory: armhf/
arm32v7-Directory: armv7/
ppc64le-Directory: ppc64le/
s390x-Directory: s390x/
i386-Directory: x86/
amd64-Directory: x86_64/

30
library/alt Normal file
View File

@ -0,0 +1,30 @@
Maintainers: ALT Linux Team Cloud <alt-cloud@altlinux.org> (@alt-cloud),
Alexey Shabalin <shaba@altlinux.org> (@shaba),
Gleb Fotengauer-Malinovskiy <glebfm@altlinux.org> (@glebfm),
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
amd64-Directory: x86_64/
i386-Directory: i586/
arm64v8-Directory: aarch64/
ppc64le-Directory: ppc64le/
Tags: p8
Architectures: amd64, i386
GitFetch: refs/heads/p8
GitCommit: ce87cc6c704caf13461955cfa5ddd83a7d04207a
amd64-Directory: x86_64/
i386-Directory: i586/
Tags: sisyphus
Architectures: amd64, i386, arm64v8, ppc64le
GitFetch: refs/heads/sisyphus
GitCommit: 425b1b723bf933037319e23d5a5cdf7e796971eb
amd64-Directory: x86_64/
arm64v8-Directory: aarch64/
i386-Directory: i586/
ppc64le-Directory: ppc64le/

35
library/amazoncorretto Normal file
View File

@ -0,0 +1,35 @@
Maintainers: Amazon Corretto Team <corretto-team@amazon.com> (@corretto),
Dan Lutker <lutkerd@amazon.com> (@lutkerd),
Ben Taylor <benty@amazon.com> (@benty-amzn),
Clive Verghese <verghese@amazon.com> (@cliveverghese)
GitRepo: https://github.com/corretto/corretto-docker.git
GitFetch: refs/heads/master
GitCommit: 88df29474df6fc3f3f19daa8c5515d934f706cd0
Tags: 8, 8u292, 8u292-al2, 8-al2-full,8-al2-jdk, latest
Architectures: amd64, arm64v8
Directory: 8/jdk/al2
Tags: 11, 11.0.11, 11.0.11-al2, 11-al2-jdk, 11-al2-full
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, 8u292-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
Architectures: amd64, arm64v8
Directory: 16/jdk/al2
Tags: 16-alpine, 16.0.1-alpine, 16-alpine-full, 16-alpine-jdk
Architectures: amd64
Directory: 16/jdk/alpine

34
library/amazonlinux Normal file
View File

@ -0,0 +1,34 @@
Maintainers: Amazon Linux <amazon-linux@amazon.com> (@amazonlinux),
Frédérick Lefebvre (@fred-lefebvre),
Samuel Karp (@samuelkarp),
Stewart Smith (@stewartsmith),
Jamie Anderson (@jamieand),
Christopher Miller (@mysteriouspants),
Sumit Tomer (@sktomer),
Sean Kelly (@cbgbt)
GitRepo: https://github.com/amazonlinux/container-images.git
GitCommit: 16cd70fe7971ab0eb4fea0139ede76f9f82cbfc0
Tags: 2.0.20210701.0, 2, latest
Architectures: amd64, arm64v8
amd64-GitFetch: refs/heads/amzn2
amd64-GitCommit: c9aea1224a61d049b9be821e147f882ebdd244f9
arm64v8-GitFetch: refs/heads/amzn2-arm64
arm64v8-GitCommit: 4505286ee22c30ae6404207053f7b6dc03776674
Tags: 2.0.20210701.0-with-sources, 2-with-sources, with-sources
Architectures: amd64, arm64v8
amd64-GitFetch: refs/heads/amzn2-with-sources
amd64-GitCommit: 8cf02b11d3ab0e26f6cad6ca41cb11e2456edc36
arm64v8-GitFetch: refs/heads/amzn2-arm64-with-sources
arm64v8-GitCommit: a505906d0b288adbbe727730ce21ea8a95c0fdc6
Tags: 2018.03.0.20210521.1, 2018.03, 1
Architectures: amd64
amd64-GitFetch: refs/heads/2018.03
amd64-GitCommit: 92faacbbd63cacf5ad059da826c1e1ee9b603f84
Tags: 2018.03.0.20210521.1-with-sources, 2018.03-with-sources, 1-with-sources
Architectures: amd64
amd64-GitFetch: refs/heads/2018.03-with-sources
amd64-GitCommit: c784f486f5974aa5a28038c86700196ebc6e1306

10
library/arangodb Normal file
View File

@ -0,0 +1,10 @@
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
Tags: 3.6, 3.6.14
GitCommit: 6b42e33030d43dec31e1162bf84b3583342c682b
Directory: alpine/3.6.14
Tags: 3.7, 3.7.12, latest
GitCommit: da569961c6a136675562b066aa542d4a8e05c8cf
Directory: alpine/3.7.12

17
library/archlinux Normal file
View File

@ -0,0 +1,17 @@
# https://gitlab.archlinux.org/archlinux/archlinux-docker
Maintainers: Santiago Torres-Arias <santiago@archlinux.org> (@SantiagoTorres),
Christian Rebischke <Chris.Rebischke@archlinux.org> (@shibumi),
Justin Kromlinger <hashworks@archlinux.org> (@hashworks)
GitRepo: https://gitlab.archlinux.org/archlinux/archlinux-docker.git
Tags: latest, base, base-20210718.0.29333
GitCommit: df58cede32dad342c61aae956d858a9ab0d673d4
GitFetch: refs/tags/v20210718.0.29333
File: Dockerfile.base
Tags: base-devel, base-devel-20210718.0.29333
GitCommit: df58cede32dad342c61aae956d858a9ab0d673d4
GitFetch: refs/tags/v20210718.0.29333
File: Dockerfile.base-devel

16
library/backdrop Normal file
View File

@ -0,0 +1,16 @@
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
Architectures: amd64, arm64v8
GitCommit: b760ba970a67f3dcdc975ed8b77f915895184577
Directory: 1/apache
Tags: 1.17.3-fpm, 1.17-fpm, 1-fpm, fpm
Architectures: amd64, arm64v8
GitCommit: b760ba970a67f3dcdc975ed8b77f915895184577
Directory: 1/fpm

59
library/bash Normal file
View File

@ -0,0 +1,59 @@
# this file is generated via https://github.com/tianon/docker-bash/blob/e467130f2e4d7740cd6e730cfad71e354cb53394/generate-stackbrew-library.sh
Maintainers: Tianon Gravi <admwiggin@gmail.com> (@tianon)
GitRepo: https://github.com/tianon/docker-bash.git
Tags: devel-20210712, devel
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: 69328435dd4efeaa999cc2f70f782bfc36c992d4
Directory: devel
Tags: 5.1.8, 5.1, 5, latest
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: a2d1a192e467f18b630166ea5efd99b1dc8ca1fb
Directory: 5.1
Tags: 5.0.18, 5.0
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: a2d1a192e467f18b630166ea5efd99b1dc8ca1fb
Directory: 5.0
Tags: 4.4.23, 4.4, 4
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: a2d1a192e467f18b630166ea5efd99b1dc8ca1fb
Directory: 4.4
Tags: 4.3.48, 4.3
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: a2d1a192e467f18b630166ea5efd99b1dc8ca1fb
Directory: 4.3
Tags: 4.2.53, 4.2
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: a2d1a192e467f18b630166ea5efd99b1dc8ca1fb
Directory: 4.2
Tags: 4.1.17, 4.1
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: a2d1a192e467f18b630166ea5efd99b1dc8ca1fb
Directory: 4.1
Tags: 4.0.44, 4.0
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: a2d1a192e467f18b630166ea5efd99b1dc8ca1fb
Directory: 4.0
Tags: 3.2.57, 3.2, 3
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: a2d1a192e467f18b630166ea5efd99b1dc8ca1fb
Directory: 3.2
Tags: 3.1.23, 3.1
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: a2d1a192e467f18b630166ea5efd99b1dc8ca1fb
Directory: 3.1
Tags: 3.0.22, 3.0
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: a2d1a192e467f18b630166ea5efd99b1dc8ca1fb
Directory: 3.0

24
library/bonita Normal file
View File

@ -0,0 +1,24 @@
Maintainers: Baptiste Mesta <baptiste.mesta@bonitasoft.org> (@baptistemesta),
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

155
library/buildpack-deps Normal file
View File

@ -0,0 +1,155 @@
# this file is generated via https://github.com/docker-library/buildpack-deps/blob/65d69325ad741cea6dee20781c1faaab2e003d87/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
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
GitCommit: 98a5ab81d47a106c458cdf90733df0ee8beea06c
Directory: debian/bullseye/curl
Tags: bullseye-scm, testing-scm
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
GitCommit: 65d69325ad741cea6dee20781c1faaab2e003d87
Directory: debian/bullseye/scm
Tags: bullseye, testing
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
Directory: debian/buster/curl
Tags: buster-scm, stable-scm, scm
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
GitCommit: 65d69325ad741cea6dee20781c1faaab2e003d87
Directory: debian/buster/scm
Tags: buster, stable, latest
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
GitCommit: 65d69325ad741cea6dee20781c1faaab2e003d87
Directory: debian/buster
Tags: sid-curl, unstable-curl
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, riscv64, s390x
GitCommit: 98a5ab81d47a106c458cdf90733df0ee8beea06c
Directory: debian/sid/curl
Tags: sid-scm, unstable-scm
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, 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: stretch-scm, oldstable-scm
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386
GitCommit: 65d69325ad741cea6dee20781c1faaab2e003d87
Directory: debian/stretch/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: focal-curl, 20.04-curl
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
GitCommit: 98a5ab81d47a106c458cdf90733df0ee8beea06c
Directory: ubuntu/focal/curl
Tags: focal-scm, 20.04-scm
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
GitCommit: 65d69325ad741cea6dee20781c1faaab2e003d87
Directory: ubuntu/focal/scm
Tags: focal, 20.04
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
GitCommit: 98a5ab81d47a106c458cdf90733df0ee8beea06c
Directory: ubuntu/focal
Tags: groovy-curl, 20.10-curl
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
GitCommit: 98a5ab81d47a106c458cdf90733df0ee8beea06c
Directory: ubuntu/groovy/curl
Tags: groovy-scm, 20.10-scm
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
GitCommit: 65d69325ad741cea6dee20781c1faaab2e003d87
Directory: ubuntu/groovy/scm
Tags: groovy, 20.10
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
GitCommit: 98a5ab81d47a106c458cdf90733df0ee8beea06c
Directory: ubuntu/groovy
Tags: hirsute-curl, 21.04-curl
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
GitCommit: 98a5ab81d47a106c458cdf90733df0ee8beea06c
Directory: ubuntu/hirsute/curl
Tags: hirsute-scm, 21.04-scm
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
GitCommit: 98a5ab81d47a106c458cdf90733df0ee8beea06c
Directory: ubuntu/hirsute/scm
Tags: hirsute, 21.04
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
GitCommit: 98a5ab81d47a106c458cdf90733df0ee8beea06c
Directory: ubuntu/hirsute
Tags: impish-curl, 21.10-curl
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
GitCommit: fae040f3db68991f178f0a9631a03ca9837f5647
Directory: ubuntu/impish/curl
Tags: impish-scm, 21.10-scm
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
GitCommit: fae040f3db68991f178f0a9631a03ca9837f5647
Directory: ubuntu/impish/scm
Tags: impish, 21.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

62
library/busybox Normal file
View File

@ -0,0 +1,62 @@
# this file is generated via https://github.com/docker-library/busybox/blob/ba8de1363a5bff92c31876539715b88d7dee5f54/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)
GitRepo: https://github.com/docker-library/busybox.git
GitCommit: ba8de1363a5bff92c31876539715b88d7dee5f54
# https://github.com/docker-library/busybox/tree/dist-amd64
amd64-GitFetch: refs/heads/dist-amd64
amd64-GitCommit: 2bcc4bf56c2a4594aa31feb8b42d5eab76d168bb
# https://github.com/docker-library/busybox/tree/dist-arm32v5
arm32v5-GitFetch: refs/heads/dist-arm32v5
arm32v5-GitCommit: a542a7bc9817e71654aba8feb6b5cb265e8f9976
# https://github.com/docker-library/busybox/tree/dist-arm32v6
arm32v6-GitFetch: refs/heads/dist-arm32v6
arm32v6-GitCommit: 4619f8d1d337e99ce34641394b37f13d2086b7fa
# https://github.com/docker-library/busybox/tree/dist-arm32v7
arm32v7-GitFetch: refs/heads/dist-arm32v7
arm32v7-GitCommit: 167c5ca7501659ccbe426677302f49b1060a2d1c
# https://github.com/docker-library/busybox/tree/dist-arm64v8
arm64v8-GitFetch: refs/heads/dist-arm64v8
arm64v8-GitCommit: cce85f68157251e06d6a328fe092000b55a26725
# https://github.com/docker-library/busybox/tree/dist-i386
i386-GitFetch: refs/heads/dist-i386
i386-GitCommit: 6146c81916dc3384c7ac8fe13c5c1fb69f70b80a
# https://github.com/docker-library/busybox/tree/dist-mips64le
mips64le-GitFetch: refs/heads/dist-mips64le
mips64le-GitCommit: e152603121edbf1117006ff7d843de5ff26fe864
# https://github.com/docker-library/busybox/tree/dist-ppc64le
ppc64le-GitFetch: refs/heads/dist-ppc64le
ppc64le-GitCommit: 9c6ff55d8efc0ab835a9fe70c660c907ccb1a325
# https://github.com/docker-library/busybox/tree/dist-riscv64
riscv64-GitFetch: refs/heads/dist-riscv64
riscv64-GitCommit: 87ee88572c15dfbca78263ca2118fd4afd9d3cc2
# https://github.com/docker-library/busybox/tree/dist-s390x
s390x-GitFetch: refs/heads/dist-s390x
s390x-GitCommit: 6b63b93035aa234e8e09843bca168f518db651f6
Tags: 1.33.1-uclibc, 1.33-uclibc, 1-uclibc, stable-uclibc, uclibc
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, riscv64
Directory: stable/uclibc
Tags: 1.33.1-glibc, 1.33-glibc, 1-glibc, stable-glibc, glibc
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
Directory: stable/glibc
Tags: 1.33.1-musl, 1.33-musl, 1-musl, stable-musl, musl
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
Directory: stable/musl
Tags: 1.33.1, 1.33, 1, stable, latest
Architectures: amd64, arm32v5, arm32v6, arm32v7, arm64v8, i386, mips64le, ppc64le, riscv64, 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
riscv64-Directory: stable/uclibc
s390x-Directory: stable/glibc

51
library/caddy Normal file
View File

@ -0,0 +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/e01e0a10625f95d031411215378b5f790047d990/stackbrew-config.yaml
Maintainers: Dave Henderson (@hairyhenderson)
Tags: 2.4.3-alpine, 2-alpine, alpine
SharedTags: 2.4.3, 2, latest
GitRepo: https://github.com/caddyserver/caddy-docker.git
Directory: 2.4/alpine
GitCommit: 1e2cf7dde14c0cfd3275efdd23f4700ecfc2419f
Architectures: amd64, arm64v8, arm32v6, arm32v7, ppc64le, s390x
Tags: 2.4.3-builder-alpine, 2-builder-alpine, builder-alpine
SharedTags: 2.4.3-builder, 2-builder, builder
GitRepo: https://github.com/caddyserver/caddy-docker.git
Directory: 2.4/builder
GitCommit: e01e0a10625f95d031411215378b5f790047d990
Architectures: amd64, arm64v8, arm32v6, arm32v7, ppc64le, s390x
Tags: 2.4.3-windowsservercore-1809, 2-windowsservercore-1809, windowsservercore-1809
SharedTags: 2.4.3-windowsservercore, 2-windowsservercore, windowsservercore, 2.4.3, 2, latest
GitRepo: https://github.com/caddyserver/caddy-docker.git
Directory: 2.4/windows/1809
GitCommit: 1e2cf7dde14c0cfd3275efdd23f4700ecfc2419f
Architectures: windows-amd64
Constraints: windowsservercore-1809
Tags: 2.4.3-windowsservercore-ltsc2016, 2-windowsservercore-ltsc2016, windowsservercore-ltsc2016
SharedTags: 2.4.3-windowsservercore, 2-windowsservercore, windowsservercore, 2.4.3, 2, latest
GitRepo: https://github.com/caddyserver/caddy-docker.git
Directory: 2.4/windows/ltsc2016
GitCommit: 1e2cf7dde14c0cfd3275efdd23f4700ecfc2419f
Architectures: windows-amd64
Constraints: windowsservercore-ltsc2016
Tags: 2.4.3-builder-windowsservercore-1809, 2-builder-windowsservercore-1809, builder-windowsservercore-1809
SharedTags: 2.4.3-builder, 2-builder, builder
GitRepo: https://github.com/caddyserver/caddy-docker.git
Directory: 2.4/windows-builder/1809
GitCommit: 1e2cf7dde14c0cfd3275efdd23f4700ecfc2419f
Architectures: windows-amd64
Constraints: windowsservercore-1809
Tags: 2.4.3-builder-windowsservercore-ltsc2016, 2-builder-windowsservercore-ltsc2016, builder-windowsservercore-ltsc2016
SharedTags: 2.4.3-builder, 2-builder, builder
GitRepo: https://github.com/caddyserver/caddy-docker.git
Directory: 2.4/windows-builder/ltsc2016
GitCommit: 1e2cf7dde14c0cfd3275efdd23f4700ecfc2419f
Architectures: windows-amd64
Constraints: windowsservercore-ltsc2016

30
library/cassandra Normal file
View File

@ -0,0 +1,30 @@
# this file is generated via https://github.com/docker-library/cassandra/blob/c191e1ac6c2fe9973c7ac1f106d395d03ed05eba/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-rc2, 4.0
Architectures: amd64, arm32v7, arm64v8, ppc64le
GitCommit: 08bea513f803c366493d823aa81a81d73e21c93f
Directory: 4.0
Tags: 3.11.10, 3.11, 3, latest
Architectures: amd64, arm32v7, arm64v8, ppc64le
GitCommit: 6d3117157c726a7d3a8667f56e6fb046cfe18106
Directory: 3.11
Tags: 3.0.24, 3.0
Architectures: amd64, arm32v7, arm64v8, ppc64le
GitCommit: 6d3117157c726a7d3a8667f56e6fb046cfe18106
Directory: 3.0
Tags: 2.2.19, 2.2, 2
Architectures: amd64, arm32v7, ppc64le
GitCommit: 6d3117157c726a7d3a8667f56e6fb046cfe18106
Directory: 2.2
Tags: 2.1.22, 2.1
Architectures: amd64, arm64v8, ppc64le
GitCommit: 6d3117157c726a7d3a8667f56e6fb046cfe18106
Directory: 2.1

36
library/centos Normal file
View File

@ -0,0 +1,36 @@
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
arm32v7-GitFetch: refs/heads/CentOS-7armhfp
arm32v7-GitCommit: 8022ae6d18ddf031b1b3a80549eeb46d1deb6dcd
arm64v8-GitFetch: refs/heads/CentOS-7-aarch64
arm64v8-GitCommit: 02ea5808a8a155bad28677dd5857c8d382027e14
ppc64le-GitFetch: refs/heads/CentOS-7-ppc64le
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

25
library/chronograf Normal file
View File

@ -0,0 +1,25 @@
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
Tags: 1.7, 1.7.17
Architectures: amd64, arm32v7, arm64v8
Directory: chronograf/1.7
Tags: 1.7-alpine, 1.7.17-alpine
Directory: chronograf/1.7/alpine
Tags: 1.8, 1.8.8, latest
Architectures: amd64, arm32v7, arm64v8
Directory: chronograf/1.8
Tags: 1.8-alpine, 1.8.8-alpine, alpine
Directory: chronograf/1.8/alpine

14
library/cirros Normal file
View File

@ -0,0 +1,14 @@
# this file is generated via https://github.com/tianon/docker-brew-cirros/blob/bc178480989db677c1271933567a0555e35856dc/generate-stackbrew-library.sh
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
amd64-Directory: arches/amd64
arm32v5-Directory: arches/arm32v5
arm64v8-Directory: arches/arm64v8
i386-Directory: arches/i386
ppc64le-Directory: arches/ppc64le
Tags: 0.5.2, 0.5, 0, latest

6
library/clearlinux Normal file
View File

@ -0,0 +1,6 @@
Maintainers: William Douglas <william.douglas@intel.com> (@bryteise)
GitRepo: https://github.com/clearlinux/docker-brew-clearlinux.git
Tags: latest, base
GitCommit: 919de92f3ea61be7b1d63e04c401f2bac86f6a78
GitFetch: refs/tags/clear-linux-34820

7
library/clefos Normal file
View File

@ -0,0 +1,7 @@
Maintainers: The ClefOS Project <neale@sinenomine.net> (@nealef)
GitRepo: https://github.com/nealef/clefos.git
Tags: 7, 7.7.1908, latest
GitFetch: refs/heads/7.4.1708
GitCommit: 1aa7d3771b2ced8b8b5cdc9a1a1752d93c56a60e
Architectures: s390x

98
library/clojure Normal file
View File

@ -0,0 +1,98 @@
Maintainers: Paul Lam <paul@quantisan.com> (@Quantisan),
Wes Morgan <wes@wesmorgan.me> (@cap10morgan)
Architectures: amd64, arm64v8
GitRepo: https://github.com/Quantisan/docker-clojure.git
GitCommit: 7c34b2382830efb60c351c50b509f049e80ffb0a
Tags: latest
Directory: target/openjdk-11-slim-buster/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
Architectures: amd64
Directory: target/openjdk-8-buster/lein
Tags: openjdk-8-slim-buster, openjdk-8-lein-slim-buster, openjdk-8-lein-2.9.6-slim-buster
Architectures: amd64
Directory: target/openjdk-8-slim-buster/lein
Tags: openjdk-8-boot, openjdk-8-boot-2.8.3, openjdk-8-boot-buster, openjdk-8-boot-2.8.3-buster
Architectures: amd64
Directory: target/openjdk-8-buster/boot
Tags: openjdk-8-boot-slim-buster, openjdk-8-boot-2.8.3-slim-buster
Architectures: amd64
Directory: target/openjdk-8-slim-buster/boot
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
Architectures: amd64
Directory: target/openjdk-8-buster/tools-deps
Tags: openjdk-8-tools-deps-slim-buster, openjdk-8-tools-deps-1.10.3.855-slim-buster
Architectures: amd64
Directory: target/openjdk-8-slim-buster/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: 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: 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: 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: 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
Architectures: amd64
Directory: target/openjdk-17-alpine/lein
Tags: openjdk-17-boot-alpine, openjdk-17-boot-2.8.3-alpine
Architectures: amd64
Directory: target/openjdk-17-alpine/boot
Tags: openjdk-17-tools-deps-alpine, openjdk-17-tools-deps-1.10.3.855-alpine
Architectures: amd64
Directory: target/openjdk-17-alpine/tools-deps

14
library/composer Normal file
View File

@ -0,0 +1,14 @@
# this file was generated using https://github.com/composer/docker/blob/76d85ae70037011d245555936483bc135cb039f0/generate-stackbrew-library.sh
Maintainers: Composer (@composer), Rob Bast (@alcohol)
GitRepo: https://github.com/composer/docker.git
Tags: 2.1.3, 2.1, 2, latest
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: 30e50f0c0d18c64af9c178c2db5cdfadb1305ea8
Directory: 2.1
Tags: 1.10.22, 1.10, 1
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: 890a12899ba8fbd4876bb8513d5cb75ce68d230c
Directory: 1.10

19
library/consul Normal file
View File

@ -0,0 +1,19 @@
Maintainers: Consul Team <consul@hashicorp.com> (@hashicorp/consul)
Tags: 1.10.0, 1.10, latest
Architectures: amd64, arm32v6, arm64v8, i386
GitRepo: https://github.com/hashicorp/docker-consul.git
GitCommit: 75971b9b493d8ad1ed2a7d8892a1dace2b54f848
Directory: 0.X
Tags: 1.9.7, 1.9
Architectures: amd64, arm32v6, arm64v8, i386
GitRepo: https://github.com/hashicorp/docker-consul.git
GitCommit: 50cd4070084984b3237104bd9494ae45809fd475
Directory: 0.X
Tags: 1.8.13, 1.8
Architectures: amd64, arm32v6, arm64v8, i386
GitRepo: https://github.com/hashicorp/docker-consul.git
GitCommit: 8e034a419d073ddb09175efcff2d720f7a7bdcec
Directory: 0.X

7
library/convertigo Normal file
View File

@ -0,0 +1,7 @@
Maintainers: Nicolas Albert <nicolasa@convertigo.com> (@nicolas-albert), Olivier Picciotto <olivier.picciotto@convertigo.com> (@opicciotto)
GitRepo: https://github.com/convertigo/convertigo
GitCommit: 7185ee1291019589b25abe0957f431be65c1855b
Tags: 7.9.4, 7.9, latest
Architectures: amd64
Directory: docker/default

65
library/couchbase Normal file
View File

@ -0,0 +1,65 @@
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: community-7.0.0-beta
GitCommit: 5929be778eb5306f116f71cc9a0a23fea6d9a7aa
Directory: community/couchbase-server/7.0.0-beta
Tags: latest, enterprise, 6.6.2, enterprise-6.6.2
GitCommit: 4d5b6101c73d4efe75d2288107f6fe00b1deeff5
Directory: enterprise/couchbase-server/6.6.2
Tags: community, community-6.6.0
GitCommit: 5929be778eb5306f116f71cc9a0a23fea6d9a7aa
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

23
library/couchdb Normal file
View File

@ -0,0 +1,23 @@
# see https://couchdb.apache.org/
# also the announce@couchdb.apache.org mailing list
Maintainers: Joan Touzet <wohali@apache.org> (@wohali)
GitRepo: https://github.com/apache/couchdb-docker
GitCommit: 4993111e388d203d2200a3dd88449517db548c05
Tags: latest, 3.1.1, 3.1, 3
Architectures: amd64, arm64v8
Directory: 3.1.1
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
# ASF release policy, see:
# http://www.apache.org/dev/release-distribution.html#unreleased
# The middle two bullet points are the issue.

34
library/crate Normal file
View File

@ -0,0 +1,34 @@
Maintainers: Mathias Fußenegger <mathias@crate.io> (@mfussenegger),
Sebastian Utz <sebastian@crate.io> (@seut),
Michael Kleen <michael.kleen@crate.io> (@mkleen),
Andreas Motl <andreas.motl@crate.io> (@amotl)
GitRepo: https://github.com/crate/docker-crate.git
Tags: 4.5.3, 4.5, latest
Architectures: amd64, arm64v8
GitCommit: 3fef48d63ca2e4afb35a9e4457a7d307068270b8
Tags: 4.4.3, 4.4
Architectures: amd64, arm64v8
GitCommit: 2ccc43c2b34cd4182b7757298f97dd21f123b2d9
Tags: 4.3.4, 4.3
Architectures: amd64, arm64v8
GitCommit: eae5f171ef089074d42d033af2988714a87190b6
Tags: 4.2.7, 4.2
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

18
library/crux Normal file
View File

@ -0,0 +1,18 @@
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

10
library/dart Normal file
View File

@ -0,0 +1,10 @@
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: 1b5c9e68abc5324a72e04191e01b657ae591e1f3
Tags: 2.13.4-sdk, 2.13-sdk, 2-sdk, stable-sdk, sdk, 2.13.4, 2.13, 2, stable, latest
Directory: stable/buster
Tags: 2.14.0-188.5.beta-sdk, beta-sdk, 2.14.0-188.5.beta, beta
Directory: beta/buster

140
library/debian Normal file
View File

@ -0,0 +1,140 @@
# tarballs built by debuerreotype
# see https://github.com/debuerreotype/debuerreotype
Maintainers: Tianon Gravi <tianon@debian.org> (@tianon),
Paul Tagliamonte <paultag@debian.org> (@paultag)
GitRepo: https://github.com/debuerreotype/docker-debian-artifacts.git
GitCommit: 9c1a3db18852520a8b72a4795c7b197bcc93e8a0
# https://github.com/debuerreotype/docker-debian-artifacts/tree/dist-amd64
amd64-GitFetch: refs/heads/dist-amd64
amd64-GitCommit: a4f413e5917d5917fb2343c0c37ea0728114c084
# https://github.com/debuerreotype/docker-debian-artifacts/tree/dist-arm32v5
arm32v5-GitFetch: refs/heads/dist-arm32v5
arm32v5-GitCommit: f0fe8506f93540fae3d6f483f6ff207f412afd1b
# https://github.com/debuerreotype/docker-debian-artifacts/tree/dist-arm32v7
arm32v7-GitFetch: refs/heads/dist-arm32v7
arm32v7-GitCommit: 0cbb54b89d61fb2798c394505c4aeded86def115
# https://github.com/debuerreotype/docker-debian-artifacts/tree/dist-arm64v8
arm64v8-GitFetch: refs/heads/dist-arm64v8
arm64v8-GitCommit: ce9074ab2f0547300dfd5d60437e745b85e07736
# https://github.com/debuerreotype/docker-debian-artifacts/tree/dist-i386
i386-GitFetch: refs/heads/dist-i386
i386-GitCommit: acc2dfe04e3e73c21ffb2153d25e1293f4e68f19
# https://github.com/debuerreotype/docker-debian-artifacts/tree/dist-mips64le
mips64le-GitFetch: refs/heads/dist-mips64le
mips64le-GitCommit: d114a529a4a7df3ddb4909dc8891edb9031350eb
# https://github.com/debuerreotype/docker-debian-artifacts/tree/dist-ppc64le
ppc64le-GitFetch: refs/heads/dist-ppc64le
ppc64le-GitCommit: 476679fee8da3b4e947246d5580978380175cd8c
# https://github.com/debuerreotype/docker-debian-artifacts/tree/dist-riscv64
riscv64-GitFetch: refs/heads/dist-riscv64
riscv64-GitCommit: 8c328b0330ae017cd49f86d7b089d12f1b28bd98
# https://github.com/debuerreotype/docker-debian-artifacts/tree/dist-s390x
s390x-GitFetch: refs/heads/dist-s390x
s390x-GitCommit: 296659d8855ee79e91507b85cade40d99ab893f2
# bullseye -- Debian x.y Testing distribution - Not Released
Tags: bullseye, bullseye-20210621
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
Directory: bullseye
Tags: bullseye-backports
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
Directory: bullseye/backports
Tags: bullseye-slim, bullseye-20210621-slim
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
Directory: bullseye/slim
# buster -- Debian 10.10 Released 19 June 2021
Tags: buster, buster-20210621, 10.10, 10, latest
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
Directory: buster
Tags: buster-backports
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
Directory: buster/backports
Tags: buster-slim, buster-20210621-slim, 10.10-slim, 10-slim
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
Directory: buster/slim
# experimental -- Experimental packages - not released; use at your own risk.
Tags: experimental, experimental-20210621
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, riscv64, s390x
Directory: experimental
# oldstable -- Debian 9.13 Released 18 July 2020
Tags: oldstable, oldstable-20210621
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386
Directory: oldstable
Tags: oldstable-backports
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386
Directory: oldstable/backports
Tags: oldstable-slim, oldstable-20210621-slim
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386
Directory: oldstable/slim
# rc-buggy -- Experimental packages - not released; use at your own risk.
Tags: rc-buggy, rc-buggy-20210621
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
Directory: rc-buggy
# sid -- Debian x.y Unstable - Not Released
Tags: sid, sid-20210621
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, riscv64, s390x
Directory: sid
Tags: sid-slim, sid-20210621-slim
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, riscv64, s390x
Directory: sid/slim
# stable -- Debian 10.10 Released 19 June 2021
Tags: stable, stable-20210621
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
Directory: stable
Tags: stable-backports
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
Directory: stable/backports
Tags: stable-slim, stable-20210621-slim
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
Directory: stable/slim
# stretch -- Debian 9.13 Released 18 July 2020
Tags: stretch, stretch-20210621, 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-20210621-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-20210621
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
Directory: testing
Tags: testing-backports
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
Directory: testing/backports
Tags: testing-slim, testing-20210621-slim
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
Directory: testing/slim
# unstable -- Debian x.y Unstable - Not Released
Tags: unstable, unstable-20210621
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, riscv64, s390x
Directory: unstable
Tags: unstable-slim, unstable-20210621-slim
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, riscv64, s390x
Directory: unstable/slim

52
library/docker Normal file
View File

@ -0,0 +1,52 @@
# this file is generated via https://github.com/docker-library/docker/blob/01ecb284d31bd8253dcf37a8a353bc5f7ecbb7de/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
Tags: 20.10.7, 20.10, 20, latest
Architectures: amd64, arm32v6, arm32v7, arm64v8
GitCommit: 279ba9c93e8e26a15171645bd511ea8476c4706e
Directory: 20.10
Tags: 20.10.7-dind, 20.10-dind, 20-dind, dind
Architectures: amd64, arm32v6, arm32v7, arm64v8
GitCommit: 30d7b9bf7663c96fcd888bd75e9aaa547a808a23
Directory: 20.10/dind
Tags: 20.10.7-dind-rootless, 20.10-dind-rootless, 20-dind-rootless, dind-rootless
Architectures: amd64, arm64v8
GitCommit: 2ab877f315206028bb9352d86e28c71b25723bf2
Directory: 20.10/dind-rootless
Tags: 20.10.7-git, 20.10-git, 20-git, git
Architectures: amd64, arm32v6, arm32v7, arm64v8
GitCommit: 387e351394bfad74bceebf8303c6c8e39c3d4ed4
Directory: 20.10/git
Tags: 20.10.7-windowsservercore-1809, 20.10-windowsservercore-1809, 20-windowsservercore-1809, windowsservercore-1809
SharedTags: 20.10.7-windowsservercore, 20.10-windowsservercore, 20-windowsservercore, windowsservercore
Architectures: windows-amd64
GitCommit: 279ba9c93e8e26a15171645bd511ea8476c4706e
Directory: 20.10/windows/windowsservercore-1809
Constraints: windowsservercore-1809
Tags: 19.03.15, 19.03, 19
Architectures: amd64, arm32v6, arm32v7, arm64v8
GitCommit: 835c371c516ebdf67adc0c76bbfb38bf9d3e586c
Directory: 19.03
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

110
library/drupal Normal file
View File

@ -0,0 +1,110 @@
# this file is generated via https://github.com/docker-library/drupal/blob/9b59b02c864c5ff7fc330da1a2663f960e0bf62e/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.2.1-php8.0-apache-buster, 9.2-php8.0-apache-buster, 9-php8.0-apache-buster, php8.0-apache-buster, 9.2.1-php8.0-apache, 9.2-php8.0-apache, 9-php8.0-apache, php8.0-apache, 9.2.1-apache-buster, 9.2-apache-buster, 9-apache-buster, apache-buster, 9.2.1-apache, 9.2-apache, 9-apache, apache, 9.2.1, 9.2, 9, latest, 9.2.1-php8.0, 9.2-php8.0, 9-php8.0, php8.0
Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: 186ff9665b31051d4046deaa6dc3ea074c8a7085
Directory: 9.2/php8.0/apache-buster
Tags: 9.2.1-php8.0-fpm-buster, 9.2-php8.0-fpm-buster, 9-php8.0-fpm-buster, php8.0-fpm-buster, 9.2.1-php8.0-fpm, 9.2-php8.0-fpm, 9-php8.0-fpm, php8.0-fpm, 9.2.1-fpm-buster, 9.2-fpm-buster, 9-fpm-buster, fpm-buster, 9.2.1-fpm, 9.2-fpm, 9-fpm, fpm
Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: 186ff9665b31051d4046deaa6dc3ea074c8a7085
Directory: 9.2/php8.0/fpm-buster
Tags: 9.2.1-php8.0-fpm-alpine3.14, 9.2-php8.0-fpm-alpine3.14, 9-php8.0-fpm-alpine3.14, php8.0-fpm-alpine3.14, 9.2.1-php8.0-fpm-alpine, 9.2-php8.0-fpm-alpine, 9-php8.0-fpm-alpine, php8.0-fpm-alpine, 9.2.1-fpm-alpine3.14, 9.2-fpm-alpine3.14, 9-fpm-alpine3.14, fpm-alpine3.14, 9.2.1-fpm-alpine, 9.2-fpm-alpine, 9-fpm-alpine, fpm-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: 186ff9665b31051d4046deaa6dc3ea074c8a7085
Directory: 9.2/php8.0/fpm-alpine3.14
Tags: 9.2.1-php8.0-fpm-alpine3.13, 9.2-php8.0-fpm-alpine3.13, 9-php8.0-fpm-alpine3.13, php8.0-fpm-alpine3.13, 9.2.1-fpm-alpine3.13, 9.2-fpm-alpine3.13, 9-fpm-alpine3.13, fpm-alpine3.13
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: 186ff9665b31051d4046deaa6dc3ea074c8a7085
Directory: 9.2/php8.0/fpm-alpine3.13
Tags: 9.2.1-php7.4-apache-buster, 9.2-php7.4-apache-buster, 9-php7.4-apache-buster, php7.4-apache-buster, 9.2.1-php7.4-apache, 9.2-php7.4-apache, 9-php7.4-apache, php7.4-apache
Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: 186ff9665b31051d4046deaa6dc3ea074c8a7085
Directory: 9.2/php7.4/apache-buster
Tags: 9.2.1-php7.4-fpm-buster, 9.2-php7.4-fpm-buster, 9-php7.4-fpm-buster, php7.4-fpm-buster, 9.2.1-php7.4-fpm, 9.2-php7.4-fpm, 9-php7.4-fpm, php7.4-fpm
Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: 186ff9665b31051d4046deaa6dc3ea074c8a7085
Directory: 9.2/php7.4/fpm-buster
Tags: 9.2.1-php7.4-fpm-alpine3.14, 9.2-php7.4-fpm-alpine3.14, 9-php7.4-fpm-alpine3.14, php7.4-fpm-alpine3.14, 9.2.1-php7.4-fpm-alpine, 9.2-php7.4-fpm-alpine, 9-php7.4-fpm-alpine, php7.4-fpm-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: 186ff9665b31051d4046deaa6dc3ea074c8a7085
Directory: 9.2/php7.4/fpm-alpine3.14
Tags: 9.2.1-php7.4-fpm-alpine3.13, 9.2-php7.4-fpm-alpine3.13, 9-php7.4-fpm-alpine3.13, php7.4-fpm-alpine3.13
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: 186ff9665b31051d4046deaa6dc3ea074c8a7085
Directory: 9.2/php7.4/fpm-alpine3.13
Tags: 9.1.10-php8.0-apache-buster, 9.1-php8.0-apache-buster, 9.1.10-php8.0-apache, 9.1-php8.0-apache, 9.1.10-apache-buster, 9.1-apache-buster, 9.1.10-apache, 9.1-apache, 9.1.10, 9.1, 9.1.10-php8.0, 9.1-php8.0
Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: d26d927257e9719ecd764ca64e96263f2374e54e
Directory: 9.1/php8.0/apache-buster
Tags: 9.1.10-php8.0-fpm-buster, 9.1-php8.0-fpm-buster, 9.1.10-php8.0-fpm, 9.1-php8.0-fpm, 9.1.10-fpm-buster, 9.1-fpm-buster, 9.1.10-fpm, 9.1-fpm
Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: d26d927257e9719ecd764ca64e96263f2374e54e
Directory: 9.1/php8.0/fpm-buster
Tags: 9.1.10-php8.0-fpm-alpine3.13, 9.1-php8.0-fpm-alpine3.13, 9.1.10-php8.0-fpm-alpine, 9.1-php8.0-fpm-alpine, 9.1.10-fpm-alpine3.13, 9.1-fpm-alpine3.13, 9.1.10-fpm-alpine, 9.1-fpm-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: 9b59b02c864c5ff7fc330da1a2663f960e0bf62e
Directory: 9.1/php8.0/fpm-alpine3.13
Tags: 9.1.10-php7.4-apache-buster, 9.1-php7.4-apache-buster, 9.1.10-php7.4-apache, 9.1-php7.4-apache
Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: d26d927257e9719ecd764ca64e96263f2374e54e
Directory: 9.1/php7.4/apache-buster
Tags: 9.1.10-php7.4-fpm-buster, 9.1-php7.4-fpm-buster, 9.1.10-php7.4-fpm, 9.1-php7.4-fpm
Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: d26d927257e9719ecd764ca64e96263f2374e54e
Directory: 9.1/php7.4/fpm-buster
Tags: 9.1.10-php7.4-fpm-alpine3.13, 9.1-php7.4-fpm-alpine3.13, 9.1.10-php7.4-fpm-alpine, 9.1-php7.4-fpm-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: 9b59b02c864c5ff7fc330da1a2663f960e0bf62e
Directory: 9.1/php7.4/fpm-alpine3.13
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: 5d80ce644a0b877e613f7cfb475975b0235cdbcf
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: 5d80ce644a0b877e613f7cfb475975b0235cdbcf
Directory: 8.9/php7.4/fpm-buster
Tags: 8.9.16-php7.4-fpm-alpine3.13, 8.9-php7.4-fpm-alpine3.13, 8-php7.4-fpm-alpine3.13, 8.9.16-php7.4-fpm-alpine, 8.9-php7.4-fpm-alpine, 8-php7.4-fpm-alpine, 8.9.16-fpm-alpine3.13, 8.9-fpm-alpine3.13, 8-fpm-alpine3.13, 8.9.16-fpm-alpine, 8.9-fpm-alpine, 8-fpm-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: 9b59b02c864c5ff7fc330da1a2663f960e0bf62e
Directory: 8.9/php7.4/fpm-alpine3.13
Tags: 7.81-php7.4-apache-buster, 7-php7.4-apache-buster, 7.81-php7.4-apache, 7-php7.4-apache, 7.81-apache-buster, 7-apache-buster, 7.81-apache, 7-apache, 7.81, 7, 7.81-php7.4, 7-php7.4
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
GitCommit: a419d9a8c53e1d27b0f0592dd3a2da99be61df40
Directory: 7/php7.4/apache-buster
Tags: 7.81-php7.4-fpm-buster, 7-php7.4-fpm-buster, 7.81-php7.4-fpm, 7-php7.4-fpm, 7.81-fpm-buster, 7-fpm-buster, 7.81-fpm, 7-fpm
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
GitCommit: a419d9a8c53e1d27b0f0592dd3a2da99be61df40
Directory: 7/php7.4/fpm-buster
Tags: 7.81-php7.4-fpm-alpine3.14, 7-php7.4-fpm-alpine3.14, 7.81-php7.4-fpm-alpine, 7-php7.4-fpm-alpine, 7.81-fpm-alpine3.14, 7-fpm-alpine3.14, 7.81-fpm-alpine, 7-fpm-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: 9b59b02c864c5ff7fc330da1a2663f960e0bf62e
Directory: 7/php7.4/fpm-alpine3.14
Tags: 7.81-php7.4-fpm-alpine3.13, 7-php7.4-fpm-alpine3.13, 7.81-fpm-alpine3.13, 7-fpm-alpine3.13
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: 9b59b02c864c5ff7fc330da1a2663f960e0bf62e
Directory: 7/php7.4/fpm-alpine3.13

19
library/eclipse-mosquitto Normal file
View File

@ -0,0 +1,19 @@
Maintainers: Roger Light <roger@atchoo.org> (@ralight)
GitRepo: https://github.com/eclipse/mosquitto.git
GitCommit: 5217863b8b210f22df81c6b95d1eb89ed4af9b50
Architectures: amd64, arm32v6, arm64v8, i386, ppc64le, s390x
Tags: 2.0.11, 2.0, 2, latest
Directory: docker/2.0
Tags: 2.0.11-openssl, 2.0-openssl, 2-openssl, openssl
Directory: docker/2.0-openssl
Tags: 1.6.15, 1.6
Directory: docker/1.6
Tags: 1.6.15-openssl, 1.6-openssl
Directory: docker/1.6-openssl
Tags: 1.5.11, 1.5
Directory: docker/1.5

17
library/eggdrop Normal file
View File

@ -0,0 +1,17 @@
Maintainers: Geo Van O <geo@eggheads.org> (@vanosg)
GitRepo: https://github.com/eggheads/eggdrop-docker.git
Tags: develop
Architectures: arm32v6, arm64v8, amd64
GitCommit: 8d3bb9a0a2f35b45d50b82e9c7dd7a5af66e4c9a
Directory: develop
Tags: 1.8, 1.8.4
Architectures: amd64
GitCommit: 14411e45f599536a86d9f023c0fa09f3dd2f5454
Directory: 1.8
Tags: 1.9, 1.9.1, stable, latest
Architectures: amd64, arm32v6, arm64v8
GitCommit: eb6827278e290bc9ae5d443adfac3ca153d1c459
Directory: 1.9

15
library/elasticsearch Normal file
View File

@ -0,0 +1,15 @@
# 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.13.3
Architectures: amd64, arm64v8
GitCommit: c1bbd9936ebe7343ac4837ae034a8949a3b54f83
Directory: 7
Tags: 6.8.17
Architectures: amd64
GitCommit: 122b0fc17af3034d581534d6fb751be2a3788d10
Directory: 6

130
library/elixir Normal file
View File

@ -0,0 +1,130 @@
# this file is generated via https://github.com/erlef/docker-elixir/blob/d834e327cadfda82351c41054e57e2710c8aaf84/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.2, 1.12, latest
Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
GitCommit: 2b5da5abf10f3026d01b6dda3c509f4f09f60063
Directory: 1.12
Tags: 1.12.2-slim, 1.12-slim, slim
Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
GitCommit: 2b5da5abf10f3026d01b6dda3c509f4f09f60063
Directory: 1.12/slim
Tags: 1.12.2-alpine, 1.12-alpine, alpine
Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
GitCommit: 2b5da5abf10f3026d01b6dda3c509f4f09f60063
Directory: 1.12/alpine
Tags: 1.11.4, 1.11
Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
GitCommit: 045351a425a16578309053fa8f729f046fcd616f
Directory: 1.11
Tags: 1.11.4-slim, 1.11-slim
Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
GitCommit: 045351a425a16578309053fa8f729f046fcd616f
Directory: 1.11/slim
Tags: 1.11.4-alpine, 1.11-alpine
Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
GitCommit: 045351a425a16578309053fa8f729f046fcd616f
Directory: 1.11/alpine
Tags: 1.10.4, 1.10
Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
GitCommit: a8d582c328db5864a4e8e5f869900e3a52265f38
Directory: 1.10
Tags: 1.10.4-slim, 1.10-slim
Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
GitCommit: a8d582c328db5864a4e8e5f869900e3a52265f38
Directory: 1.10/slim
Tags: 1.10.4-alpine, 1.10-alpine
Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
GitCommit: a8d582c328db5864a4e8e5f869900e3a52265f38
Directory: 1.10/alpine
Tags: 1.9.4, 1.9
Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
GitCommit: 0d9f47458468a8bf1407374731cbec077ab6f895
Directory: 1.9
Tags: 1.9.4-slim, 1.9-slim
Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
GitCommit: 0d9f47458468a8bf1407374731cbec077ab6f895
Directory: 1.9/slim
Tags: 1.9.4-alpine, 1.9-alpine
Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
GitCommit: 0d9f47458468a8bf1407374731cbec077ab6f895
Directory: 1.9/alpine
Tags: 1.8.2, 1.8
Architectures: amd64, arm32v7, arm64v8, i386
GitCommit: 4122b4840bd762d1434424e1ec693929b0198c98
Directory: 1.8
Tags: 1.8.2-slim, 1.8-slim
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
Directory: 1.8/otp-22
Tags: 1.8.2-otp-22-alpine, 1.8-otp-22-alpine
Architectures: amd64, arm32v7, arm64v8, i386
GitCommit: 6dc5ffd3b4c2915096887b45ba8e71d391ce2398
Directory: 1.8/otp-22-alpine
Tags: 1.7.4, 1.7
Architectures: amd64, arm32v7, arm64v8, i386
GitCommit: 2b7dd2845d27a6dad57bf0047b305375d6182402
Directory: 1.7
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

99
library/erlang Normal file
View File

@ -0,0 +1,99 @@
# this file is generated via https://github.com/erlang/docker-erlang-otp/blob/974493b1ce4fc3fb4af34306e957629250fa4648/generate-stackbrew-library.sh
Maintainers: Mr C0B <denc716@gmail.com> (@c0b)
GitRepo: https://github.com/erlang/docker-erlang-otp.git
Tags: 24.0.3.0, 24.0.3, 24.0, 24, latest
Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
GitCommit: e2996541bd4acd90849c92a9bbe65f059f736bea
Directory: 24
Tags: 24.0.3.0-slim, 24.0.3-slim, 24.0-slim, 24-slim, slim
Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
GitCommit: e2996541bd4acd90849c92a9bbe65f059f736bea
Directory: 24/slim
Tags: 24.0.3.0-alpine, 24.0.3-alpine, 24.0-alpine, 24-alpine, alpine
Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
GitCommit: e2996541bd4acd90849c92a9bbe65f059f736bea
Directory: 24/alpine
Tags: 23.3.4.4, 23.3.4, 23.3, 23
Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
GitCommit: 5f4eace5c3c8feb18934d6c45697950dbe4f4f93
Directory: 23
Tags: 23.3.4.4-slim, 23.3.4-slim, 23.3-slim, 23-slim
Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
GitCommit: 5f4eace5c3c8feb18934d6c45697950dbe4f4f93
Directory: 23/slim
Tags: 23.3.4.4-alpine, 23.3.4-alpine, 23.3-alpine, 23-alpine
Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
GitCommit: ecf3785f0fca514b53b3802ac1d7b977eb4a3316
Directory: 23/alpine
Tags: 22.3.4.20, 22.3.4, 22.3, 22
Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
GitCommit: 563db88eea30a7ae5bc5aea6643b6b186a555c35
Directory: 22
Tags: 22.3.4.20-slim, 22.3.4-slim, 22.3-slim, 22-slim
Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
GitCommit: 563db88eea30a7ae5bc5aea6643b6b186a555c35
Directory: 22/slim
Tags: 22.3.4.20-alpine, 22.3.4-alpine, 22.3-alpine, 22-alpine
Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
GitCommit: ecf3785f0fca514b53b3802ac1d7b977eb4a3316
Directory: 22/alpine
Tags: 21.3.8.24, 21.3.8, 21.3, 21
Architectures: amd64, arm32v7, arm64v8, i386
GitCommit: 563db88eea30a7ae5bc5aea6643b6b186a555c35
Directory: 21
Tags: 21.3.8.24-slim, 21.3.8-slim, 21.3-slim, 21-slim
Architectures: amd64, arm32v7, arm64v8, i386
GitCommit: 563db88eea30a7ae5bc5aea6643b6b186a555c35
Directory: 21/slim
Tags: 21.3.8.24-alpine, 21.3.8-alpine, 21.3-alpine, 21-alpine
Architectures: amd64, arm32v7, arm64v8, i386
GitCommit: 563db88eea30a7ae5bc5aea6643b6b186a555c35
Directory: 21/alpine
Tags: 20.3.8.26, 20.3.8, 20.3, 20
Architectures: amd64, arm32v7, arm64v8, i386
GitCommit: abfd637ea53fff8814eee01f865a88d8b4c21c57
Directory: 20
Tags: 20.3.8.26-slim, 20.3.8-slim, 20.3-slim, 20-slim
Architectures: amd64, arm32v7, arm64v8, i386
GitCommit: 84d8c156c9b582708c69107131834dc7fc61c0c4
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

44
library/euleros Normal file
View File

@ -0,0 +1,44 @@
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

7
library/express-gateway Normal file
View File

@ -0,0 +1,7 @@
Maintainers: The Express-Gateway Team <info@express-gateway.io> (@express_gateway)
GitRepo: https://github.com/ExpressGateway/docker-express-gateway.git
Tags: 1.x, 1.16.x, 1.16.11, latest
Architectures: arm64v8, amd64, ppc64le, s390x
GitCommit: fa2707c3b24bbd99710a100d7859566fa28817b8
Directory: alpine

40
library/fedora Normal file
View File

@ -0,0 +1,40 @@
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
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
amd64-Directory: x86_64/
arm64v8-Directory: aarch64/
arm32v7-Directory: armhfp/

44
library/flink Normal file
View File

@ -0,0 +1,44 @@
# 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.1-scala_2.12-java8, 1.13-scala_2.12-java8, scala_2.12-java8, 1.13.1-scala_2.12, 1.13-scala_2.12, scala_2.12, 1.13.1-java8, 1.13-java8, java8, 1.13.1, 1.13, latest
Architectures: amd64
GitCommit: 4ddcc63ad5c333857eb6230da018505f51776d5e
Directory: ./1.13/scala_2.12-java8-debian
Tags: 1.13.1-scala_2.12-java11, 1.13-scala_2.12-java11, scala_2.12-java11, 1.13.1-java11, 1.13-java11, java11
Architectures: amd64
GitCommit: 4ddcc63ad5c333857eb6230da018505f51776d5e
Directory: ./1.13/scala_2.12-java11-debian
Tags: 1.13.1-scala_2.11-java8, 1.13-scala_2.11-java8, scala_2.11-java8, 1.13.1-scala_2.11, 1.13-scala_2.11, scala_2.11
Architectures: amd64
GitCommit: 4ddcc63ad5c333857eb6230da018505f51776d5e
Directory: ./1.13/scala_2.11-java8-debian
Tags: 1.13.1-scala_2.11-java11, 1.13-scala_2.11-java11, scala_2.11-java11
Architectures: amd64
GitCommit: 4ddcc63ad5c333857eb6230da018505f51776d5e
Directory: ./1.13/scala_2.11-java11-debian
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: f5cd9eccfa66c2460565a0427b5f1fdf2cbe0a94
Directory: ./1.12/scala_2.12-java8-debian
Tags: 1.12.4-scala_2.12-java11, 1.12-scala_2.12-java11, 1.12.4-java11, 1.12-java11
Architectures: amd64
GitCommit: f5cd9eccfa66c2460565a0427b5f1fdf2cbe0a94
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: f5cd9eccfa66c2460565a0427b5f1fdf2cbe0a94
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: f5cd9eccfa66c2460565a0427b5f1fdf2cbe0a94
Directory: ./1.12/scala_2.11-java11-debian

15
library/fluentd Normal file
View File

@ -0,0 +1,15 @@
Maintainers: Masahiro Nakagawa <repeatedly@gmail.com> (@repeatedly),
Fluentd developers <fluentd@googlegroups.com> (@fluent/admins)
GitRepo: https://github.com/fluent/fluentd-docker-image.git
# Alpine images
Tags: v1.9.1-1.0, v1.9-1, latest
Architectures: amd64, arm32v6, arm64v8, i386, ppc64le, s390x
GitCommit: b9cb2826b85900f960e256b2426a033e7cacfd6c
Directory: v1.9/alpine
# Debian images
Tags: v1.9.1-debian-1.0, v1.9-debian-1
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: b9cb2826b85900f960e256b2426a033e7cacfd6c
Directory: v1.9/debian

79
library/friendica Normal file
View File

@ -0,0 +1,79 @@
# This file is generated via https://github.com/friendica/docker/blob/3dc6dc004b8824dd1cd31ada78894cbb3ee66133/generate-stackbrew-library.sh
Maintainers: Friendica <info@friendi.ca> (@friendica), Philipp Holzer <admin@philipp.info> (@nupplaphil)
GitRepo: https://github.com/friendica/docker.git
Tags: 2020.09-apache, 2020.09
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
GitCommit: 8de8251f810c1cefd2c0fa24fb83767547510a9a
Directory: 2020.09/apache
Tags: 2020.09-fpm
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
GitCommit: 8de8251f810c1cefd2c0fa24fb83767547510a9a
Directory: 2020.09/fpm
Tags: 2020.09-fpm-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: 8de8251f810c1cefd2c0fa24fb83767547510a9a
Directory: 2020.09/fpm-alpine
Tags: 2021.01-apache, 2021.01
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
GitCommit: 8de8251f810c1cefd2c0fa24fb83767547510a9a
Directory: 2021.01/apache
Tags: 2021.01-fpm
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
GitCommit: 8de8251f810c1cefd2c0fa24fb83767547510a9a
Directory: 2021.01/fpm
Tags: 2021.01-fpm-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: 8de8251f810c1cefd2c0fa24fb83767547510a9a
Directory: 2021.01/fpm-alpine
Tags: 2021.04-apache, 2021.04
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
GitCommit: 8de8251f810c1cefd2c0fa24fb83767547510a9a
Directory: 2021.04/apache
Tags: 2021.04-fpm
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
GitCommit: 8de8251f810c1cefd2c0fa24fb83767547510a9a
Directory: 2021.04/fpm
Tags: 2021.04-fpm-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: 8de8251f810c1cefd2c0fa24fb83767547510a9a
Directory: 2021.04/fpm-alpine
Tags: 2021.07-apache, apache, stable-apache, 2021.07, latest, stable
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
GitCommit: 31e26557ac5be8b6051d3951ede13aad9777bb6a
Directory: 2021.07/apache
Tags: 2021.07-fpm, fpm, stable-fpm
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
GitCommit: 31e26557ac5be8b6051d3951ede13aad9777bb6a
Directory: 2021.07/fpm
Tags: 2021.07-fpm-alpine, fpm-alpine, stable-fpm-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: 31e26557ac5be8b6051d3951ede13aad9777bb6a
Directory: 2021.07/fpm-alpine
Tags: 2021.09-dev-apache, dev-apache, 2021.09-dev, dev
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
GitCommit: 31e26557ac5be8b6051d3951ede13aad9777bb6a
Directory: 2021.09-dev/apache
Tags: 2021.09-dev-fpm, dev-fpm
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
GitCommit: 31e26557ac5be8b6051d3951ede13aad9777bb6a
Directory: 2021.09-dev/fpm
Tags: 2021.09-dev-fpm-alpine, dev-fpm-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: 31e26557ac5be8b6051d3951ede13aad9777bb6a
Directory: 2021.09-dev/fpm-alpine

14
library/fsharp Normal file
View File

@ -0,0 +1,14 @@
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

62
library/gazebo Normal file
View File

@ -0,0 +1,62 @@
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: 96c8fa210caaeebd50e067ade05d5fc9a4a60c84
Directory: gazebo/9/ubuntu/xenial/gzserver9
Tags: libgazebo9-xenial
Architectures: amd64
GitCommit: 96c8fa210caaeebd50e067ade05d5fc9a4a60c84
Directory: gazebo/9/ubuntu/xenial/libgazebo9
########################################
# Distro: ubuntu:bionic
Tags: gzserver9, gzserver9-bionic
Architectures: amd64
GitCommit: 212f7553882e8f3e96af773ede6ef1848277c09e
Directory: gazebo/9/ubuntu/bionic/gzserver9
Tags: libgazebo9, libgazebo9-bionic
Architectures: amd64
GitCommit: 212f7553882e8f3e96af773ede6ef1848277c09e
Directory: gazebo/9/ubuntu/bionic/libgazebo9
################################################################################
# Release: 11
########################################
# Distro: ubuntu:bionic
Tags: gzserver11-bionic
Architectures: amd64
GitCommit: fb027b850a47135bcc5e67afe5d7d316ce25550e
Directory: gazebo/11/ubuntu/bionic/gzserver11
Tags: libgazebo11-bionic
Architectures: amd64
GitCommit: fb027b850a47135bcc5e67afe5d7d316ce25550e
Directory: gazebo/11/ubuntu/bionic/libgazebo11
########################################
# Distro: ubuntu:focal
Tags: gzserver11, gzserver11-focal
Architectures: amd64
GitCommit: fb027b850a47135bcc5e67afe5d7d316ce25550e
Directory: gazebo/11/ubuntu/focal/gzserver11
Tags: libgazebo11, libgazebo11-focal, latest
Architectures: amd64
GitCommit: fb027b850a47135bcc5e67afe5d7d316ce25550e
Directory: gazebo/11/ubuntu/focal/libgazebo11

33
library/gcc Normal file
View File

@ -0,0 +1,33 @@
# this file is generated via https://github.com/docker-library/gcc/blob/bb63178b4a0781555d904c3ac3897c9b81d922c8/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
Architectures: amd64, arm32v5, arm32v7, arm64v8, ppc64le, s390x
GitCommit: a5937a0b39e55c174007c2b9c2f363cdd2142818
Directory: 11
# Docker EOL: 2022-10-27
# Last Modified: 2021-04-08
Tags: 10.3.0, 10.3, 10, 10.3.0-buster, 10.3-buster, 10-buster
Architectures: amd64, arm32v5, arm32v7, arm64v8, ppc64le, s390x
GitCommit: a5937a0b39e55c174007c2b9c2f363cdd2142818
Directory: 10
# Docker EOL: 2022-10-08
# Last Modified: 2021-06-01
Tags: 9.4.0, 9.4, 9, 9.4.0-buster, 9.4-buster, 9-buster
Architectures: amd64, arm32v5, arm32v7, arm64v8, ppc64le, s390x
GitCommit: 2c4cae395157000ce7b0f89ea47268f66f320bb1
Directory: 9
# Docker EOL: 2022-12-01
# 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

30
library/geonetwork Normal file
View File

@ -0,0 +1,30 @@
# this file is generated via https://github.com/geonetwork/docker-geonetwork/blob/8e557004a50f04a2ac62a21009ce0ec745ed9b8d/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
Tags: 3.10.6, 3.10
Architectures: amd64, arm64v8
GitCommit: a737bd2c96b3d960ba6c9cade863d2330386847a
Directory: 3.10.6
Tags: 3.10.6-postgres, 3.10-postgres
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.5, 4.0, 4, latest
Architectures: amd64
GitCommit: 8e557004a50f04a2ac62a21009ce0ec745ed9b8d
Directory: 4.0.5

25
library/ghost Normal file
View File

@ -0,0 +1,25 @@
# this file is generated via https://github.com/docker-library/ghost/blob/50c6e6bc5e38a96f48cf1033b86223212803418f/generate-stackbrew-library.sh
Maintainers: Tianon Gravi <admwiggin@gmail.com> (@tianon),
Joseph Ferguson <yosifkit@gmail.com> (@yosifkit)
GitRepo: https://github.com/docker-library/ghost.git
Tags: 4.9.4, 4.9, 4, latest
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
GitCommit: d7a88a952f163c1b726239ac4c8237357a3d0da7
Directory: 4/debian
Tags: 4.9.4-alpine, 4.9-alpine, 4-alpine, alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8
GitCommit: d7a88a952f163c1b726239ac4c8237357a3d0da7
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

132
library/golang Normal file
View File

@ -0,0 +1,132 @@
# this file is generated via https://github.com/docker-library/golang/blob/f300e60ca19c3b98cfcf01ca112af2ac10104320/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.17rc1-buster, 1.17-rc-buster, rc-buster
SharedTags: 1.17rc1, 1.17-rc, rc
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
GitCommit: 7f1f587018139127c0dc71bc276ca7b0609847f4
Directory: 1.17-rc/buster
Tags: 1.17rc1-stretch, 1.17-rc-stretch, rc-stretch
Architectures: amd64, arm32v7, arm64v8, i386
GitCommit: 7f1f587018139127c0dc71bc276ca7b0609847f4
Directory: 1.17-rc/stretch
Tags: 1.17rc1-alpine3.14, 1.17-rc-alpine3.14, rc-alpine3.14, 1.17rc1-alpine, 1.17-rc-alpine, rc-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: 7f1f587018139127c0dc71bc276ca7b0609847f4
Directory: 1.17-rc/alpine3.14
Tags: 1.17rc1-alpine3.13, 1.17-rc-alpine3.13, rc-alpine3.13
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: 7f1f587018139127c0dc71bc276ca7b0609847f4
Directory: 1.17-rc/alpine3.13
Tags: 1.17rc1-windowsservercore-1809, 1.17-rc-windowsservercore-1809, rc-windowsservercore-1809
SharedTags: 1.17rc1-windowsservercore, 1.17-rc-windowsservercore, rc-windowsservercore, 1.17rc1, 1.17-rc, rc
Architectures: windows-amd64
GitCommit: 7f1f587018139127c0dc71bc276ca7b0609847f4
Directory: 1.17-rc/windows/windowsservercore-1809
Constraints: windowsservercore-1809
Tags: 1.17rc1-windowsservercore-ltsc2016, 1.17-rc-windowsservercore-ltsc2016, rc-windowsservercore-ltsc2016
SharedTags: 1.17rc1-windowsservercore, 1.17-rc-windowsservercore, rc-windowsservercore, 1.17rc1, 1.17-rc, rc
Architectures: windows-amd64
GitCommit: 7f1f587018139127c0dc71bc276ca7b0609847f4
Directory: 1.17-rc/windows/windowsservercore-ltsc2016
Constraints: windowsservercore-ltsc2016
Tags: 1.17rc1-nanoserver-1809, 1.17-rc-nanoserver-1809, rc-nanoserver-1809
SharedTags: 1.17rc1-nanoserver, 1.17-rc-nanoserver, rc-nanoserver
Architectures: windows-amd64
GitCommit: 7f1f587018139127c0dc71bc276ca7b0609847f4
Directory: 1.17-rc/windows/nanoserver-1809
Constraints: nanoserver-1809, windowsservercore-1809
Tags: 1.16.6-buster, 1.16-buster, 1-buster, buster
SharedTags: 1.16.6, 1.16, 1, latest
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
GitCommit: 54aa949c354b1e14cb636539f401b0e58ca76927
Directory: 1.16/buster
Tags: 1.16.6-stretch, 1.16-stretch, 1-stretch, stretch
Architectures: amd64, arm32v7, arm64v8, i386
GitCommit: 54aa949c354b1e14cb636539f401b0e58ca76927
Directory: 1.16/stretch
Tags: 1.16.6-alpine3.14, 1.16-alpine3.14, 1-alpine3.14, alpine3.14, 1.16.6-alpine, 1.16-alpine, 1-alpine, alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: 54aa949c354b1e14cb636539f401b0e58ca76927
Directory: 1.16/alpine3.14
Tags: 1.16.6-alpine3.13, 1.16-alpine3.13, 1-alpine3.13, alpine3.13
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: 54aa949c354b1e14cb636539f401b0e58ca76927
Directory: 1.16/alpine3.13
Tags: 1.16.6-windowsservercore-1809, 1.16-windowsservercore-1809, 1-windowsservercore-1809, windowsservercore-1809
SharedTags: 1.16.6-windowsservercore, 1.16-windowsservercore, 1-windowsservercore, windowsservercore, 1.16.6, 1.16, 1, latest
Architectures: windows-amd64
GitCommit: 54aa949c354b1e14cb636539f401b0e58ca76927
Directory: 1.16/windows/windowsservercore-1809
Constraints: windowsservercore-1809
Tags: 1.16.6-windowsservercore-ltsc2016, 1.16-windowsservercore-ltsc2016, 1-windowsservercore-ltsc2016, windowsservercore-ltsc2016
SharedTags: 1.16.6-windowsservercore, 1.16-windowsservercore, 1-windowsservercore, windowsservercore, 1.16.6, 1.16, 1, latest
Architectures: windows-amd64
GitCommit: 54aa949c354b1e14cb636539f401b0e58ca76927
Directory: 1.16/windows/windowsservercore-ltsc2016
Constraints: windowsservercore-ltsc2016
Tags: 1.16.6-nanoserver-1809, 1.16-nanoserver-1809, 1-nanoserver-1809, nanoserver-1809
SharedTags: 1.16.6-nanoserver, 1.16-nanoserver, 1-nanoserver, nanoserver
Architectures: windows-amd64
GitCommit: 54aa949c354b1e14cb636539f401b0e58ca76927
Directory: 1.16/windows/nanoserver-1809
Constraints: nanoserver-1809, windowsservercore-1809
Tags: 1.15.14-buster, 1.15-buster
SharedTags: 1.15.14, 1.15
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
GitCommit: d23c409d5096cd3e6b18d977e1f70473e2726461
Directory: 1.15/buster
Tags: 1.15.14-stretch, 1.15-stretch
Architectures: amd64, arm32v7, arm64v8, i386
GitCommit: d23c409d5096cd3e6b18d977e1f70473e2726461
Directory: 1.15/stretch
Tags: 1.15.14-alpine3.14, 1.15-alpine3.14, 1.15.14-alpine, 1.15-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: d23c409d5096cd3e6b18d977e1f70473e2726461
Directory: 1.15/alpine3.14
Tags: 1.15.14-alpine3.13, 1.15-alpine3.13
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: d23c409d5096cd3e6b18d977e1f70473e2726461
Directory: 1.15/alpine3.13
Tags: 1.15.14-windowsservercore-1809, 1.15-windowsservercore-1809
SharedTags: 1.15.14-windowsservercore, 1.15-windowsservercore, 1.15.14, 1.15
Architectures: windows-amd64
GitCommit: d23c409d5096cd3e6b18d977e1f70473e2726461
Directory: 1.15/windows/windowsservercore-1809
Constraints: windowsservercore-1809
Tags: 1.15.14-windowsservercore-ltsc2016, 1.15-windowsservercore-ltsc2016
SharedTags: 1.15.14-windowsservercore, 1.15-windowsservercore, 1.15.14, 1.15
Architectures: windows-amd64
GitCommit: d23c409d5096cd3e6b18d977e1f70473e2726461
Directory: 1.15/windows/windowsservercore-ltsc2016
Constraints: windowsservercore-ltsc2016
Tags: 1.15.14-nanoserver-1809, 1.15-nanoserver-1809
SharedTags: 1.15.14-nanoserver, 1.15-nanoserver
Architectures: windows-amd64
GitCommit: d23c409d5096cd3e6b18d977e1f70473e2726461
Directory: 1.15/windows/nanoserver-1809
Constraints: nanoserver-1809, windowsservercore-1809

121
library/gradle Normal file
View File

@ -0,0 +1,121 @@
Maintainers: Keegan Witt <keeganwitt@gmail.com> (@keeganwitt)
GitRepo: https://github.com/keeganwitt/docker-gradle.git
# Hotspot
Tags: 7.1.1-jdk8, 7.1.1-jdk8-hotspot, 7.1-jdk8, 7.1-jdk8-hotspot, 7-jdk8, 7-jdk8-hotspot, jdk8, jdk8-hotspot, 7.1.1-jdk, 7.1.1-jdk-hotspot, 7.1-jdk, 7.1-jdk-hotspot, 7-jdk, 7-jdk-hotspot, jdk, jdk-hotspot, 7.1.1, 7.1.1-hotspot, 7.1, 7.1-hotspot, 7, 7-hotspot, latest, hotspot
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
GitCommit: e1e5d8d814938022d495bf76d74ebc945412eb0a
Directory: hotspot/jdk8
Tags: 7.1.1-jre8, 7.1.1-jre8-hotspot, 7.1-jre8, 7.1-jre8-hotspot, 7-jre8, 7-jre8-hotspot, jre8, jre8-hotspot, 7.1.1-jre, 7.1.1-jre-hotspot, 7.1-jre, 7.1-jre-hotspot, 7-jre, 7-jre-hotspot, jre, jre-hotspot
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
GitCommit: e1e5d8d814938022d495bf76d74ebc945412eb0a
Directory: hotspot/jre8
Tags: 7.1.1-jdk11, 7.1.1-jdk11-hotspot, 7.1-jdk11, 7.1-jdk11-hotspot, 7-jdk11, 7-jdk11-hotspot, jdk11, jdk11-hotspot
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
GitCommit: e1e5d8d814938022d495bf76d74ebc945412eb0a
Directory: hotspot/jdk11
Tags: 7.1.1-jre11, 7.1.1-jre11-hotspot, 7.1-jre11, 7.1-jre11-hotspot, 7-jre11, 7-jre11-hotspot, jre11, jre11-hotspot
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
GitCommit: e1e5d8d814938022d495bf76d74ebc945412eb0a
Directory: hotspot/jre11
Tags: 7.1.1-jdk16, 7.1.1-jdk16-hotspot, 7.1-jdk16, 7.1-jdk16-hotspot, 7-jdk16, 7-jdk16-hotspot, jdk16, jdk16-hotspot
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
GitCommit: e1e5d8d814938022d495bf76d74ebc945412eb0a
Directory: hotspot/jdk16
Tags: 7.1.1-jre16, 7.1.1-jre16-hotspot, 7.1-jre16, 7.1-jre16-hotspot, 7-jre16, 7-jre16-hotspot, jre16, jre16-hotspot
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
GitCommit: e1e5d8d814938022d495bf76d74ebc945412eb0a
Directory: hotspot/jre16
# OpenJ9
Tags: 7.1.1-jdk8-openj9, 7.1-jdk8-openj9, 7-jdk8-openj9, jdk8-openj9, 7.1.1-jdk-openj9, 7.1-jdk-openj9, 7-jdk-openj9, jdk-openj9, 7.1.1-openj9, 7.1-openj9, 7-openj9, openj9
Architectures: amd64, arm64v8, ppc64le, s390x
GitCommit: e1e5d8d814938022d495bf76d74ebc945412eb0a
Directory: openj9/jdk8
Tags: 7.1.1-jre8-openj9, 7.1-jre8-openj9, 7-jre8-openj9, jre8-openj9, 7.1.1-jre-openj9, 7.1-jre-openj9, 7-jre-openj9, jre-openj9
Architectures: amd64, arm64v8, ppc64le, s390x
GitCommit: e1e5d8d814938022d495bf76d74ebc945412eb0a
Directory: openj9/jre8
Tags: 7.1.1-jdk11-openj9, 7.1-jdk11-openj9, 7-jdk11-openj9, jdk11-openj9
Architectures: amd64, arm64v8, ppc64le, s390x
GitCommit: e1e5d8d814938022d495bf76d74ebc945412eb0a
Directory: openj9/jdk11
Tags: 7.1.1-jre11-openj9, 7.1-jre11-openj9, 7-jre11-openj9, jre11-openj9
Architectures: amd64, arm64v8, ppc64le, s390x
GitCommit: e1e5d8d814938022d495bf76d74ebc945412eb0a
Directory: openj9/jre11
Tags: 7.1.1-jdk16-openj9, 7.1-jdk16-openj9, 7-jdk16-openj9, jdk16-openj9
Architectures: amd64, arm64v8, ppc64le, s390x
GitCommit: e1e5d8d814938022d495bf76d74ebc945412eb0a
Directory: openj9/jdk16
Tags: 7.1.1-jre16-openj9, 7.1-jre16-openj9, 7-jre16-openj9, jre16-openj9
Architectures: amd64, arm64v8, ppc64le, s390x
GitCommit: e1e5d8d814938022d495bf76d74ebc945412eb0a
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
GitFetch: refs/heads/6
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
GitCommit: 337ce758ae6c3b0c6ebe2e00f5eef2743d34c165
Directory: hotspot/jdk8
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
GitFetch: refs/heads/6
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
GitCommit: 337ce758ae6c3b0c6ebe2e00f5eef2743d34c165
Directory: hotspot/jre8
Tags: 6.9.0-jdk11, 6.9.0-jdk11-hotspot, 6.9-jdk11, 6.9-jdk11-hotspot, 6-jdk11, 6-jdk11-hotspot
GitFetch: refs/heads/6
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
GitCommit: 337ce758ae6c3b0c6ebe2e00f5eef2743d34c165
Directory: hotspot/jdk11
Tags: 6.9.0-jre11, 6.9.0-jre11-hotspot, 6.9-jre11, 6.9-jre11-hotspot, 6-jre11, 6-jre11-hotspot
GitFetch: refs/heads/6
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
GitCommit: 337ce758ae6c3b0c6ebe2e00f5eef2743d34c165
Directory: hotspot/jre11
# 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
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

74
library/groovy Normal file
View File

@ -0,0 +1,74 @@
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
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
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
Directory: jdk11
Tags: 3.0.8-jre11, 3.0-jre11, jre11
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
GitCommit: fc758151cb38024e32f2bf1d05d672eb589d5872
Directory: jre11
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

75
library/haproxy Normal file
View File

@ -0,0 +1,75 @@
# this file is generated via https://github.com/docker-library/haproxy/blob/ae10fbf9bae067e11222c34344c9032060ffa997/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-dev1, 2.5-dev
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
GitCommit: d87e27dd90273fe213f7d468516ad192e959f086
Directory: 2.5-rc
Tags: 2.5-dev1-alpine, 2.5-dev-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: d87e27dd90273fe213f7d468516ad192e959f086
Directory: 2.5-rc/alpine
Tags: 2.4.2, 2.4, lts, latest
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
GitCommit: 973f43b2d1c5c0d57274002e216761c0baedf6c0
Directory: 2.4
Tags: 2.4.2-alpine, 2.4-alpine, lts-alpine, alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: 973f43b2d1c5c0d57274002e216761c0baedf6c0
Directory: 2.4/alpine
Tags: 2.3.12, 2.3
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
GitCommit: 2f36ad009f5811f3155d135a6deacc3b789a51cd
Directory: 2.3
Tags: 2.3.12-alpine, 2.3-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: 2f36ad009f5811f3155d135a6deacc3b789a51cd
Directory: 2.3/alpine
Tags: 2.2.15, 2.2
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
GitCommit: e6e8aa155660496478b3a348e009935581511c70
Directory: 2.2
Tags: 2.2.15-alpine, 2.2-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: e6e8aa155660496478b3a348e009935581511c70
Directory: 2.2/alpine
Tags: 2.0.23, 2.0
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
GitCommit: 7fa89477be71cefe9c7f38468d99f85982194c84
Directory: 2.0
Tags: 2.0.23-alpine, 2.0-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: 7fa89477be71cefe9c7f38468d99f85982194c84
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: 8f4332673f7c2b2b3b42a9760e8ba0936968b7c7
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

20
library/haskell Normal file
View File

@ -0,0 +1,20 @@
Maintainers: Peter Salvatore <peter@psftw.com> (@psftw),
Herbert Valerio Riedel <hvr@gnu.org> (@hvr),
Alistair Burrowes <afburrowes@gmail.com> (@AlistairB)
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
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

282
library/haxe Normal file
View File

@ -0,0 +1,282 @@
Maintainers: Andy Li <andy@onthewings.net> (@andyli)
GitRepo: https://github.com/HaxeFoundation/docker-library-haxe.git
Tags: 4.2.3-buster, 4.2-buster
SharedTags: 4.2.3, 4.2, latest
Architectures: amd64, arm32v7, arm64v8
GitCommit: 91376738199ea5595bdc8254b3b84fa16b731a02
Directory: 4.2/buster
Tags: 4.2.3-windowsservercore-1809, 4.2-windowsservercore-1809
SharedTags: 4.2.3-windowsservercore, 4.2-windowsservercore, 4.2.3, 4.2, latest
Architectures: windows-amd64
GitCommit: 91376738199ea5595bdc8254b3b84fa16b731a02
Directory: 4.2/windowsservercore-1809
Constraints: windowsservercore-1809
Tags: 4.2.3-windowsservercore-ltsc2016, 4.2-windowsservercore-ltsc2016
SharedTags: 4.2.3-windowsservercore, 4.2-windowsservercore, 4.2.3, 4.2, latest
Architectures: windows-amd64
GitCommit: 91376738199ea5595bdc8254b3b84fa16b731a02
Directory: 4.2/windowsservercore-ltsc2016
Constraints: windowsservercore-ltsc2016
Tags: 4.2.3-alpine3.14, 4.2-alpine3.14, 4.2.3-alpine, 4.2-alpine
Architectures: amd64, arm64v8
GitCommit: 91376738199ea5595bdc8254b3b84fa16b731a02
Directory: 4.2/alpine3.14
Tags: 4.2.3-alpine3.13, 4.2-alpine3.13
Architectures: amd64, arm64v8
GitCommit: 91376738199ea5595bdc8254b3b84fa16b731a02
Directory: 4.2/alpine3.13
Tags: 4.2.3-alpine3.12, 4.2-alpine3.12
Architectures: amd64, arm64v8
GitCommit: 91376738199ea5595bdc8254b3b84fa16b731a02
Directory: 4.2/alpine3.12
Tags: 4.2.3-alpine3.11, 4.2-alpine3.11
Architectures: amd64, arm64v8
GitCommit: 91376738199ea5595bdc8254b3b84fa16b731a02
Directory: 4.2/alpine3.11
Tags: 4.1.5-buster, 4.1-buster
SharedTags: 4.1.5, 4.1
Architectures: amd64, arm32v7, arm64v8
GitCommit: adf0e23e460a657c77c44f2502e5fa8cf820d020
Directory: 4.1/buster
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
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.14, 4.1-alpine3.14, 4.1.5-alpine, 4.1-alpine
Architectures: amd64, arm64v8
GitCommit: 71afcb74d885cfbcf9bff439d7aba47a79b541b1
Directory: 4.1/alpine3.14
Tags: 4.1.5-alpine3.13, 4.1-alpine3.13
Architectures: amd64, arm64v8
GitCommit: c195ebc0755b9debcfacbd6edc977a8ad1cd450e
Directory: 4.1/alpine3.13
Tags: 4.1.5-alpine3.12, 4.1-alpine3.12
Architectures: amd64, arm64v8
GitCommit: adf0e23e460a657c77c44f2502e5fa8cf820d020
Directory: 4.1/alpine3.12
Tags: 4.1.5-alpine3.11, 4.1-alpine3.11
Architectures: amd64, arm64v8
GitCommit: adf0e23e460a657c77c44f2502e5fa8cf820d020
Directory: 4.1/alpine3.11
Tags: 4.0.5-buster, 4.0-buster
SharedTags: 4.0.5, 4.0
Architectures: amd64, arm32v7, arm64v8
GitCommit: adf0e23e460a657c77c44f2502e5fa8cf820d020
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-1809, 4.0-windowsservercore-1809
SharedTags: 4.0.5-windowsservercore, 4.0-windowsservercore, 4.0.5, 4.0
Architectures: windows-amd64
GitCommit: 38b1ceb14a5692ae2c655c056baaff79d963da33
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.14, 4.0-alpine3.14, 4.0.5-alpine, 4.0-alpine
Architectures: amd64, arm64v8
GitCommit: 71afcb74d885cfbcf9bff439d7aba47a79b541b1
Directory: 4.0/alpine3.14
Tags: 4.0.5-alpine3.13, 4.0-alpine3.13
Architectures: amd64, arm64v8
GitCommit: c195ebc0755b9debcfacbd6edc977a8ad1cd450e
Directory: 4.0/alpine3.13
Tags: 4.0.5-alpine3.12, 4.0-alpine3.12
Architectures: amd64, arm64v8
GitCommit: adf0e23e460a657c77c44f2502e5fa8cf820d020
Directory: 4.0/alpine3.12
Tags: 4.0.5-alpine3.11, 4.0-alpine3.11
Architectures: amd64, arm64v8
GitCommit: adf0e23e460a657c77c44f2502e5fa8cf820d020
Directory: 4.0/alpine3.11
Tags: 3.4.7-buster, 3.4-buster
SharedTags: 3.4.7, 3.4
Architectures: amd64, arm32v7, arm64v8
GitCommit: 1f586bf85c12ce5c9300f24079912b94c73bc3f7
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-1809, 3.4-windowsservercore-1809
SharedTags: 3.4.7-windowsservercore, 3.4-windowsservercore, 3.4.7, 3.4
Architectures: windows-amd64
GitCommit: 7df74d220cce33998dde7623f8c9176d7fa938f7
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.14, 3.4-alpine3.14, 3.4.7-alpine, 3.4-alpine
Architectures: amd64, arm64v8
GitCommit: 71afcb74d885cfbcf9bff439d7aba47a79b541b1
Directory: 3.4/alpine3.14
Tags: 3.4.7-alpine3.13, 3.4-alpine3.13
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.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
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-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
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.14, 3.3.0-rc.1-alpine, 3.3.0-alpine3.14, 3.3-alpine3.14, 3.3.0-alpine, 3.3-alpine
Architectures: amd64, arm64v8
GitCommit: 71afcb74d885cfbcf9bff439d7aba47a79b541b1
Directory: 3.3/alpine3.14
Tags: 3.3.0-rc.1-alpine3.13, 3.3.0-alpine3.13, 3.3-alpine3.13
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.2.1-buster, 3.2-buster
SharedTags: 3.2.1, 3.2
Architectures: amd64, arm32v7, arm64v8
GitCommit: 1f586bf85c12ce5c9300f24079912b94c73bc3f7
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-1809, 3.2-windowsservercore-1809
SharedTags: 3.2.1-windowsservercore, 3.2-windowsservercore, 3.2.1, 3.2
Architectures: windows-amd64
GitCommit: 7df74d220cce33998dde7623f8c9176d7fa938f7
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
Architectures: windows-amd64
GitCommit: 7df74d220cce33998dde7623f8c9176d7fa938f7
Directory: 3.2/windowsservercore-ltsc2016
Constraints: windowsservercore-ltsc2016
Tags: 3.2.1-alpine3.14, 3.2-alpine3.14, 3.2.1-alpine, 3.2-alpine
Architectures: amd64, arm64v8
GitCommit: 71afcb74d885cfbcf9bff439d7aba47a79b541b1
Directory: 3.2/alpine3.14
Tags: 3.2.1-alpine3.13, 3.2-alpine3.13
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.1.3-stretch, 3.1-stretch
Architectures: amd64, arm32v7, arm64v8
GitCommit: e57329c158b19f881c57a0496afbaf4446895fca
Directory: 3.1/stretch
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
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

35
library/hello-world Normal file
View File

@ -0,0 +1,35 @@
# this file is generated via https://github.com/docker-library/hello-world/blob/837f63a4a9cc1e06320f47abb98965b6c5672b30/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
Tags: linux
SharedTags: latest
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, riscv64, s390x
amd64-GitCommit: 7ecae6978055d2fb6960e2a29d24a2af612e2716
amd64-Directory: amd64/hello-world
arm32v5-GitCommit: 7ecae6978055d2fb6960e2a29d24a2af612e2716
arm32v5-Directory: arm32v5/hello-world
arm32v7-GitCommit: 7ecae6978055d2fb6960e2a29d24a2af612e2716
arm32v7-Directory: arm32v7/hello-world
arm64v8-GitCommit: 7ecae6978055d2fb6960e2a29d24a2af612e2716
arm64v8-Directory: arm64v8/hello-world
i386-GitCommit: 7ecae6978055d2fb6960e2a29d24a2af612e2716
i386-Directory: i386/hello-world
mips64le-GitCommit: 1b6581761dbcc3925f73a87214ec2c8cba06aec6
mips64le-Directory: mips64le/hello-world
ppc64le-GitCommit: 7ecae6978055d2fb6960e2a29d24a2af612e2716
ppc64le-Directory: ppc64le/hello-world
riscv64-GitCommit: 06d4f12fae7ec1adcfddec64fbadfcd1a1e90e65
riscv64-Directory: riscv64/hello-world
s390x-GitCommit: 7ecae6978055d2fb6960e2a29d24a2af612e2716
s390x-Directory: s390x/hello-world
Tags: nanoserver-1809
SharedTags: nanoserver, latest
Architectures: windows-amd64
windows-amd64-GitCommit: a6fdcbffb08c09e63c48cda1878e15fefcb6460a
windows-amd64-Directory: amd64/hello-world/nanoserver-1809
Constraints: nanoserver-1809

8
library/hitch Normal file
View File

@ -0,0 +1,8 @@
# this file was generated using https://github.com/varnish/docker-hitch/blob/d2feb9f1a1a3426da633383c2bac4a31559248bd/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

21
library/httpd Normal file
View File

@ -0,0 +1,21 @@
# this file is generated via https://github.com/docker-library/httpd/blob/38a58221d725d54686d6113f12efbd3fa97ef3e6/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, 2.4.48-buster, 2.4-buster, 2-buster, buster
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
GitCommit: 6d68525ac47c0474d3d74269b2669104c1d867dd
Directory: 2.4
Tags: 2.4.48-alpine, 2.4-alpine, 2-alpine, alpine, 2.4.48-alpine3.14, 2.4-alpine3.14, 2-alpine3.14, alpine3.14
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: 6d68525ac47c0474d3d74269b2669104c1d867dd
Directory: 2.4/alpine
# temporary one-time backfill of "alpine3.13" aliases
Tags: 2.4.48-alpine3.13, 2.4-alpine3.13, 2-alpine3.13, alpine3.13
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: 8835b23f748f80bcec510c14b68c84bc37767cdb
Directory: 2.4/alpine

100
library/hylang Normal file
View File

@ -0,0 +1,100 @@
Maintainers: Paul Tagliamonte <paultag@hylang.org> (@paultag), Hy Docker Team (@hylang/docker)
GitRepo: https://github.com/hylang/docker-hylang.git
GitCommit: 33554798b9d7ff02d20202c6a193be82b6941953
Directory: dockerfiles-generated
Tags: 1.0a3-python3.9-buster, python3.9-buster, 1.0a3-buster, buster
SharedTags: 1.0a3-python3.9, python3.9, 1.0a3, latest
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
File: Dockerfile.python3.9-buster
Tags: 1.0a3-python3.9-alpine3.14, python3.9-alpine3.14, 1.0a3-alpine3.14, alpine3.14, 1.0a3-python3.9-alpine, python3.9-alpine, 1.0a3-alpine, alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
File: Dockerfile.python3.9-alpine3.14
Tags: 1.0a3-python3.9-alpine3.13, python3.9-alpine3.13, 1.0a3-alpine3.13, alpine3.13
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
File: Dockerfile.python3.9-alpine3.13
Tags: 1.0a3-python3.9-windowsservercore-1809, python3.9-windowsservercore-1809, 1.0a3-windowsservercore-1809, windowsservercore-1809
SharedTags: 1.0a3-python3.9, python3.9, 1.0a3, latest
Architectures: windows-amd64
Constraints: windowsservercore-1809
File: Dockerfile.python3.9-windowsservercore-1809
Tags: 1.0a3-python3.9-windowsservercore-ltsc2016, python3.9-windowsservercore-ltsc2016, 1.0a3-windowsservercore-ltsc2016, windowsservercore-ltsc2016
SharedTags: 1.0a3-python3.9, python3.9, 1.0a3, latest
Architectures: windows-amd64
Constraints: windowsservercore-ltsc2016
File: Dockerfile.python3.9-windowsservercore-ltsc2016
Tags: 1.0a3-python3.8-buster, python3.8-buster
SharedTags: 1.0a3-python3.8, python3.8
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
File: Dockerfile.python3.8-buster
Tags: 1.0a3-python3.8-alpine3.14, python3.8-alpine3.14, 1.0a3-python3.8-alpine, python3.8-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
File: Dockerfile.python3.8-alpine3.14
Tags: 1.0a3-python3.8-alpine3.13, python3.8-alpine3.13
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
File: Dockerfile.python3.8-alpine3.13
Tags: 1.0a3-python3.7-buster, python3.7-buster
SharedTags: 1.0a3-python3.7, python3.7
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
File: Dockerfile.python3.7-buster
Tags: 1.0a3-python3.7-stretch, python3.7-stretch
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386
File: Dockerfile.python3.7-stretch
Tags: 1.0a3-python3.7-alpine3.14, python3.7-alpine3.14, 1.0a3-python3.7-alpine, python3.7-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
File: Dockerfile.python3.7-alpine3.14
Tags: 1.0a3-python3.7-alpine3.13, python3.7-alpine3.13
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
File: Dockerfile.python3.7-alpine3.13
Tags: 1.0a3-python3.6-buster, python3.6-buster
SharedTags: 1.0a3-python3.6, python3.6
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
File: Dockerfile.python3.6-buster
Tags: 1.0a3-python3.6-stretch, python3.6-stretch
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386
File: Dockerfile.python3.6-stretch
Tags: 1.0a3-python3.6-alpine3.14, python3.6-alpine3.14, 1.0a3-python3.6-alpine, python3.6-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
File: Dockerfile.python3.6-alpine3.14
Tags: 1.0a3-python3.6-alpine3.13, python3.6-alpine3.13
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
File: Dockerfile.python3.6-alpine3.13
Tags: 1.0a3-python3.10-rc-buster, python3.10-rc-buster
SharedTags: 1.0a3-python3.10-rc, python3.10-rc
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
File: Dockerfile.python3.10-rc-buster
Tags: 1.0a3-python3.10-rc-alpine3.14, python3.10-rc-alpine3.14, 1.0a3-python3.10-rc-alpine, python3.10-rc-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
File: Dockerfile.python3.10-rc-alpine3.14
Tags: 1.0a3-python3.10-rc-alpine3.13, python3.10-rc-alpine3.13
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
File: Dockerfile.python3.10-rc-alpine3.13
Tags: 1.0a3-pypy3.7-buster, pypy3.7-buster, 1.0a3-pypy-buster, pypy-buster
SharedTags: 1.0a3-pypy3.7, pypy3.7, 1.0a3-pypy, pypy
Architectures: amd64, arm64v8, i386, s390x
File: Dockerfile.pypy3.7-buster
Tags: 1.0a3-pypy3.7-windowsservercore-1809, pypy3.7-windowsservercore-1809, 1.0a3-pypy-windowsservercore-1809, pypy-windowsservercore-1809
SharedTags: 1.0a3-pypy3.7, pypy3.7, 1.0a3-pypy, pypy
Architectures: windows-amd64
Constraints: windowsservercore-1809
File: Dockerfile.pypy3.7-windowsservercore-1809

39
library/ibmjava Normal file
View File

@ -0,0 +1,39 @@
# ibmjava official images
Maintainers: Jayashree Gopi <jayasg12@in.ibm.com> (@jayasg12)
GitRepo: https://github.com/ibmruntimes/ci.docker.git
Tags: 8-jre, jre, 8, latest
Architectures: amd64, i386, ppc64le, s390x
GitCommit: 7c222762aa948da43e76790a6996ff08ea12fcbf
Directory: ibmjava/8/jre/ubuntu
Tags: 8-jre-alpine, jre-alpine
Architectures: amd64
GitCommit: 7c222762aa948da43e76790a6996ff08ea12fcbf
Directory: ibmjava/8/jre/alpine
Tags: 8-sfj, sfj
Architectures: amd64, i386, ppc64le, s390x
GitCommit: 7c222762aa948da43e76790a6996ff08ea12fcbf
Directory: ibmjava/8/sfj/ubuntu
Tags: 8-sfj-alpine, sfj-alpine
Architectures: amd64
GitCommit: 7c222762aa948da43e76790a6996ff08ea12fcbf
Directory: ibmjava/8/sfj/alpine
Tags: 8-sdk, sdk
Architectures: amd64, i386, ppc64le, s390x
GitCommit: 7c222762aa948da43e76790a6996ff08ea12fcbf
Directory: ibmjava/8/sdk/ubuntu
Tags: 8-sdk-alpine, sdk-alpine
Architectures: amd64
GitCommit: 7c222762aa948da43e76790a6996ff08ea12fcbf
Directory: ibmjava/8/sdk/alpine
Tags: 11-jdk, 11
Architectures: amd64, ppc64le, s390x
GitCommit: 7c222762aa948da43e76790a6996ff08ea12fcbf
Directory: ibmjava/11/jdk/ubuntu

61
library/influxdb Normal file
View File

@ -0,0 +1,61 @@
Maintainers: Cody Shepherd (@codyshepherd), Daniel Moran <dmoran@influxdata.com> (@danxmoran)
GitRepo: git://github.com/influxdata/influxdata-docker
GitCommit: 952c4a9c85fe9ccfe954222e8aa8eb268d785bce
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
Architectures: amd64, arm32v7, arm64v8
Directory: influxdb/1.8
Tags: 1.8-alpine, 1.8.6-alpine
Directory: influxdb/1.8/alpine
Tags: 1.8-data, 1.8.6-data, data
Directory: influxdb/1.8/data
Tags: 1.8-data-alpine, 1.8.6-data-alpine, data-alpine
Directory: influxdb/1.8/data/alpine
Tags: 1.8-meta, 1.8.6-meta, meta
Directory: influxdb/1.8/meta
Tags: 1.8-meta-alpine, 1.8.6-meta-alpine, meta-alpine
Directory: influxdb/1.8/meta/alpine
Tags: 1.9-data, 1.9.2-data
Directory: influxdb/1.9/data
Tags: 1.9-data-alpine, 1.9.2-data-alpine
Directory: influxdb/1.9/data/alpine
Tags: 1.9-meta, 1.9.2-meta
Directory: influxdb/1.9/meta
Tags: 1.9-meta-alpine, 1.9.2-meta-alpine
Directory: influxdb/1.9/meta/alpine
Tags: 2.0, 2.0.7, latest
Architectures: amd64, arm64v8
Directory: influxdb/2.0
Tags: 2.0-alpine, 2.0.7-alpine, alpine
Architectures: amd64, arm64v8
Directory: influxdb/2.0/alpine

15
library/irssi Normal file
View File

@ -0,0 +1,15 @@
# this file is generated via https://github.com/jessfraz/irssi/blob/2bdee8662a663da5d53553023df12e2b43d74fc2/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
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
GitCommit: 1828e23a4b14600e1194c911bbdab6e927748351
Directory: debian
Tags: 1.2.3-alpine, 1.2-alpine, 1-alpine, alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: 1828e23a4b14600e1194c911bbdab6e927748351
Directory: alpine

125
library/jetty Normal file
View File

@ -0,0 +1,125 @@
Maintainers: Greg Wilkins <gregw@webtide.com> (@gregw),
Lachlan Roberts <lachlan@webtide.com> (@lachlan-roberts),
Olivier Lamy <olamy@webtide.com> (@olamy),
Joakim Erdfelt <joakim@webtide.com> (@joakime)
GitRepo: https://github.com/eclipse/jetty.docker.git
Tags: 11.0.6-jre11-slim
Architectures: amd64
Directory: 11.0-jre11-slim
GitCommit: 734954b4f7602caa4f87a06837620b7f5225d583
Tags: 11.0.6-jre11
Architectures: amd64
Directory: 11.0-jre11
GitCommit: 734954b4f7602caa4f87a06837620b7f5225d583
Tags: 11.0.6-jdk16-slim
Architectures: amd64
Directory: 11.0-jdk16-slim
GitCommit: 734954b4f7602caa4f87a06837620b7f5225d583
Tags: 11.0.6, 11.0.6-jdk16
Architectures: amd64
Directory: 11.0-jdk16
GitCommit: 734954b4f7602caa4f87a06837620b7f5225d583
Tags: 11.0.6-jdk11-slim
Architectures: amd64
Directory: 11.0-jdk11-slim
GitCommit: 734954b4f7602caa4f87a06837620b7f5225d583
Tags: 11.0.6-jdk11
Architectures: amd64
Directory: 11.0-jdk11
GitCommit: 734954b4f7602caa4f87a06837620b7f5225d583
Tags: 10.0.6-jre11-slim
Architectures: amd64
Directory: 10.0-jre11-slim
GitCommit: 734954b4f7602caa4f87a06837620b7f5225d583
Tags: 10.0.6-jre11
Architectures: amd64
Directory: 10.0-jre11
GitCommit: 734954b4f7602caa4f87a06837620b7f5225d583
Tags: 10.0.6-jdk16-slim
Architectures: amd64
Directory: 10.0-jdk16-slim
GitCommit: 734954b4f7602caa4f87a06837620b7f5225d583
Tags: 10.0.6, 10.0.6-jdk16
Architectures: amd64
Directory: 10.0-jdk16
GitCommit: 734954b4f7602caa4f87a06837620b7f5225d583
Tags: 10.0.6-jdk11-slim
Architectures: amd64
Directory: 10.0-jdk11-slim
GitCommit: 734954b4f7602caa4f87a06837620b7f5225d583
Tags: 10.0.6-jdk11
Architectures: amd64
Directory: 10.0-jdk11
GitCommit: 734954b4f7602caa4f87a06837620b7f5225d583
Tags: 9.4.43-jre11-slim, 9.4-jre11-slim, 9-jre11-slim
Architectures: amd64, arm64v8
Directory: 9.4-jre11-slim
GitCommit: 734954b4f7602caa4f87a06837620b7f5225d583
Tags: 9.4.43-jre11, 9.4-jre11, 9-jre11
Architectures: amd64, arm64v8
Directory: 9.4-jre11
GitCommit: 734954b4f7602caa4f87a06837620b7f5225d583
Tags: 9.4.43-jre8-slim, 9.4-jre8-slim, 9-jre8-slim
Architectures: amd64
Directory: 9.4-jre8-slim
GitCommit: 734954b4f7602caa4f87a06837620b7f5225d583
Tags: 9.4.43-jre8, 9.4-jre8, 9-jre8
Architectures: amd64
Directory: 9.4-jre8
GitCommit: 734954b4f7602caa4f87a06837620b7f5225d583
Tags: 9.4.43-jdk16-slim, 9.4-jdk16-slim, 9-jdk16-slim
Architectures: amd64
Directory: 9.4-jdk16-slim
GitCommit: 734954b4f7602caa4f87a06837620b7f5225d583
Tags: 9.4.43, 9.4, 9, 9.4.43-jdk16, 9.4-jdk16, 9-jdk16, latest, jdk16
Architectures: amd64
Directory: 9.4-jdk16
GitCommit: 734954b4f7602caa4f87a06837620b7f5225d583
Tags: 9.4.43-jdk11-slim, 9.4-jdk11-slim, 9-jdk11-slim
Architectures: amd64
Directory: 9.4-jdk11-slim
GitCommit: 734954b4f7602caa4f87a06837620b7f5225d583
Tags: 9.4.43-jdk11, 9.4-jdk11, 9-jdk11
Architectures: amd64
Directory: 9.4-jdk11
GitCommit: 734954b4f7602caa4f87a06837620b7f5225d583
Tags: 9.4.43-jdk8-slim, 9.4-jdk8-slim, 9-jdk8-slim
Architectures: amd64
Directory: 9.4-jdk8-slim
GitCommit: 734954b4f7602caa4f87a06837620b7f5225d583
Tags: 9.4.43-jdk8, 9.4-jdk8, 9-jdk8
Architectures: amd64
Directory: 9.4-jdk8
GitCommit: 734954b4f7602caa4f87a06837620b7f5225d583
Tags: 9.3.29-jre8, 9.3-jre8
Architectures: amd64
Directory: 9.3-jre8
GitCommit: c47212fa6db5547a5090fa409c4ee3913bcc18ce
Tags: 9.2.30-jre8, 9.2-jre8
Architectures: amd64
Directory: 9.2-jre8
GitCommit: 481a3bcb16a8bf0ee11a4b67a4710050e5403064

8
library/jobber Normal file
View File

@ -0,0 +1,8 @@
Maintainers: C. Dylan Shearer <dylan@nekonya.info> (@dshearer)
GitRepo: https://github.com/dshearer/jobber-docker.git
Tags: 1.4.4-alpine3.11, 1.4-alpine3.11, 1-alpine3.11, latest
GitCommit: cd07d76987097b5389aa9be5f48df041aa74d699
GitFetch: refs/heads/maint-1.4
Directory: alpine3.11

34
library/joomla Normal file
View File

@ -0,0 +1,34 @@
# this file is generated via https://github.com/joomla-docker/docker-joomla/blob/6874f569cbc6202f3fe84ed067305c803a6e1ab7/generate-stackbrew-library.sh
Maintainers: 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
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
GitCommit: ab7721ac727e7084888ef9e9251e74e241bd68fc
Directory: php7.3/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
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: ab7721ac727e7084888ef9e9251e74e241bd68fc
Directory: php7.3/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
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
GitCommit: ab7721ac727e7084888ef9e9251e74e241bd68fc
Directory: php7.4/apache
Tags: 3.9.27-php7.4-fpm, 3.9-php7.4-fpm, 3-php7.4-fpm, php7.4-fpm
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
GitCommit: ab7721ac727e7084888ef9e9251e74e241bd68fc
Directory: php7.4/fpm
Tags: 3.9.27-php7.4-fpm-alpine, 3.9-php7.4-fpm-alpine, 3-php7.4-fpm-alpine, php7.4-fpm-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: f24020390a2a5ccfdddc9a69d4be77dfa8894b11
Directory: php7.4/fpm-alpine

42
library/jruby Normal file
View File

@ -0,0 +1,42 @@
Maintainers: JRuby Admin <admin@jruby.org> (@jruby),
Charles Oliver Nutter <headius@headius.com> (@headius),
Thomas E Enebo <tom.enebo@gmail.com> (@enebo)
GitRepo: https://github.com/jruby/docker-jruby.git
GitFetch: refs/heads/master
GitCommit: c77be8629e90e0782a41c0ffeb810f02fbf0afc4
Tags: latest, 9, 9.2, 9.2.19, 9.2-jre, 9.2-jre8, 9.2.19-jre, 9.2.19-jre8, 9.2.19.0, 9.2.19.0-jre, 9.2.19.0-jre8
Architectures: amd64
Directory: 9000/jre8
Tags: 9-jdk, 9-jdk8, 9.2-jdk, 9.2-jdk8, 9.2.19-jdk, 9.2.19-jdk8, 9.2.19.0-jdk, 9.2.19.0-jdk8
Architectures: amd64
Directory: 9000/jdk8
Tags: 9.2-jre11, 9.2.19-jre11, 9.2.19.0-jre11
Architectures: amd64
Directory: 9000/jre11
Tags: 9.2-jdk11, 9.2.19-jdk11, 9.2.19.0-jdk11
Architectures: amd64
Directory: 9000/jdk11
Tags: 9.2-jdk16, 9.2.19-jdk16, 9.2.19.0-jdk16
Architectures: amd64
Directory: 9000/jdk16
Tags: 9-onbuild, 9.2-onbuild, 9.2.19-onbuild, 9.2.19.0-onbuild
Architectures: amd64
Directory: 9000/onbuild-jdk8
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.1-jdk, 9.1.17-jdk, 9.1.17.0-jdk
Architectures: amd64
Directory: 9000/jdk
GitCommit: 8bc3fe27670a851953345182fe12f14f5e708383
GitFetch: refs/heads/9.1

60
library/julia Normal file
View File

@ -0,0 +1,60 @@
# this file is generated via https://github.com/docker-library/julia/blob/3aca6cfd86f62b86a323f3d95e2042a613709cac/generate-stackbrew-library.sh
Maintainers: Tianon Gravi <admwiggin@gmail.com> (@tianon),
Joseph Ferguson <yosifkit@gmail.com> (@yosifkit)
GitRepo: https://github.com/docker-library/julia.git
Tags: 1.6.2-buster, 1.6-buster, 1-buster, buster
SharedTags: 1.6.2, 1.6, 1, latest
Architectures: amd64, arm32v7, arm64v8, i386, ppc64le
GitCommit: 16b07a748f97fe67442d7731c6d7714dc8c252cc
Directory: 1.6/buster
Tags: 1.6.2-alpine3.14, 1.6-alpine3.14, 1-alpine3.14, alpine3.14, 1.6.2-alpine, 1.6-alpine, 1-alpine, alpine
Architectures: amd64
GitCommit: 16b07a748f97fe67442d7731c6d7714dc8c252cc
Directory: 1.6/alpine3.14
Tags: 1.6.2-alpine3.13, 1.6-alpine3.13, 1-alpine3.13, alpine3.13
Architectures: amd64
GitCommit: 16b07a748f97fe67442d7731c6d7714dc8c252cc
Directory: 1.6/alpine3.13
Tags: 1.6.2-windowsservercore-1809, 1.6-windowsservercore-1809, 1-windowsservercore-1809, windowsservercore-1809
SharedTags: 1.6.2, 1.6, 1, latest
Architectures: windows-amd64
GitCommit: 16b07a748f97fe67442d7731c6d7714dc8c252cc
Directory: 1.6/windows/windowsservercore-1809
Constraints: windowsservercore-1809
Tags: 1.6.2-windowsservercore-ltsc2016, 1.6-windowsservercore-ltsc2016, 1-windowsservercore-ltsc2016, windowsservercore-ltsc2016
SharedTags: 1.6.2, 1.6, 1, latest
Architectures: windows-amd64
GitCommit: 16b07a748f97fe67442d7731c6d7714dc8c252cc
Directory: 1.6/windows/windowsservercore-ltsc2016
Constraints: windowsservercore-ltsc2016
Tags: 1.0.5-buster, 1.0-buster
SharedTags: 1.0.5, 1.0
Architectures: amd64, arm32v7, arm64v8, i386
GitCommit: 2df03ddf2e51147c7973d4e9fa0bb15602930974
Directory: 1.0/buster
Tags: 1.0.5-stretch, 1.0-stretch
Architectures: amd64, arm32v7, arm64v8, i386
GitCommit: 2df03ddf2e51147c7973d4e9fa0bb15602930974
Directory: 1.0/stretch
Tags: 1.0.5-windowsservercore-1809, 1.0-windowsservercore-1809
SharedTags: 1.0.5, 1.0
Architectures: windows-amd64
GitCommit: fc3c116c6fe19f870091df6843ed63a37f6c291b
Directory: 1.0/windows/windowsservercore-1809
Constraints: windowsservercore-1809
Tags: 1.0.5-windowsservercore-ltsc2016, 1.0-windowsservercore-ltsc2016
SharedTags: 1.0.5, 1.0
Architectures: windows-amd64
GitCommit: fc3c116c6fe19f870091df6843ed63a37f6c291b
Directory: 1.0/windows/windowsservercore-ltsc2016
Constraints: windowsservercore-ltsc2016

6
library/kaazing-gateway Normal file
View File

@ -0,0 +1,6 @@
Maintainers: Kaazing Docker Maintainers <https://github.com/kaazing/gateway.docker/issues> (@kaazing)
Tags: 5.6.0, 5.6, 5, latest
Architectures: amd64, arm64v8
GitRepo: https://github.com/kaazing/gateway.docker.git
GitCommit: a40c8da9d2c2925bdd78b9a6d1b6da3fe89322d1

18
library/kapacitor Normal file
View File

@ -0,0 +1,18 @@
Maintainers: Jonathan A. Sternberg <jonathan@influxdata.com> (@jsternberg),
j. Emrys Landivar <landivar@gmail.com> (@docmerlin)
GitRepo: git://github.com/influxdata/influxdata-docker
GitCommit: 63fe0684150d96916514a84cf5978c3512dc15fa
Tags: 1.4, 1.4.1
Architectures: amd64, arm32v7, arm64v8
Directory: kapacitor/1.4
Tags: 1.4-alpine, 1.4.1-alpine
Directory: kapacitor/1.4/alpine
Tags: 1.5, 1.5.9, latest
Architectures: amd64, arm32v7, arm64v8
Directory: kapacitor/1.5
Tags: 1.5-alpine, 1.5.9-alpine, alpine
Directory: kapacitor/1.5/alpine

15
library/kibana Normal file
View File

@ -0,0 +1,15 @@
# this file is generated via https://github.com/docker-library/kibana/blob/094d900939e2a66300d48cbf2f3a8e0fc1d51abc/generate-stackbrew-library.sh
Maintainers: Tianon Gravi <admwiggin@gmail.com> (@tianon),
Joseph Ferguson <yosifkit@gmail.com> (@yosifkit)
GitRepo: https://github.com/docker-library/kibana.git
Tags: 7.13.3
Architectures: amd64, arm64v8
GitCommit: aa73b8c8d06c29d858f8e77fe4a8a667fa2b9d99
Directory: 7
Tags: 6.8.17
Architectures: amd64
GitCommit: e4ae56677ce14520cbfd443b9b0ae567ef4e1376
Directory: 6

6
library/known Normal file
View File

@ -0,0 +1,6 @@
Maintainers: Known <hello@withknown.com> (@idno)
GitRepo: https://github.com/idno/Known-Docker.git
Tags: 0.9.9, 0.9, 0, latest
Architectures: amd64, arm64v8
GitCommit: 3454a52b4ad48e22b95e706dba9ff953cf84c2b1

39
library/kong Normal file
View File

@ -0,0 +1,39 @@
Maintainers: Kong Docker Maintainers <support@konghq.com> (@thekonginc)
GitRepo: https://github.com/Kong/docker-kong.git
# needs "Constraints" to match "centos" (which this image is "FROM")
Tags: 2.5.0-alpine, 2.5.0, 2.5, alpine, latest
GitCommit: ff3efa2c53e785e655a9c7de24c8111a373900cb
GitFetch: refs/tags/2.5.0
Directory: alpine
Architectures: amd64
Tags: 2.5.0-ubuntu, 2.5-ubuntu, ubuntu
GitCommit: ff3efa2c53e785e655a9c7de24c8111a373900cb
GitFetch: refs/tags/2.5.0
Directory: ubuntu
Architectures: amd64, arm64v8
Tags: 2.5.0-centos, 2.5-centos, centos
GitCommit: ff3efa2c53e785e655a9c7de24c8111a373900cb
GitFetch: refs/tags/2.5.0
Directory: centos
Architectures: amd64
Tags: 2.4.1-alpine, 2.4-alpine, 2.4.1, 2.4
GitCommit: e1b0a6c7eddd327926027692863a9900fd856977
GitFetch: refs/tags/2.4.1
Directory: alpine
Architectures: amd64, arm64v8
Tags: 2.4.1-ubuntu, 2.4-ubuntu
GitCommit: e1b0a6c7eddd327926027692863a9900fd856977
GitFetch: refs/tags/2.4.1
Directory: ubuntu
Architectures: amd64, arm64v8
Tags: 2.4.1-centos, 2.4-centos
GitCommit: e1b0a6c7eddd327926027692863a9900fd856977
GitFetch: refs/tags/2.4.1
Directory: centos
Architectures: amd64

43
library/lightstreamer Normal file
View File

@ -0,0 +1,43 @@
Maintainers: Lightstreamer Server Development Team <support@lightreamer.com> (@lightstreamer)
GitRepo: https://github.com/Lightstreamer/Docker.git
Tags: 6.0.3, 6.0
Architectures: amd64
GitCommit: eeab1ae534273b1b05c973e577a1f3eec8d58427
Directory: 6.0
Tags: 6.1.0, 6.1, 6
Architectures: amd64
GitCommit: eeab1ae534273b1b05c973e577a1f3eec8d58427
Directory: 6.1
Tags: 7.0.3-jdk8-openjdk, 7.0-jdk8-openjdk, 7.0.3-jdk8, 7.0-jdk8
Architectures: amd64
GitCommit: f3aaece15133b9405aef20c5d378c5a83aba7585
Directory: 7.0/jdk8
Tags: 7.0.3-jdk11-openjdk, 7.0-jdk11-openjdk, 7.0.3-jdk11, 7.0-jdk11, 7.0.3, 7.0
Architectures: amd64, arm64v8
GitCommit: f3aaece15133b9405aef20c5d378c5a83aba7585
Directory: 7.0/jdk11
Tags: 7.1.2-jdk8-openjdk, 7.1-jdk8-openjdk, 7.1.2-jdk8, 7.1-jdk8
Architectures: amd64
GitCommit: 7bdd2632e1cae0bf838899d591aadb2dd128c41a
Directory: 7.1/jdk8
Tags: 7.1.2-jdk11-openjdk, 7.1-jdk11-openjdk, 7.1.2-jdk11, 7.1-jdk11, 7.1.2, 7.1
Architectures: amd64, arm64v8
GitCommit: 7bdd2632e1cae0bf838899d591aadb2dd128c41a
Directory: 7.1/jdk11
Tags: 7.2.0-jdk11-openjdk, 7.2-jdk11-openjdk, 7-jdk11-openjdk, 7.2.0-jdk11, 7.2-jdk11, 7-jdk11, 7.2.0, 7.2, latest
Architectures: amd64, arm64v8
GitCommit: 9b286d6ad71126b2848b76a56d75f1e7cfb8d4ab
Directory: 7.2/jdk11
Tags: 7.2.0-jdk8-openjdk, 7.2-jd8-openjdk, 7-jdk8-openjdk, 7.2.0-jdk9, 7.2-jdk8, 7-jdk8
Architectures: amd64, arm64v8
GitCommit: 9b286d6ad71126b2848b76a56d75f1e7cfb8d4ab
Directory: 7.2/jdk8

15
library/logstash Normal file
View File

@ -0,0 +1,15 @@
# this file is generated via https://github.com/docker-library/logstash/blob/f7d134ebe96d21adc7ff6f0bdc46e06db1a642e7/generate-stackbrew-library.sh
Maintainers: Tianon Gravi <admwiggin@gmail.com> (@tianon),
Joseph Ferguson <yosifkit@gmail.com> (@yosifkit)
GitRepo: https://github.com/docker-library/logstash.git
Tags: 7.13.3
Architectures: amd64, arm64v8
GitCommit: ff7faa0a8dcec4c86c3a257e26622763ea2fde6d
Directory: 7
Tags: 6.8.17
Architectures: amd64
GitCommit: 75364496903069961088ee6f84f0e32481340524
Directory: 6

26
library/mageia Normal file
View File

@ -0,0 +1,26 @@
Maintainers: Juan Luis Baptiste <juancho@mageia.org> (@juanluisbaptiste)
GitRepo: https://github.com/juanluisbaptiste/docker-brew-mageia.git
Tags: 8,latest
GitCommit: 067e6df19c568e101a42dc71b77f6a2de5992c70
GitFetch: refs/heads/dist
Architectures: amd64, arm32v7, arm64v8
amd64-Directory: dist/8/x86_64
arm32v7-Directory: dist/8/armv7hl
arm64v8-Directory: dist/8/aarch64
Tags: 7
GitCommit: 067e6df19c568e101a42dc71b77f6a2de5992c70
GitFetch: refs/heads/dist
Architectures: amd64, arm32v7, arm64v8
amd64-Directory: dist/7/x86_64
arm32v7-Directory: dist/7/armv7hl
arm64v8-Directory: dist/7/aarch64
Tags: cauldron
GitCommit: 067e6df19c568e101a42dc71b77f6a2de5992c70
GitFetch: refs/heads/dist
Architectures: amd64, arm32v7, arm64v8
amd64-Directory: dist/cauldron/x86_64
arm32v7-Directory: dist/cauldron/armv7hl
arm64v8-Directory: dist/cauldron/aarch64

30
library/mariadb Normal file
View File

@ -0,0 +1,30 @@
# this file is generated via https://github.com/MariaDB/mariadb-docker/blob/098e791b826e6f64f0299560d32f5f102de39938/generate-stackbrew-library.sh
Maintainers: Daniel Black <daniel@mariadb.org> (@grooverdan),
Daniel Bartholomew <dbart@mariadb.com> (@dbart)
GitRepo: https://github.com/MariaDB/mariadb-docker.git
Tags: 10.6.3-focal, 10.6-focal, 10-focal, focal, 10.6.3, 10.6, 10, latest
Architectures: amd64, arm64v8, ppc64le
GitCommit: 3afe9953898422c1ca6b3986dd6fa255ad10eb70
Directory: 10.6
Tags: 10.5.11-focal, 10.5-focal, 10.5.11, 10.5
Architectures: amd64, arm64v8, ppc64le
GitCommit: 3afe9953898422c1ca6b3986dd6fa255ad10eb70
Directory: 10.5
Tags: 10.4.20-focal, 10.4-focal, 10.4.20, 10.4
Architectures: amd64, arm64v8, ppc64le
GitCommit: 3afe9953898422c1ca6b3986dd6fa255ad10eb70
Directory: 10.4
Tags: 10.3.30-focal, 10.3-focal, 10.3.30, 10.3
Architectures: amd64, arm64v8, ppc64le
GitCommit: 3afe9953898422c1ca6b3986dd6fa255ad10eb70
Directory: 10.3
Tags: 10.2.39-bionic, 10.2-bionic, 10.2.39, 10.2
Architectures: amd64, arm64v8, ppc64le
GitCommit: 3afe9953898422c1ca6b3986dd6fa255ad10eb70
Directory: 10.2

18
library/matomo Normal file
View File

@ -0,0 +1,18 @@
# This file is generated via https://github.com/matomo-org/docker/blob/2252146c6a2edbaf5028ed148e57e073d722afb4/generate-stackbrew-library.sh
Maintainers: Pierre Ozoux <pierre@piwik.org> (@pierreozoux)
GitRepo: https://github.com/matomo-org/docker.git
Tags: 4.3.1-apache, 4.3-apache, 4-apache, apache, 4.3.1, 4.3, 4, latest
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
GitCommit: e0a275a2ec2fa68e1038b84b84734e5fe31cb336
Directory: apache
Tags: 4.3.1-fpm, 4.3-fpm, 4-fpm, fpm
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
GitCommit: e0a275a2ec2fa68e1038b84b84734e5fe31cb336
Directory: fpm
Tags: 4.3.1-fpm-alpine, 4.3-fpm-alpine, 4-fpm-alpine, fpm-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: e0a275a2ec2fa68e1038b84b84734e5fe31cb336
Directory: fpm-alpine

152
library/maven Normal file
View File

@ -0,0 +1,152 @@
Maintainers: Carlos Sanchez <carlos@apache.org> (@carlossg)
GitRepo: https://github.com/carlossg/docker-maven.git
Tags: 3.8.1-jdk-11, 3.8-jdk-11, 3-jdk-11
Architectures: amd64, arm64v8
GitCommit: bdffb5117c33476d554325d8efe5866306004b99
Directory: openjdk-11
Tags: 3.8.1-jdk-11-openj9, 3.8-jdk-11-openj9, 3-jdk-11-openj9
Architectures: amd64, arm64v8, ppc64le, s390x
GitCommit: bdffb5117c33476d554325d8efe5866306004b99
Directory: adoptopenjdk-11-openj9
Tags: 3.8.1-jdk-11-slim, 3.8-jdk-11-slim, 3-jdk-11-slim
Architectures: amd64, arm64v8
GitCommit: bdffb5117c33476d554325d8efe5866306004b99
Directory: openjdk-11-slim
Tags: 3.8.1-jdk-8, 3.8-jdk-8, 3-jdk-8
Architectures: amd64
GitCommit: bdffb5117c33476d554325d8efe5866306004b99
Directory: openjdk-8
Tags: 3.8.1-jdk-8-openj9, 3.8-jdk-8-openj9, 3-jdk-8-openj9
Architectures: amd64, arm64v8, ppc64le, s390x
GitCommit: bdffb5117c33476d554325d8efe5866306004b99
Directory: adoptopenjdk-8-openj9
Tags: 3.8.1-jdk-8-slim, 3.8-jdk-8-slim, 3-jdk-8-slim
Architectures: amd64
GitCommit: bdffb5117c33476d554325d8efe5866306004b99
Directory: openjdk-8-slim
Tags: 3.8.1-openjdk-11, 3.8-openjdk-11, 3-openjdk-11
Architectures: amd64, arm64v8
GitCommit: bdffb5117c33476d554325d8efe5866306004b99
Directory: openjdk-11
Tags: 3.8.1-openjdk-11-slim, 3.8-openjdk-11-slim, 3-openjdk-11-slim
Architectures: amd64, arm64v8
GitCommit: bdffb5117c33476d554325d8efe5866306004b99
Directory: openjdk-11-slim
Tags: 3.8.1-openjdk-15, 3.8-openjdk-15, 3-openjdk-15
Architectures: amd64, arm64v8
GitCommit: bdffb5117c33476d554325d8efe5866306004b99
Directory: openjdk-15
Tags: 3.8.1-openjdk-15-slim, 3.8-openjdk-15-slim, 3-openjdk-15-slim
Architectures: amd64, arm64v8
GitCommit: bdffb5117c33476d554325d8efe5866306004b99
Directory: openjdk-15-slim
Tags: 3.8.1-openjdk-16, 3.8.1, 3.8.1-openjdk, 3.8-openjdk-16, 3.8, 3.8-openjdk, 3-openjdk-16, 3, latest, 3-openjdk, openjdk
Architectures: amd64, arm64v8
GitCommit: bdffb5117c33476d554325d8efe5866306004b99
Directory: openjdk-16
Tags: 3.8.1-openjdk-16-slim, 3.8-openjdk-16-slim, 3-openjdk-16-slim
Architectures: amd64, arm64v8
GitCommit: bdffb5117c33476d554325d8efe5866306004b99
Directory: openjdk-16-slim
Tags: 3.8.1-openjdk-17, 3.8-openjdk-17, 3-openjdk-17
Architectures: amd64, arm64v8
GitCommit: bdffb5117c33476d554325d8efe5866306004b99
Directory: openjdk-17
Tags: 3.8.1-openjdk-17-slim, 3.8-openjdk-17-slim, 3-openjdk-17-slim
Architectures: amd64, arm64v8
GitCommit: bdffb5117c33476d554325d8efe5866306004b99
Directory: openjdk-17-slim
Tags: 3.8.1-openjdk-8, 3.8-openjdk-8, 3-openjdk-8
Architectures: amd64
GitCommit: bdffb5117c33476d554325d8efe5866306004b99
Directory: openjdk-8
Tags: 3.8.1-openjdk-8-slim, 3.8-openjdk-8-slim, 3-openjdk-8-slim
Architectures: amd64
GitCommit: bdffb5117c33476d554325d8efe5866306004b99
Directory: openjdk-8-slim
Tags: 3.8.1-adoptopenjdk-11, 3.8-adoptopenjdk-11, 3-adoptopenjdk-11
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
GitCommit: bdffb5117c33476d554325d8efe5866306004b99
Directory: adoptopenjdk-11
Tags: 3.8.1-adoptopenjdk-11-openj9, 3.8-adoptopenjdk-11-openj9, 3-adoptopenjdk-11-openj9
Architectures: amd64, arm64v8, ppc64le, s390x
GitCommit: bdffb5117c33476d554325d8efe5866306004b99
Directory: adoptopenjdk-11-openj9
Tags: 3.8.1-adoptopenjdk-15, 3.8.1-adoptopenjdk, 3.8-adoptopenjdk-15, 3.8-adoptopenjdk, 3-adoptopenjdk-15, 3-adoptopenjdk, adoptopenjdk
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
GitCommit: bdffb5117c33476d554325d8efe5866306004b99
Directory: adoptopenjdk-15
Tags: 3.8.1-adoptopenjdk-15-openj9, 3.8-adoptopenjdk-15-openj9, 3-adoptopenjdk-15-openj9
Architectures: amd64, arm64v8, ppc64le, s390x
GitCommit: bdffb5117c33476d554325d8efe5866306004b99
Directory: adoptopenjdk-15-openj9
Tags: 3.8.1-adoptopenjdk-16, 3.8-adoptopenjdk-16, 3-adoptopenjdk-16
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
GitCommit: b1a19f5406f0d01cd8fe689efbb838474c48db4f
Directory: adoptopenjdk-16
Tags: 3.8.1-adoptopenjdk-16-openj9, 3.8-adoptopenjdk-16-openj9, 3-adoptopenjdk-16-openj9
Architectures: amd64, arm64v8, ppc64le, s390x
GitCommit: b1a19f5406f0d01cd8fe689efbb838474c48db4f
Directory: adoptopenjdk-16-openj9
Tags: 3.8.1-adoptopenjdk-8, 3.8-adoptopenjdk-8, 3-adoptopenjdk-8
Architectures: amd64, ppc64le, s390x
GitCommit: bdffb5117c33476d554325d8efe5866306004b99
Directory: adoptopenjdk-8
Tags: 3.8.1-adoptopenjdk-8-openj9, 3.8-adoptopenjdk-8-openj9, 3-adoptopenjdk-8-openj9
Architectures: amd64, arm64v8, ppc64le, s390x
GitCommit: bdffb5117c33476d554325d8efe5866306004b99
Directory: adoptopenjdk-8-openj9
Tags: 3.8.1-ibmjava-8, 3.8.1-ibmjava, 3.8-ibmjava-8, 3.8-ibmjava, 3-ibmjava-8, 3-ibmjava, ibmjava
Architectures: amd64, i386, ppc64le, s390x
GitCommit: bdffb5117c33476d554325d8efe5866306004b99
Directory: ibmjava-8
Tags: 3.8.1-ibmjava-8-alpine, 3.8.1-ibmjava-alpine, 3.8-ibmjava-8-alpine, 3.8-ibmjava-alpine, 3-ibmjava-8-alpine, ibmjava-alpine
Architectures: amd64
GitCommit: bdffb5117c33476d554325d8efe5866306004b99
Directory: ibmjava-8-alpine
Tags: 3.8.1-amazoncorretto-11, 3.8.1-amazoncorretto, 3.8-amazoncorretto-11, 3.8-amazoncorretto, 3-amazoncorretto-11, 3-amazoncorretto, amazoncorretto
Architectures: amd64, arm64v8
GitCommit: bdffb5117c33476d554325d8efe5866306004b99
Directory: amazoncorretto-11
Tags: 3.8.1-amazoncorretto-15, 3.8-amazoncorretto-15, 3-amazoncorretto-15
Architectures: amd64, arm64v8
GitCommit: bdffb5117c33476d554325d8efe5866306004b99
Directory: amazoncorretto-15
Tags: 3.8.1-amazoncorretto-16, 3.8-amazoncorretto-16, 3-amazoncorretto-16
Architectures: amd64, arm64v8
GitCommit: b6352962a604bfffb21a535e0999c0292b68c1db
Directory: amazoncorretto-16
Tags: 3.8.1-amazoncorretto-8, 3.8-amazoncorretto-8, 3-amazoncorretto-8
Architectures: amd64, arm64v8
GitCommit: bdffb5117c33476d554325d8efe5866306004b99
Directory: amazoncorretto-8

36
library/mediawiki Normal file
View File

@ -0,0 +1,36 @@
Maintainers: David Barratt <dbarratt@wikimedia.org> (@davidbarratt),
Kunal Mehta <legoktm@wikimedia.org> (@legoktm),
addshore <addshorewiki@gmail.com> (@addshore)
GitRepo: https://github.com/wikimedia/mediawiki-docker.git
GitCommit: 51105612d2e1168f1b0545f47951847d63fb9613
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le
Tags: 1.36.1, 1.36, stable, latest
Directory: 1.36/apache
Tags: 1.36.1-fpm, 1.36-fpm, stable-fpm
Directory: 1.36/fpm
Tags: 1.36.1-fpm-alpine, 1.36-fpm-alpine, stable-fpm-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le
Directory: 1.36/fpm-alpine
Tags: 1.35.3, 1.35, lts, legacy
Directory: 1.35/apache
Tags: 1.35.3-fpm, 1.35-fpm, lts-fpm, legacy-fpm
Directory: 1.35/fpm
Tags: 1.35.3-fpm-alpine, 1.35-fpm-alpine, lts-fpm-alpine, legacy-fpm-alpline
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le
Directory: 1.35/fpm-alpine
Tags: 1.31.15, 1.31, legacylts
Directory: 1.31/apache
Tags: 1.31.15-fpm, 1.31-fpm, legacylts-fpm
Directory: 1.31/fpm
Tags: 1.31.15-fpm-alpine, 1.31-fpm-alpine, legacylts-fpm-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le
Directory: 1.31/fpm-alpine

15
library/memcached Normal file
View File

@ -0,0 +1,15 @@
# this file is generated via https://github.com/docker-library/memcached/blob/c6869eac2bdbe4e32780221d7c332c7011d381dd/generate-stackbrew-library.sh
Maintainers: Tianon Gravi <admwiggin@gmail.com> (@tianon),
Joseph Ferguson <yosifkit@gmail.com> (@yosifkit)
GitRepo: https://github.com/docker-library/memcached.git
Tags: 1.6.9, 1.6, 1, latest, 1.6.9-buster, 1.6-buster, 1-buster, buster
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
GitCommit: e67da60d356bf67cf1f822c563dd522c19d48deb
Directory: debian
Tags: 1.6.9-alpine, 1.6-alpine, 1-alpine, alpine, 1.6.9-alpine3.14, 1.6-alpine3.14, 1-alpine3.14, alpine3.14
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: c6f3bd1e98c2455fbc62880936e0feb32792a88e
Directory: alpine

140
library/mongo Normal file
View File

@ -0,0 +1,140 @@
# this file is generated via https://github.com/docker-library/mongo/blob/a698211badf02a36589e4375c6e2edb0da587656/generate-stackbrew-library.sh
Maintainers: Tianon Gravi <admwiggin@gmail.com> (@tianon),
Joseph Ferguson <yosifkit@gmail.com> (@yosifkit)
GitRepo: https://github.com/docker-library/mongo.git
Tags: 5.0.0-focal, 5.0-focal, 5-focal, focal
SharedTags: 5.0.0, 5.0, 5, latest
Architectures: amd64, arm64v8
GitCommit: a698211badf02a36589e4375c6e2edb0da587656
Directory: 5.0
Tags: 5.0.0-windowsservercore-1809, 5.0-windowsservercore-1809, 5-windowsservercore-1809, windowsservercore-1809
SharedTags: 5.0.0-windowsservercore, 5.0-windowsservercore, 5-windowsservercore, windowsservercore, 5.0.0, 5.0, 5, latest
Architectures: windows-amd64
GitCommit: a698211badf02a36589e4375c6e2edb0da587656
Directory: 5.0/windows/windowsservercore-1809
Constraints: windowsservercore-1809
Tags: 5.0.0-windowsservercore-ltsc2016, 5.0-windowsservercore-ltsc2016, 5-windowsservercore-ltsc2016, windowsservercore-ltsc2016
SharedTags: 5.0.0-windowsservercore, 5.0-windowsservercore, 5-windowsservercore, windowsservercore, 5.0.0, 5.0, 5, latest
Architectures: windows-amd64
GitCommit: a698211badf02a36589e4375c6e2edb0da587656
Directory: 5.0/windows/windowsservercore-ltsc2016
Constraints: windowsservercore-ltsc2016
Tags: 5.0.0-nanoserver-1809, 5.0-nanoserver-1809, 5-nanoserver-1809, nanoserver-1809
SharedTags: 5.0.0-nanoserver, 5.0-nanoserver, 5-nanoserver, nanoserver
Architectures: windows-amd64
GitCommit: a698211badf02a36589e4375c6e2edb0da587656
Directory: 5.0/windows/nanoserver-1809
Constraints: nanoserver-1809, windowsservercore-1809
Tags: 4.4.7-rc1-focal, 4.4-rc-focal
SharedTags: 4.4.7-rc1, 4.4-rc
Architectures: amd64, arm64v8
GitCommit: 150ca8f51af6a27de95db38a82d7b9ec7febf622
Directory: 4.4-rc
Tags: 4.4.7-rc1-windowsservercore-1809, 4.4-rc-windowsservercore-1809
SharedTags: 4.4.7-rc1-windowsservercore, 4.4-rc-windowsservercore, 4.4.7-rc1, 4.4-rc
Architectures: windows-amd64
GitCommit: 36a2be58c6bfae49e10b7114bc6585cc0c8495a5
Directory: 4.4-rc/windows/windowsservercore-1809
Constraints: windowsservercore-1809
Tags: 4.4.7-rc1-windowsservercore-ltsc2016, 4.4-rc-windowsservercore-ltsc2016
SharedTags: 4.4.7-rc1-windowsservercore, 4.4-rc-windowsservercore, 4.4.7-rc1, 4.4-rc
Architectures: windows-amd64
GitCommit: 36a2be58c6bfae49e10b7114bc6585cc0c8495a5
Directory: 4.4-rc/windows/windowsservercore-ltsc2016
Constraints: windowsservercore-ltsc2016
Tags: 4.4.7-rc1-nanoserver-1809, 4.4-rc-nanoserver-1809
SharedTags: 4.4.7-rc1-nanoserver, 4.4-rc-nanoserver
Architectures: windows-amd64
GitCommit: 36a2be58c6bfae49e10b7114bc6585cc0c8495a5
Directory: 4.4-rc/windows/nanoserver-1809
Constraints: nanoserver-1809, windowsservercore-1809
Tags: 4.4.6-bionic, 4.4-bionic, 4-bionic
SharedTags: 4.4.6, 4.4, 4
Architectures: amd64, arm64v8, s390x
GitCommit: cb8a419053858e510fc68ed2d69415b3e50011cb
Directory: 4.4
Tags: 4.4.6-windowsservercore-1809, 4.4-windowsservercore-1809, 4-windowsservercore-1809
SharedTags: 4.4.6-windowsservercore, 4.4-windowsservercore, 4-windowsservercore, 4.4.6, 4.4, 4
Architectures: windows-amd64
GitCommit: dc35ba55761b2f03ce2f79ff3b79783b15e23dae
Directory: 4.4/windows/windowsservercore-1809
Constraints: windowsservercore-1809
Tags: 4.4.6-windowsservercore-ltsc2016, 4.4-windowsservercore-ltsc2016, 4-windowsservercore-ltsc2016
SharedTags: 4.4.6-windowsservercore, 4.4-windowsservercore, 4-windowsservercore, 4.4.6, 4.4, 4
Architectures: windows-amd64
GitCommit: dc35ba55761b2f03ce2f79ff3b79783b15e23dae
Directory: 4.4/windows/windowsservercore-ltsc2016
Constraints: windowsservercore-ltsc2016
Tags: 4.4.6-nanoserver-1809, 4.4-nanoserver-1809, 4-nanoserver-1809
SharedTags: 4.4.6-nanoserver, 4.4-nanoserver, 4-nanoserver
Architectures: windows-amd64
GitCommit: dc35ba55761b2f03ce2f79ff3b79783b15e23dae
Directory: 4.4/windows/nanoserver-1809
Constraints: nanoserver-1809, windowsservercore-1809
Tags: 4.2.15-bionic, 4.2-bionic
SharedTags: 4.2.15, 4.2
Architectures: amd64, arm64v8
GitCommit: 71291370ed14fcec09a2f8da8edd6d24062516c9
Directory: 4.2
Tags: 4.2.15-windowsservercore-1809, 4.2-windowsservercore-1809
SharedTags: 4.2.15-windowsservercore, 4.2-windowsservercore, 4.2.15, 4.2
Architectures: windows-amd64
GitCommit: 71291370ed14fcec09a2f8da8edd6d24062516c9
Directory: 4.2/windows/windowsservercore-1809
Constraints: windowsservercore-1809
Tags: 4.2.15-windowsservercore-ltsc2016, 4.2-windowsservercore-ltsc2016
SharedTags: 4.2.15-windowsservercore, 4.2-windowsservercore, 4.2.15, 4.2
Architectures: windows-amd64
GitCommit: 71291370ed14fcec09a2f8da8edd6d24062516c9
Directory: 4.2/windows/windowsservercore-ltsc2016
Constraints: windowsservercore-ltsc2016
Tags: 4.2.15-nanoserver-1809, 4.2-nanoserver-1809
SharedTags: 4.2.15-nanoserver, 4.2-nanoserver
Architectures: windows-amd64
GitCommit: 71291370ed14fcec09a2f8da8edd6d24062516c9
Directory: 4.2/windows/nanoserver-1809
Constraints: nanoserver-1809, windowsservercore-1809
Tags: 4.0.25-xenial, 4.0-xenial
SharedTags: 4.0.25, 4.0
Architectures: amd64, arm64v8
GitCommit: cb8a419053858e510fc68ed2d69415b3e50011cb
Directory: 4.0
Tags: 4.0.25-windowsservercore-1809, 4.0-windowsservercore-1809
SharedTags: 4.0.25-windowsservercore, 4.0-windowsservercore, 4.0.25, 4.0
Architectures: windows-amd64
GitCommit: 724081d1586a930c9b50d6337f086d29968a7389
Directory: 4.0/windows/windowsservercore-1809
Constraints: windowsservercore-1809
Tags: 4.0.25-windowsservercore-ltsc2016, 4.0-windowsservercore-ltsc2016
SharedTags: 4.0.25-windowsservercore, 4.0-windowsservercore, 4.0.25, 4.0
Architectures: windows-amd64
GitCommit: 724081d1586a930c9b50d6337f086d29968a7389
Directory: 4.0/windows/windowsservercore-ltsc2016
Constraints: windowsservercore-ltsc2016
Tags: 4.0.25-nanoserver-1809, 4.0-nanoserver-1809
SharedTags: 4.0.25-nanoserver, 4.0-nanoserver
Architectures: windows-amd64
GitCommit: 724081d1586a930c9b50d6337f086d29968a7389
Directory: 4.0/windows/nanoserver-1809
Constraints: nanoserver-1809, windowsservercore-1809

14
library/mongo-express Normal file
View File

@ -0,0 +1,14 @@
# this file is generated via https://github.com/mongo-express/mongo-express-docker/blob/4b43fe8a1206434cb32a006cd155dd71462f092f/generate-stackbrew-library.sh
Maintainers: Nick Cox <nickcox1008@gmail.com> (@knickers)
GitRepo: https://github.com/mongo-express/mongo-express-docker.git
GitCommit: 26e7ea94e4d222de7d52531caee52149ac093c26
Tags: 1.0.0-alpha.4, 1.0.0-alpha, latest
Architectures: amd64, arm64v8
GitCommit: 4b43fe8a1206434cb32a006cd155dd71462f092f
Tags: 0.54.0, 0.54
Architectures: amd64, arm64v8

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