Compare commits

...

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

402 changed files with 15267 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.3

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.9
Architectures: amd64
GitRepo: https://github.com/aerospike/aerospike-server-enterprise.docker.git
GitCommit: 0f25e2032accd8b4d44c444cb2175f66d0b6a182
Tags: ce-5.6.0.9
Architectures: amd64
GitRepo: https://github.com/aerospike/aerospike-server.docker.git
GitCommit: 536bb0926490b318035bc1ceef284f15954c1a87

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

64
library/alpine Normal file
View File

@ -0,0 +1,64 @@
Maintainers: Natanael Copa <ncopa@alpinelinux.org> (@ncopa)
GitRepo: https://github.com/alpinelinux/docker-alpine.git
Tags: 20210804, edge
Architectures: arm64v8, arm32v6, arm32v7, ppc64le, riscv64, s390x, i386, amd64
GitFetch: refs/heads/edge
GitCommit: a29a148442aa2d6d13d3d87b224d058ec951ad46
arm64v8-Directory: aarch64/
arm32v6-Directory: armhf/
arm32v7-Directory: armv7/
ppc64le-Directory: ppc64le/
riscv64-Directory: riscv64/
s390x-Directory: s390x/
i386-Directory: x86/
amd64-Directory: x86_64/
Tags: 3.14.1, 3.14, 3, latest
Architectures: arm64v8, arm32v6, arm32v7, ppc64le, s390x, i386, amd64
GitFetch: refs/heads/v3.14
GitCommit: 571b69f12f4a3891f48b308ed9611e018cc862f7
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/

42
library/alt Normal file
View File

@ -0,0 +1,42 @@
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: p10, latest
Architectures: amd64, i386, arm64v8, arm32v7, ppc64le
GitFetch: refs/heads/p9
GitCommit: 55d97400cba91761cc54c90a3317b27fa28681b2
amd64-Directory: x86_64/
i386-Directory: i586/
arm64v8-Directory: aarch64/
arm32v7-Directory: armh/
ppc64le-Directory: ppc64le/
Tags: p9
Architectures: amd64, i386, arm64v8, arm32v7, ppc64le
GitFetch: refs/heads/p9
GitCommit: 166d16ccf0377009b389b037064121da9062bd6b
amd64-Directory: x86_64/
i386-Directory: i586/
arm64v8-Directory: aarch64/
arm32v7-Directory: armh/
ppc64le-Directory: ppc64le/
Tags: p8
Architectures: amd64, i386
GitFetch: refs/heads/p8
GitCommit: 0455bb56cfb875deb95a74042f1f37c0428fe8ae
amd64-Directory: x86_64/
i386-Directory: i586/
Tags: sisyphus
Architectures: amd64, i386, arm64v8, arm32v7, ppc64le
GitFetch: refs/heads/sisyphus
GitCommit: 460c41e7d69d1bebcff1a655ae7df9b07b493132
amd64-Directory: x86_64/
arm64v8-Directory: aarch64/
arm32v7-Directory: armh/
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: 9dbaca385d16c9f6ff9b0eb5b71eccdeb19909f3
Tags: 8, 8u302, 8u302-al2, 8-al2-full,8-al2-jdk, latest
Architectures: amd64, arm64v8
Directory: 8/jdk/al2
Tags: 11, 11.0.12, 11.0.12-al2, 11-al2-jdk, 11-al2-full
Architectures: amd64, arm64v8
Directory: 11/jdk/al2
Tags: 8-alpine, 8u302-alpine, 8-alpine-full, 8-alpine-jdk
Architectures: amd64
Directory: 8/jdk/alpine
Tags: 8-alpine-jre, 8u302-alpine-jre
Architectures: amd64
Directory: 8/jre/alpine
Tags: 11-alpine, 11.0.12-alpine, 11-alpine-full, 11-alpine-jdk
Architectures: amd64
Directory: 11/jdk/alpine
Tags: 16, 16.0.2, 16.0.2-al2, 16-al2-jdk, 16-al2-full
Architectures: amd64, arm64v8
Directory: 16/jdk/al2
Tags: 16-alpine, 16.0.2-alpine, 16-alpine-full, 16-alpine-jdk
Architectures: amd64
Directory: 16/jdk/alpine

35
library/amazonlinux Normal file
View File

@ -0,0 +1,35 @@
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),
Tanu Rampal (@trampal)
GitRepo: https://github.com/amazonlinux/container-images.git
GitCommit: 1ab20d5962c3c160c55007313cf183aebaa4d9c6
Tags: 2.0.20210721.2, 2, latest
Architectures: amd64, arm64v8
amd64-GitFetch: refs/heads/amzn2
amd64-GitCommit: 6690b112365657326d5ff6f3b9e785687804df8f
arm64v8-GitFetch: refs/heads/amzn2-arm64
arm64v8-GitCommit: ceda4fe0a07fdfb35c13ba3b2ef406a72ad16f70
Tags: 2.0.20210721.2-with-sources, 2-with-sources, with-sources
Architectures: amd64, arm64v8
amd64-GitFetch: refs/heads/amzn2-with-sources
amd64-GitCommit: 1cb9169ce0193baf64a7dc33dc8846734952597a
arm64v8-GitFetch: refs/heads/amzn2-arm64-with-sources
arm64v8-GitCommit: e5abdddc53e38c41554c158952ebc85a107d2560
Tags: 2018.03.0.20210721.0, 2018.03, 1
Architectures: amd64
amd64-GitFetch: refs/heads/2018.03
amd64-GitCommit: 5489a282cbdf7501d1137e4373d77a79636a45e4
Tags: 2018.03.0.20210721.0-with-sources, 2018.03-with-sources, 1-with-sources
Architectures: amd64
amd64-GitFetch: refs/heads/2018.03-with-sources
amd64-GitCommit: 65bc90c3331e6908d445f89c0e140997b251a758

14
library/arangodb Normal file
View File

@ -0,0 +1,14 @@
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.15
GitCommit: f35358dc627333ca0349e1c8e5af7ea1780ed3aa
Directory: alpine/3.6.15
Tags: 3.7, 3.7.14
GitCommit: 5667472f5348943ccb3ff862e8d9887bab0efdb6
Directory: alpine/3.7.14
Tags: 3.8, 3.8.0, latest
GitCommit: 47656513d1c73c368046e151c697fb85f0eca8cc
Directory: alpine/3.8.0

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-20210822.0.32033
GitCommit: ccc008a7ffa4a3ed9b62641d44e4180efb6324c1
GitFetch: refs/tags/v20210822.0.32033
File: Dockerfile.base
Tags: base-devel, base-devel-20210822.0.32033
GitCommit: ccc008a7ffa4a3ed9b62641d44e4180efb6324c1
GitFetch: refs/tags/v20210822.0.32033
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-20210813, devel
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: 9f556d714c5224e679c32962377bc784e880f56b
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

140
library/buildpack-deps Normal file
View File

@ -0,0 +1,140 @@
# this file is generated via https://github.com/docker-library/buildpack-deps/blob/4f766db54f5179aca1a841e4036d6d6746ac79d9/generate-stackbrew-library.sh
Maintainers: Tianon Gravi <admwiggin@gmail.com> (@tianon),
Joseph Ferguson <yosifkit@gmail.com> (@yosifkit)
GitRepo: https://github.com/docker-library/buildpack-deps.git
Tags: bullseye-curl, stable-curl, curl
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
GitCommit: 98a5ab81d47a106c458cdf90733df0ee8beea06c
Directory: debian/bullseye/curl
Tags: bullseye-scm, stable-scm, scm
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
GitCommit: 65d69325ad741cea6dee20781c1faaab2e003d87
Directory: debian/bullseye/scm
Tags: bullseye, stable, latest
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
GitCommit: 65d69325ad741cea6dee20781c1faaab2e003d87
Directory: debian/bullseye
Tags: buster-curl, oldstable-curl
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
GitCommit: 98a5ab81d47a106c458cdf90733df0ee8beea06c
Directory: debian/buster/curl
Tags: buster-scm, oldstable-scm
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
GitCommit: 65d69325ad741cea6dee20781c1faaab2e003d87
Directory: debian/buster/scm
Tags: buster, oldstable
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, oldoldstable-curl
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386
GitCommit: 93d2a6f64abe6787b7dd25c7d5322af1fa2e3f55
Directory: debian/stretch/curl
Tags: stretch-scm, oldoldstable-scm
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386
GitCommit: 65d69325ad741cea6dee20781c1faaab2e003d87
Directory: debian/stretch/scm
Tags: stretch, oldoldstable
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, riscv64, 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: hirsute-curl, 21.04-curl
Architectures: amd64, arm32v7, arm64v8, ppc64le, riscv64, s390x
GitCommit: 98a5ab81d47a106c458cdf90733df0ee8beea06c
Directory: ubuntu/hirsute/curl
Tags: hirsute-scm, 21.04-scm
Architectures: amd64, arm32v7, arm64v8, ppc64le, riscv64, s390x
GitCommit: 98a5ab81d47a106c458cdf90733df0ee8beea06c
Directory: ubuntu/hirsute/scm
Tags: hirsute, 21.04
Architectures: amd64, arm32v7, arm64v8, ppc64le, riscv64, s390x
GitCommit: 98a5ab81d47a106c458cdf90733df0ee8beea06c
Directory: ubuntu/hirsute
Tags: impish-curl, 21.10-curl
Architectures: amd64, arm32v7, arm64v8, ppc64le, riscv64, s390x
GitCommit: fae040f3db68991f178f0a9631a03ca9837f5647
Directory: ubuntu/impish/curl
Tags: impish-scm, 21.10-scm
Architectures: amd64, arm32v7, arm64v8, ppc64le, riscv64, s390x
GitCommit: fae040f3db68991f178f0a9631a03ca9837f5647
Directory: ubuntu/impish/scm
Tags: impish, 21.10
Architectures: amd64, arm32v7, arm64v8, ppc64le, riscv64, 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

87
library/busybox Normal file
View File

@ -0,0 +1,87 @@
# this file is generated via https://github.com/docker-library/busybox/blob/55844dac0137f947755a0d89d65565d703d1c7ad/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: 55844dac0137f947755a0d89d65565d703d1c7ad
# https://github.com/docker-library/busybox/tree/dist-amd64
amd64-GitFetch: refs/heads/dist-amd64
amd64-GitCommit: 0a3fcfc05b6d1ddac8a929cbc57def698f0765f6
# https://github.com/docker-library/busybox/tree/dist-arm32v5
arm32v5-GitFetch: refs/heads/dist-arm32v5
arm32v5-GitCommit: 9e59a8d467b333676cc8e29a7964979f5fd3569b
# https://github.com/docker-library/busybox/tree/dist-arm32v6
arm32v6-GitFetch: refs/heads/dist-arm32v6
arm32v6-GitCommit: bbd00c7ef3923434ee36f10a740ba1e040688999
# https://github.com/docker-library/busybox/tree/dist-arm32v7
arm32v7-GitFetch: refs/heads/dist-arm32v7
arm32v7-GitCommit: ffb106006f4fbf8b38f0039ff7483a877c2416b5
# https://github.com/docker-library/busybox/tree/dist-arm64v8
arm64v8-GitFetch: refs/heads/dist-arm64v8
arm64v8-GitCommit: 3c905f13b4a494760c31ee2fda21e1c240b17ae3
# https://github.com/docker-library/busybox/tree/dist-i386
i386-GitFetch: refs/heads/dist-i386
i386-GitCommit: 0bfd0bc19d92136a5b1cac1782b4bee461130ac8
# https://github.com/docker-library/busybox/tree/dist-mips64le
mips64le-GitFetch: refs/heads/dist-mips64le
mips64le-GitCommit: da00702daf24fab7c6aa28440aff2c6f21fe8993
# https://github.com/docker-library/busybox/tree/dist-ppc64le
ppc64le-GitFetch: refs/heads/dist-ppc64le
ppc64le-GitCommit: 1fb5c5ee49036bdd783be4edb804f62ad14cb51e
# https://github.com/docker-library/busybox/tree/dist-riscv64
riscv64-GitFetch: refs/heads/dist-riscv64
riscv64-GitCommit: ee3ed8fad6f09cccb2c6e2cb32418b71f0146d29
# https://github.com/docker-library/busybox/tree/dist-s390x
s390x-GitFetch: refs/heads/dist-s390x
s390x-GitCommit: b003537d059328b0137b0972606c955dd17ffd93
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
Tags: 1.34.0-uclibc, 1.34-uclibc, unstable-uclibc
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, riscv64
Directory: unstable/uclibc
Tags: 1.34.0-glibc, 1.34-glibc, unstable-glibc
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
Directory: unstable/glibc
Tags: 1.34.0-musl, 1.34-musl, unstable-musl
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
Directory: unstable/musl
Tags: 1.34.0, 1.34, unstable
Architectures: amd64, arm32v5, arm32v6, arm32v7, arm64v8, i386, mips64le, ppc64le, riscv64, s390x
amd64-Directory: unstable/uclibc
arm32v5-Directory: unstable/uclibc
arm32v6-Directory: unstable/musl
arm32v7-Directory: unstable/uclibc
arm64v8-Directory: unstable/uclibc
i386-Directory: unstable/uclibc
mips64le-Directory: unstable/uclibc
ppc64le-Directory: unstable/glibc
riscv64-Directory: unstable/uclibc
s390x-Directory: unstable/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

25
library/cassandra Normal file
View File

@ -0,0 +1,25 @@
# this file is generated via https://github.com/docker-library/cassandra/blob/01825ee7a52ae469fe89e4c83916ce0120a47761/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.0, 4.0, 4, latest
Architectures: amd64, arm32v7, arm64v8, ppc64le
GitCommit: 74d6b84828dbd2668a51a66b492e9aded9e07c40
Directory: 4.0
Tags: 3.11.11, 3.11, 3
Architectures: amd64, arm32v7, arm64v8, ppc64le
GitCommit: 6d2a0503c7778dd48d3ef718d8d44d38c149a208
Directory: 3.11
Tags: 3.0.25, 3.0
Architectures: amd64, arm32v7, arm64v8, ppc64le
GitCommit: abdbbc043a9e41601fdc9f4e44bffaac46e1192f
Directory: 3.0
Tags: 2.2.19, 2.2, 2
Architectures: amd64, arm32v7, ppc64le
GitCommit: 701846b06c0e6eb2c15c6ee8f3c2ed33df52a9aa
Directory: 2.2

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

33
library/chronograf Normal file
View File

@ -0,0 +1,33 @@
Maintainers: Jonathan A. Sternberg <jonathan@influxdata.com> (@jsternberg),
Bucky Schwarz <bucky@influxdata.com> (@hoorayimhelping),
Cody Shepherd <cody@influxdata.com> (@codyshepherd)
GitRepo: git://github.com/influxdata/influxdata-docker
GitCommit: 282d535b3b428a2a6d0a7395033b70fbef7cacf9
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.10
Architectures: amd64, arm32v7, arm64v8
Directory: chronograf/1.8
Tags: 1.8-alpine, 1.8.10-alpine
Directory: chronograf/1.8/alpine
Tags: 1.9, 1.9.0, latest
Architectures: amd64, arm32v7, arm64v8
Directory: chronograf/1.9
Tags: 1.9-alpine, 1.9.0-alpine, alpine
Directory: chronograf/1.9/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: 2dcacc43831a39ac5ab5e289139870bb1f768cfc
GitFetch: refs/tags/clear-linux-34940

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

104
library/clojure Normal file
View File

@ -0,0 +1,104 @@
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: f651209e1815a9dc5382ad7d40f5e5058ab01c66
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.943, openjdk-8-tools-deps-buster, openjdk-8-tools-deps-1.10.3.943-buster
Architectures: amd64
Directory: target/openjdk-8-buster/tools-deps
Tags: openjdk-8-tools-deps-slim-buster, openjdk-8-tools-deps-1.10.3.943-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.943, tools-deps, tools-deps-1.10.3.943, openjdk-11-tools-deps-buster, openjdk-11-tools-deps-1.10.3.943-buster, tools-deps-buster, tools-deps-1.10.3.943-buster
Directory: target/openjdk-11-buster/tools-deps
Tags: openjdk-11-tools-deps-slim-buster, openjdk-11-tools-deps-1.10.3.943-slim-buster, tools-deps-1.10.3.943-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.943, openjdk-16-tools-deps-slim-buster, openjdk-16-tools-deps-1.10.3.943-slim-buster
Directory: target/openjdk-16-slim-buster/tools-deps
Tags: openjdk-16-tools-deps-buster, openjdk-16-tools-deps-1.10.3.943-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.943, openjdk-17-tools-deps-slim-buster, openjdk-17-tools-deps-1.10.3.943-slim-buster
Directory: target/openjdk-17-slim-buster/tools-deps
Tags: openjdk-17-tools-deps-buster, openjdk-17-tools-deps-1.10.3.943-buster
Directory: target/openjdk-17-buster/tools-deps
Tags: openjdk-18, openjdk-18-lein, openjdk-18-lein-2.9.6, openjdk-18-slim-buster, openjdk-18-lein-slim-buster, openjdk-18-lein-2.9.6-slim-buster
Directory: target/openjdk-18-slim-buster/lein
Tags: openjdk-18-buster, openjdk-18-lein-buster, openjdk-18-lein-2.9.6-buster
Directory: target/openjdk-18-buster/lein
Tags: openjdk-18-boot, openjdk-18-boot-2.8.3, openjdk-18-boot-slim-buster, openjdk-18-boot-2.8.3-slim-buster
Directory: target/openjdk-18-slim-buster/boot
Tags: openjdk-18-boot-buster, openjdk-18-boot-2.8.3-buster
Directory: target/openjdk-18-buster/boot
Tags: openjdk-18-tools-deps, openjdk-18-tools-deps-1.10.3.943, openjdk-18-tools-deps-slim-buster, openjdk-18-tools-deps-1.10.3.943-slim-buster
Directory: target/openjdk-18-slim-buster/tools-deps
Tags: openjdk-18-tools-deps-buster, openjdk-18-tools-deps-1.10.3.943-buster
Directory: target/openjdk-18-buster/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.5, 2.1, 2, latest
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: d606a5451537e69cd32658552e4ce6b418350b35
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.1, 1.10, latest
Architectures: amd64, arm32v6, arm64v8, i386
GitRepo: https://github.com/hashicorp/docker-consul.git
GitCommit: e6a85ad35e9b2a831cc74d16f8ee1fd23c68609e
Directory: 0.X
Tags: 1.9.8, 1.9
Architectures: amd64, arm32v6, arm64v8, i386
GitRepo: https://github.com/hashicorp/docker-consul.git
GitCommit: 6f5620b6d6bc438a044434de1561b58e3ae647cb
Directory: 0.X
Tags: 1.8.14, 1.8
Architectures: amd64, arm32v6, arm64v8, i386
GitRepo: https://github.com/hashicorp/docker-consul.git
GitCommit: 9f3346247f3b035d50be51d7605c3dddb7a56a04
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

22
library/couchbase Normal file
View File

@ -0,0 +1,22 @@
Maintainers: Couchbase Docker Team <docker@couchbase.com> (@cb-robot)
GitRepo: https://github.com/couchbase/docker
Tags: latest, enterprise, 7.0.0, enterprise-7.0.0
GitCommit: a4a4b016732b4ea3a42ea115f481c66ba69b980d
Directory: enterprise/couchbase-server/7.0.0
Tags: community, community-7.0.0
GitCommit: a4a4b016732b4ea3a42ea115f481c66ba69b980d
Directory: community/couchbase-server/7.0.0
Tags: 6.6.3, enterprise-6.6.3
GitCommit: 3ff26f9a680d1449756b51e753324980087c0548
Directory: enterprise/couchbase-server/6.6.3
Tags: 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

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.

37
library/crate Normal file
View File

@ -0,0 +1,37 @@
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.6.1, 4.6, latest
Architectures: amd64, arm64v8
GitCommit: 64df3fb9fa57d41a3c165d555ab903dcc04a4cf2
Tags: 4.5.5, 4.5
Architectures: amd64, arm64v8
GitCommit: 53f8d6336816b88f09d831c073cab749762c7be6
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: 83ac167493a749862edd35572015d6dc280282ea
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-377.7.beta-sdk, beta-sdk, 2.14.0-377.7.beta, beta
Directory: beta/buster

166
library/debian Normal file
View File

@ -0,0 +1,166 @@
# 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: 3714465332cd80e3d37ef7a611ad558424ecc03d
# https://github.com/debuerreotype/docker-debian-artifacts/tree/dist-arm32v5
arm32v5-GitFetch: refs/heads/dist-arm32v5
arm32v5-GitCommit: 68fb5cf08f3582cc93920db0a616be8e670c7e16
# https://github.com/debuerreotype/docker-debian-artifacts/tree/dist-arm32v7
arm32v7-GitFetch: refs/heads/dist-arm32v7
arm32v7-GitCommit: 5e7fa4530e924a2c91acf19f334db7d0f91f259c
# https://github.com/debuerreotype/docker-debian-artifacts/tree/dist-arm64v8
arm64v8-GitFetch: refs/heads/dist-arm64v8
arm64v8-GitCommit: 11e81e4d715e5a3fe49ffc7cb49174ebdb867428
# https://github.com/debuerreotype/docker-debian-artifacts/tree/dist-i386
i386-GitFetch: refs/heads/dist-i386
i386-GitCommit: fca3b270abff3df5cfe46b51cd5c5e8007ed6c22
# https://github.com/debuerreotype/docker-debian-artifacts/tree/dist-mips64le
mips64le-GitFetch: refs/heads/dist-mips64le
mips64le-GitCommit: cabc2b5bcda3b1618dcecb714ec48ab1de442ee2
# https://github.com/debuerreotype/docker-debian-artifacts/tree/dist-ppc64le
ppc64le-GitFetch: refs/heads/dist-ppc64le
ppc64le-GitCommit: 24e777d9d47c172d59f43172b78e1cc783a4d232
# https://github.com/debuerreotype/docker-debian-artifacts/tree/dist-riscv64
riscv64-GitFetch: refs/heads/dist-riscv64
riscv64-GitCommit: 6d195a080853807ebcc9f4c53a2a2d6ddadad0c4
# https://github.com/debuerreotype/docker-debian-artifacts/tree/dist-s390x
s390x-GitFetch: refs/heads/dist-s390x
s390x-GitCommit: c84ba8959c101c4e43fb5649091ec0c5348f3604
# bookworm -- Debian x.y Testing distribution - Not Released
Tags: bookworm, bookworm-20210816
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
Directory: bookworm
Tags: bookworm-backports
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
Directory: bookworm/backports
Tags: bookworm-slim, bookworm-20210816-slim
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
Directory: bookworm/slim
# bullseye -- Debian 11.0 Released 14 August 2021
Tags: bullseye, bullseye-20210816, 11.0, 11, latest
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-20210816-slim, 11.0-slim, 11-slim
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
Directory: bullseye/slim
# buster -- Debian 10.10 Released 19 June 2021
Tags: buster, buster-20210816, 10.10, 10
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-20210816-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-20210816
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, riscv64, s390x
Directory: experimental
# oldoldstable -- Debian 9.13 Released 18 July 2020
Tags: oldoldstable, oldoldstable-20210816
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386
Directory: oldoldstable
Tags: oldoldstable-backports
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386
Directory: oldoldstable/backports
Tags: oldoldstable-slim, oldoldstable-20210816-slim
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386
Directory: oldoldstable/slim
# oldstable -- Debian 10.10 Released 19 June 2021
Tags: oldstable, oldstable-20210816
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
Directory: oldstable
Tags: oldstable-backports
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
Directory: oldstable/backports
Tags: oldstable-slim, oldstable-20210816-slim
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
Directory: oldstable/slim
# rc-buggy -- Experimental packages - not released; use at your own risk.
Tags: rc-buggy, rc-buggy-20210816
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
Directory: rc-buggy
# sid -- Debian x.y Unstable - Not Released
Tags: sid, sid-20210816
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, riscv64, s390x
Directory: sid
Tags: sid-slim, sid-20210816-slim
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, riscv64, s390x
Directory: sid/slim
# stable -- Debian 11.0 Released 14 August 2021
Tags: stable, stable-20210816
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-20210816-slim
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
Directory: stable/slim
# stretch -- Debian 9.13 Released 18 July 2020
Tags: stretch, stretch-20210816, 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-20210816-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-20210816
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-20210816-slim
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
Directory: testing/slim
# unstable -- Debian x.y Unstable - Not Released
Tags: unstable, unstable-20210816
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, riscv64, s390x
Directory: unstable
Tags: unstable-slim, unstable-20210816-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/461a3ec6ed346995c5949cc2d70c08b9d049caa0/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.8, 20.10, 20, latest
Architectures: amd64, arm64v8
GitCommit: 75e26edc9ea7fff4aa3212fafa5966f4d6b00022
Directory: 20.10
Tags: 20.10.8-dind, 20.10-dind, 20-dind, dind
Architectures: amd64, arm64v8
GitCommit: 8baa881aab85f8398d2edbbcc0da4bd1f556dd98
Directory: 20.10/dind
Tags: 20.10.8-dind-rootless, 20.10-dind-rootless, 20-dind-rootless, dind-rootless
Architectures: amd64, arm64v8
GitCommit: 83e4de3bc2aac346e2f76129b1a3a556c1e1bb95
Directory: 20.10/dind-rootless
Tags: 20.10.8-git, 20.10-git, 20-git, git
Architectures: amd64, arm64v8
GitCommit: 387e351394bfad74bceebf8303c6c8e39c3d4ed4
Directory: 20.10/git
Tags: 20.10.8-windowsservercore-1809, 20.10-windowsservercore-1809, 20-windowsservercore-1809, windowsservercore-1809
SharedTags: 20.10.8-windowsservercore, 20.10-windowsservercore, 20-windowsservercore, windowsservercore
Architectures: windows-amd64
GitCommit: 83e4de3bc2aac346e2f76129b1a3a556c1e1bb95
Directory: 20.10/windows/windowsservercore-1809
Constraints: windowsservercore-1809
Tags: 19.03.15, 19.03, 19
Architectures: amd64, arm64v8
GitCommit: 835c371c516ebdf67adc0c76bbfb38bf9d3e586c
Directory: 19.03
Tags: 19.03.15-dind, 19.03-dind, 19-dind
Architectures: amd64, arm64v8
GitCommit: 8baa881aab85f8398d2edbbcc0da4bd1f556dd98
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, 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.4-php8.0-apache-buster, 9.2-php8.0-apache-buster, 9-php8.0-apache-buster, php8.0-apache-buster, 9.2.4-php8.0-apache, 9.2-php8.0-apache, 9-php8.0-apache, php8.0-apache, 9.2.4-apache-buster, 9.2-apache-buster, 9-apache-buster, apache-buster, 9.2.4-apache, 9.2-apache, 9-apache, apache, 9.2.4, 9.2, 9, latest, 9.2.4-php8.0, 9.2-php8.0, 9-php8.0, php8.0
Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: e5eeb6c9a27430505f8a1e213306273104fa79f9
Directory: 9.2/php8.0/apache-buster
Tags: 9.2.4-php8.0-fpm-buster, 9.2-php8.0-fpm-buster, 9-php8.0-fpm-buster, php8.0-fpm-buster, 9.2.4-php8.0-fpm, 9.2-php8.0-fpm, 9-php8.0-fpm, php8.0-fpm, 9.2.4-fpm-buster, 9.2-fpm-buster, 9-fpm-buster, fpm-buster, 9.2.4-fpm, 9.2-fpm, 9-fpm, fpm
Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: e5eeb6c9a27430505f8a1e213306273104fa79f9
Directory: 9.2/php8.0/fpm-buster
Tags: 9.2.4-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.4-php8.0-fpm-alpine, 9.2-php8.0-fpm-alpine, 9-php8.0-fpm-alpine, php8.0-fpm-alpine, 9.2.4-fpm-alpine3.14, 9.2-fpm-alpine3.14, 9-fpm-alpine3.14, fpm-alpine3.14, 9.2.4-fpm-alpine, 9.2-fpm-alpine, 9-fpm-alpine, fpm-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: e5eeb6c9a27430505f8a1e213306273104fa79f9
Directory: 9.2/php8.0/fpm-alpine3.14
Tags: 9.2.4-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.4-fpm-alpine3.13, 9.2-fpm-alpine3.13, 9-fpm-alpine3.13, fpm-alpine3.13
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: e5eeb6c9a27430505f8a1e213306273104fa79f9
Directory: 9.2/php8.0/fpm-alpine3.13
Tags: 9.2.4-php7.4-apache-buster, 9.2-php7.4-apache-buster, 9-php7.4-apache-buster, php7.4-apache-buster, 9.2.4-php7.4-apache, 9.2-php7.4-apache, 9-php7.4-apache, php7.4-apache
Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: e5eeb6c9a27430505f8a1e213306273104fa79f9
Directory: 9.2/php7.4/apache-buster
Tags: 9.2.4-php7.4-fpm-buster, 9.2-php7.4-fpm-buster, 9-php7.4-fpm-buster, php7.4-fpm-buster, 9.2.4-php7.4-fpm, 9.2-php7.4-fpm, 9-php7.4-fpm, php7.4-fpm
Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: e5eeb6c9a27430505f8a1e213306273104fa79f9
Directory: 9.2/php7.4/fpm-buster
Tags: 9.2.4-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.4-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: e5eeb6c9a27430505f8a1e213306273104fa79f9
Directory: 9.2/php7.4/fpm-alpine3.14
Tags: 9.2.4-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: e5eeb6c9a27430505f8a1e213306273104fa79f9
Directory: 9.2/php7.4/fpm-alpine3.13
Tags: 9.1.12-php8.0-apache-buster, 9.1-php8.0-apache-buster, 9.1.12-php8.0-apache, 9.1-php8.0-apache, 9.1.12-apache-buster, 9.1-apache-buster, 9.1.12-apache, 9.1-apache, 9.1.12, 9.1, 9.1.12-php8.0, 9.1-php8.0
Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: 7442fca0f7b86c0ede9264d65965470cc36675e3
Directory: 9.1/php8.0/apache-buster
Tags: 9.1.12-php8.0-fpm-buster, 9.1-php8.0-fpm-buster, 9.1.12-php8.0-fpm, 9.1-php8.0-fpm, 9.1.12-fpm-buster, 9.1-fpm-buster, 9.1.12-fpm, 9.1-fpm
Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: 7442fca0f7b86c0ede9264d65965470cc36675e3
Directory: 9.1/php8.0/fpm-buster
Tags: 9.1.12-php8.0-fpm-alpine3.13, 9.1-php8.0-fpm-alpine3.13, 9.1.12-php8.0-fpm-alpine, 9.1-php8.0-fpm-alpine, 9.1.12-fpm-alpine3.13, 9.1-fpm-alpine3.13, 9.1.12-fpm-alpine, 9.1-fpm-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: 7442fca0f7b86c0ede9264d65965470cc36675e3
Directory: 9.1/php8.0/fpm-alpine3.13
Tags: 9.1.12-php7.4-apache-buster, 9.1-php7.4-apache-buster, 9.1.12-php7.4-apache, 9.1-php7.4-apache
Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: 7442fca0f7b86c0ede9264d65965470cc36675e3
Directory: 9.1/php7.4/apache-buster
Tags: 9.1.12-php7.4-fpm-buster, 9.1-php7.4-fpm-buster, 9.1.12-php7.4-fpm, 9.1-php7.4-fpm
Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: 7442fca0f7b86c0ede9264d65965470cc36675e3
Directory: 9.1/php7.4/fpm-buster
Tags: 9.1.12-php7.4-fpm-alpine3.13, 9.1-php7.4-fpm-alpine3.13, 9.1.12-php7.4-fpm-alpine, 9.1-php7.4-fpm-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: 7442fca0f7b86c0ede9264d65965470cc36675e3
Directory: 9.1/php7.4/fpm-alpine3.13
Tags: 8.9.18-php7.4-apache-buster, 8.9-php7.4-apache-buster, 8-php7.4-apache-buster, 8.9.18-php7.4-apache, 8.9-php7.4-apache, 8-php7.4-apache, 8.9.18-apache-buster, 8.9-apache-buster, 8-apache-buster, 8.9.18-apache, 8.9-apache, 8-apache, 8.9.18, 8.9, 8, 8.9.18-php7.4, 8.9-php7.4, 8-php7.4
Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: f619e8305835157feb5db877a28769b66e1c64c3
Directory: 8.9/php7.4/apache-buster
Tags: 8.9.18-php7.4-fpm-buster, 8.9-php7.4-fpm-buster, 8-php7.4-fpm-buster, 8.9.18-php7.4-fpm, 8.9-php7.4-fpm, 8-php7.4-fpm, 8.9.18-fpm-buster, 8.9-fpm-buster, 8-fpm-buster, 8.9.18-fpm, 8.9-fpm, 8-fpm
Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: f619e8305835157feb5db877a28769b66e1c64c3
Directory: 8.9/php7.4/fpm-buster
Tags: 8.9.18-php7.4-fpm-alpine3.13, 8.9-php7.4-fpm-alpine3.13, 8-php7.4-fpm-alpine3.13, 8.9.18-php7.4-fpm-alpine, 8.9-php7.4-fpm-alpine, 8-php7.4-fpm-alpine, 8.9.18-fpm-alpine3.13, 8.9-fpm-alpine3.13, 8-fpm-alpine3.13, 8.9.18-fpm-alpine, 8.9-fpm-alpine, 8-fpm-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: f619e8305835157feb5db877a28769b66e1c64c3
Directory: 8.9/php7.4/fpm-alpine3.13
Tags: 7.82-php7.4-apache-buster, 7-php7.4-apache-buster, 7.82-php7.4-apache, 7-php7.4-apache, 7.82-apache-buster, 7-apache-buster, 7.82-apache, 7-apache, 7.82, 7, 7.82-php7.4, 7-php7.4
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
GitCommit: 50e8b9df56901f3b032372b61964ceaf5668c409
Directory: 7/php7.4/apache-buster
Tags: 7.82-php7.4-fpm-buster, 7-php7.4-fpm-buster, 7.82-php7.4-fpm, 7-php7.4-fpm, 7.82-fpm-buster, 7-fpm-buster, 7.82-fpm, 7-fpm
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
GitCommit: 50e8b9df56901f3b032372b61964ceaf5668c409
Directory: 7/php7.4/fpm-buster
Tags: 7.82-php7.4-fpm-alpine3.14, 7-php7.4-fpm-alpine3.14, 7.82-php7.4-fpm-alpine, 7-php7.4-fpm-alpine, 7.82-fpm-alpine3.14, 7-fpm-alpine3.14, 7.82-fpm-alpine, 7-fpm-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: 50e8b9df56901f3b032372b61964ceaf5668c409
Directory: 7/php7.4/fpm-alpine3.14
Tags: 7.82-php7.4-fpm-alpine3.13, 7-php7.4-fpm-alpine3.13, 7.82-fpm-alpine3.13, 7-fpm-alpine3.13
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: 50e8b9df56901f3b032372b61964ceaf5668c409
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: 17bbca22fb5dc57bfdc83ac60be67e34208825fd
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

157
library/eclipse-temurin Normal file
View File

@ -0,0 +1,157 @@
# Eclipse Temurin OpenJDK images provided by the Eclipse Foundation.
Maintainers: George Adams <george.adams@microsoft.com> (@gdams)
GitRepo: https://github.com/adoptium/containers.git
#------------------------------v8 images---------------------------------
Tags: 8u302-b08-jdk-focal, 8-jdk-focal, 8-focal
SharedTags: 8u302-b08-jdk, 8-jdk, 8
Architectures: amd64, arm64v8, ppc64le
GitCommit: 94ec04760777535e1ba0374f5ba051eabcf9b2ac
Directory: 8/jdk/ubuntu
File: Dockerfile.releases.full
Tags: 8u302-b08-jdk-centos7, 8-jdk-centos7, 8-centos7
Architectures: amd64, arm64v8, ppc64le
GitCommit: 94ec04760777535e1ba0374f5ba051eabcf9b2ac
Directory: 8/jdk/centos
File: Dockerfile.releases.full
Tags: 8u302-b08-jdk-windowsservercore-1809, 8-jdk-windowsservercore-1809, 8-windowsservercore-1809
SharedTags: 8u302-b08-jdk-windowsservercore, 8-jdk-windowsservercore, 8-windowsservercore, 8u302-b08-jdk, 8-jdk, 8
Architectures: windows-amd64
GitCommit: 94ec04760777535e1ba0374f5ba051eabcf9b2ac
Directory: 8/jdk/windows/windowsservercore-1809
File: Dockerfile.releases.full
Constraints: windowsservercore-1809
Tags: 8u302-b08-jdk-windowsservercore-ltsc2016, 8-jdk-windowsservercore-ltsc2016, 8-windowsservercore-ltsc2016
SharedTags: 8u302-b08-jdk-windowsservercore, 8-jdk-windowsservercore, 8-windowsservercore, 8u302-b08-jdk, 8-jdk, 8
Architectures: windows-amd64
GitCommit: 94ec04760777535e1ba0374f5ba051eabcf9b2ac
Directory: 8/jdk/windows/windowsservercore-ltsc2016
File: Dockerfile.releases.full
Constraints: windowsservercore-ltsc2016
Tags: 8u302-b08-jdk-nanoserver-1809, 8-jdk-nanoserver-1809, 8-nanoserver-1809
SharedTags: 8u302-b08-jdk-nanoserver, 8-jdk-nanoserver, 8-nanoserver
Architectures: windows-amd64
GitCommit: 94ec04760777535e1ba0374f5ba051eabcf9b2ac
Directory: 8/jdk/windows/nanoserver-1809
File: Dockerfile.releases.full
Constraints: nanoserver-1809, windowsservercore-1809
Tags: 8u302-b08-jre-focal, 8-jre-focal
SharedTags: 8u302-b08-jre, 8-jre
Architectures: amd64
GitCommit: 85457d397296c2b988998d8e98fe403df7cdcdc8
Directory: 8/jre/ubuntu
File: Dockerfile.releases.full
Tags: 8u302-b08-jre-centos7, 8-jre-centos7
Architectures: amd64
GitCommit: 85457d397296c2b988998d8e98fe403df7cdcdc8
Directory: 8/jre/centos
File: Dockerfile.releases.full
Tags: 8u302-b08-jre-windowsservercore-1809, 8-jre-windowsservercore-1809
SharedTags: 8u302-b08-jre-windowsservercore, 8-jre-windowsservercore, 8u302-b08-jre, 8-jre
Architectures: windows-amd64
GitCommit: 85457d397296c2b988998d8e98fe403df7cdcdc8
Directory: 8/jre/windows/windowsservercore-1809
File: Dockerfile.releases.full
Constraints: windowsservercore-1809
Tags: 8u302-b08-jre-windowsservercore-ltsc2016, 8-jre-windowsservercore-ltsc2016
SharedTags: 8u302-b08-jre-windowsservercore, 8-jre-windowsservercore, 8u302-b08-jre, 8-jre
Architectures: windows-amd64
GitCommit: 85457d397296c2b988998d8e98fe403df7cdcdc8
Directory: 8/jre/windows/windowsservercore-ltsc2016
File: Dockerfile.releases.full
Constraints: windowsservercore-ltsc2016
Tags: 8u302-b08-jre-nanoserver-1809, 8-jre-nanoserver-1809
SharedTags: 8u302-b08-jre-nanoserver, 8-jre-nanoserver
Architectures: windows-amd64
GitCommit: 85457d397296c2b988998d8e98fe403df7cdcdc8
Directory: 8/jre/windows/nanoserver-1809
File: Dockerfile.releases.full
Constraints: nanoserver-1809, windowsservercore-1809
#------------------------------v11 images---------------------------------
Tags: 11.0.12_7-jdk-focal, 11-jdk-focal, 11-focal
SharedTags: 11.0.12_7-jdk, 11-jdk, 11
Architectures: amd64, arm64v8, ppc64le, s390x
GitCommit: 94ec04760777535e1ba0374f5ba051eabcf9b2ac
Directory: 11/jdk/ubuntu
File: Dockerfile.releases.full
Tags: 11.0.12_7-jdk-centos7, 11-jdk-centos7, 11-centos7
Architectures: amd64, arm64v8, ppc64le
GitCommit: 94ec04760777535e1ba0374f5ba051eabcf9b2ac
Directory: 11/jdk/centos
File: Dockerfile.releases.full
Tags: 11.0.12_7-jdk-windowsservercore-1809, 11-jdk-windowsservercore-1809, 11-windowsservercore-1809
SharedTags: 11.0.12_7-jdk-windowsservercore, 11-jdk-windowsservercore, 11-windowsservercore, 11.0.12_7-jdk, 11-jdk, 11
Architectures: windows-amd64
GitCommit: 94ec04760777535e1ba0374f5ba051eabcf9b2ac
Directory: 11/jdk/windows/windowsservercore-1809
File: Dockerfile.releases.full
Constraints: windowsservercore-1809
Tags: 11.0.12_7-jdk-windowsservercore-ltsc2016, 11-jdk-windowsservercore-ltsc2016, 11-windowsservercore-ltsc2016
SharedTags: 11.0.12_7-jdk-windowsservercore, 11-jdk-windowsservercore, 11-windowsservercore, 11.0.12_7-jdk, 11-jdk, 11
Architectures: windows-amd64
GitCommit: 94ec04760777535e1ba0374f5ba051eabcf9b2ac
Directory: 11/jdk/windows/windowsservercore-ltsc2016
File: Dockerfile.releases.full
Constraints: windowsservercore-ltsc2016
Tags: 11.0.12_7-jdk-nanoserver-1809, 11-jdk-nanoserver-1809, 11-nanoserver-1809
SharedTags: 11.0.12_7-jdk-nanoserver, 11-jdk-nanoserver, 11-nanoserver
Architectures: windows-amd64
GitCommit: 94ec04760777535e1ba0374f5ba051eabcf9b2ac
Directory: 11/jdk/windows/nanoserver-1809
File: Dockerfile.releases.full
Constraints: nanoserver-1809, windowsservercore-1809
#------------------------------v16 images---------------------------------
Tags: 16.0.2_7-jdk-focal, 16-jdk-focal, 16-focal
SharedTags: 16.0.2_7-jdk, 16-jdk, 16, latest
Architectures: amd64, arm64v8, ppc64le
GitCommit: 94ec04760777535e1ba0374f5ba051eabcf9b2ac
Directory: 16/jdk/ubuntu
File: Dockerfile.releases.full
Tags: 16.0.2_7-jdk-centos7, 16-jdk-centos7, 16-centos7
Architectures: amd64, arm64v8, ppc64le
GitCommit: 94ec04760777535e1ba0374f5ba051eabcf9b2ac
Directory: 16/jdk/centos
File: Dockerfile.releases.full
Tags: 16.0.2_7-jdk-windowsservercore-1809, 16-jdk-windowsservercore-1809, 16-windowsservercore-1809
SharedTags: 16.0.2_7-jdk-windowsservercore, 16-jdk-windowsservercore, 16-windowsservercore, 16.0.2_7-jdk, 16-jdk, 16, latest
Architectures: windows-amd64
GitCommit: 94ec04760777535e1ba0374f5ba051eabcf9b2ac
Directory: 16/jdk/windows/windowsservercore-1809
File: Dockerfile.releases.full
Constraints: windowsservercore-1809
Tags: 16.0.2_7-jdk-windowsservercore-ltsc2016, 16-jdk-windowsservercore-ltsc2016, 16-windowsservercore-ltsc2016
SharedTags: 16.0.2_7-jdk-windowsservercore, 16-jdk-windowsservercore, 16-windowsservercore, 16.0.2_7-jdk, 16-jdk, 16, latest
Architectures: windows-amd64
GitCommit: 94ec04760777535e1ba0374f5ba051eabcf9b2ac
Directory: 16/jdk/windows/windowsservercore-ltsc2016
File: Dockerfile.releases.full
Constraints: windowsservercore-ltsc2016
Tags: 16.0.2_7-jdk-nanoserver-1809, 16-jdk-nanoserver-1809, 16-nanoserver-1809
SharedTags: 16.0.2_7-jdk-nanoserver, 16-jdk-nanoserver, 16-nanoserver
Architectures: windows-amd64
GitCommit: 94ec04760777535e1ba0374f5ba051eabcf9b2ac
Directory: 16/jdk/windows/nanoserver-1809
File: Dockerfile.releases.full
Constraints: nanoserver-1809, windowsservercore-1809

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.14.0
Architectures: amd64, arm64v8
GitCommit: e818b5e40773c96618b3b60202519072f7fba521
Directory: 7
Tags: 6.8.18
Architectures: amd64
GitCommit: c834683526fe79e051f595e738e26b39a33b22db
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.5.0, 24.0.5, 24.0, 24, latest
Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
GitCommit: e5d61e0944c87c9f09fed360160df4bbfa27fe02
Directory: 24
Tags: 24.0.5.0-slim, 24.0.5-slim, 24.0-slim, 24-slim, slim
Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
GitCommit: e5d61e0944c87c9f09fed360160df4bbfa27fe02
Directory: 24/slim
Tags: 24.0.5.0-alpine, 24.0.5-alpine, 24.0-alpine, 24-alpine, alpine
Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
GitCommit: e5d61e0944c87c9f09fed360160df4bbfa27fe02
Directory: 24/alpine
Tags: 23.3.4.5, 23.3.4, 23.3, 23
Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
GitCommit: b65df01f20ed1ecc478a69a92f83526d4d1d5ffd
Directory: 23
Tags: 23.3.4.5-slim, 23.3.4-slim, 23.3-slim, 23-slim
Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
GitCommit: b65df01f20ed1ecc478a69a92f83526d4d1d5ffd
Directory: 23/slim
Tags: 23.3.4.5-alpine, 23.3.4-alpine, 23.3-alpine, 23-alpine
Architectures: amd64, arm32v7, arm64v8, i386, s390x, ppc64le
GitCommit: b65df01f20ed1ecc478a69a92f83526d4d1d5ffd
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: 8062833d074ff75e51c9017d3fd7d3bb0bdadc2d
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: d29b1fabd719afd85a21fecd74f2c2df969e4e49
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: 533223237dbbfc737bf11a19c31ff7ec69ce5aae
amd64-Directory: x86_64/
arm64v8-Directory: aarch64/
arm32v7-Directory: armhfp/

64
library/flink Normal file
View File

@ -0,0 +1,64 @@
# 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.2-scala_2.12-java8, 1.13-scala_2.12-java8, scala_2.12-java8, 1.13.2-scala_2.12, 1.13-scala_2.12, scala_2.12, 1.13.2-java8, 1.13-java8, java8, 1.13.2, 1.13, latest
Architectures: amd64
GitCommit: ab6ff6d7b56c2a6257763261ec5498b90e88175a
Directory: ./1.13/scala_2.12-java8-debian
Tags: 1.13.2-scala_2.12-java11, 1.13-scala_2.12-java11, scala_2.12-java11, 1.13.2-java11, 1.13-java11, java11
Architectures: amd64
GitCommit: ab6ff6d7b56c2a6257763261ec5498b90e88175a
Directory: ./1.13/scala_2.12-java11-debian
Tags: 1.13.2-scala_2.11-java8, 1.13-scala_2.11-java8, scala_2.11-java8, 1.13.2-scala_2.11, 1.13-scala_2.11, scala_2.11
Architectures: amd64
GitCommit: ab6ff6d7b56c2a6257763261ec5498b90e88175a
Directory: ./1.13/scala_2.11-java8-debian
Tags: 1.13.2-scala_2.11-java11, 1.13-scala_2.11-java11, scala_2.11-java11
Architectures: amd64
GitCommit: ab6ff6d7b56c2a6257763261ec5498b90e88175a
Directory: ./1.13/scala_2.11-java11-debian
Tags: 1.12.5-scala_2.12-java8, 1.12-scala_2.12-java8, 1.12.5-scala_2.12, 1.12-scala_2.12, 1.12.5-java8, 1.12-java8, 1.12.5, 1.12
Architectures: amd64
GitCommit: 46ad7729983875edeb753792590fa1b3ef3f7af2
Directory: ./1.12/scala_2.12-java8-debian
Tags: 1.12.5-scala_2.12-java11, 1.12-scala_2.12-java11, 1.12.5-java11, 1.12-java11
Architectures: amd64
GitCommit: 46ad7729983875edeb753792590fa1b3ef3f7af2
Directory: ./1.12/scala_2.12-java11-debian
Tags: 1.12.5-scala_2.11-java8, 1.12-scala_2.11-java8, 1.12.5-scala_2.11, 1.12-scala_2.11
Architectures: amd64
GitCommit: 46ad7729983875edeb753792590fa1b3ef3f7af2
Directory: ./1.12/scala_2.11-java8-debian
Tags: 1.12.5-scala_2.11-java11, 1.12-scala_2.11-java11
Architectures: amd64
GitCommit: 46ad7729983875edeb753792590fa1b3ef3f7af2
Directory: ./1.12/scala_2.11-java11-debian
Tags: 1.11.4-scala_2.12-java8, 1.11-scala_2.12-java8, 1.11.4-scala_2.12, 1.11-scala_2.12, 1.11.4-java8, 1.11-java8, 1.11.4, 1.11
Architectures: amd64
GitCommit: 7aefaf235d22034abc5122f379f2a73f15b704d1
Directory: ./1.11/scala_2.12-java8-debian
Tags: 1.11.4-scala_2.12-java11, 1.11-scala_2.12-java11, 1.11.4-java11, 1.11-java11
Architectures: amd64
GitCommit: 7aefaf235d22034abc5122f379f2a73f15b704d1
Directory: ./1.11/scala_2.12-java11-debian
Tags: 1.11.4-scala_2.11-java8, 1.11-scala_2.11-java8, 1.11.4-scala_2.11, 1.11-scala_2.11
Architectures: amd64
GitCommit: 7aefaf235d22034abc5122f379f2a73f15b704d1
Directory: ./1.11/scala_2.11-java8-debian
Tags: 1.11.4-scala_2.11-java11, 1.11-scala_2.11-java11
Architectures: amd64
GitCommit: 7aefaf235d22034abc5122f379f2a73f15b704d1
Directory: ./1.11/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

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: 5766f858996ffd3b38d4d760949a931b019c9b62
Directory: gazebo/11/ubuntu/bionic/gzserver11
Tags: libgazebo11-bionic
Architectures: amd64
GitCommit: 5766f858996ffd3b38d4d760949a931b019c9b62
Directory: gazebo/11/ubuntu/bionic/libgazebo11
########################################
# Distro: ubuntu:focal
Tags: gzserver11, gzserver11-focal
Architectures: amd64
GitCommit: 5766f858996ffd3b38d4d760949a931b019c9b62
Directory: gazebo/11/ubuntu/focal/gzserver11
Tags: libgazebo11, libgazebo11-focal, latest
Architectures: amd64
GitCommit: 5766f858996ffd3b38d4d760949a931b019c9b62
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-07-28
Tags: 11.2.0, 11.2, 11, latest, 11.2.0-bullseye, 11.2-bullseye, 11-bullseye, bullseye
Architectures: amd64, arm32v5, arm32v7, arm64v8, ppc64le, s390x
GitCommit: c2c4e3ac9245fa9e5789512969cf3209e0c56136
Directory: 11
# Docker EOL: 2023-01-28
# 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: a49434c14bb5fd8aa7d1d66b366195bbafea4e7e
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: a49434c14bb5fd8aa7d1d66b366195bbafea4e7e
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: a49434c14bb5fd8aa7d1d66b366195bbafea4e7e
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/1e6c6fc27e51f71b11d97ceee52472bd7d7596bc/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.7, 3.10
Architectures: amd64, arm64v8
GitCommit: 9bd2540fae06da21ef228502be396cb5da4b4c14
Directory: 3.10.7
Tags: 3.10.7-postgres, 3.10-postgres
Architectures: amd64, arm64v8
GitCommit: 7e2a8d9ef56a982b9fbb5a9b51e16d83d0ec4c3c
Directory: 3.10.7/postgres
Tags: 3.12.1, 3.12, 3
Architectures: amd64, arm64v8
GitCommit: 9bd2540fae06da21ef228502be396cb5da4b4c14
Directory: 3.12.1
Tags: 3.12.1-postgres, 3.12-postgres, 3-postgres
Architectures: amd64, arm64v8
GitCommit: 1e6c6fc27e51f71b11d97ceee52472bd7d7596bc
Directory: 3.12.1/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.12.1, 4.12, 4, latest
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
GitCommit: 8d6ccd98654b78b43494b248074137550cd1a11b
Directory: 4/debian
Tags: 4.12.1-alpine, 4.12-alpine, 4-alpine, alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8
GitCommit: 8d6ccd98654b78b43494b248074137550cd1a11b
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

100
library/golang Normal file
View File

@ -0,0 +1,100 @@
# this file is generated via https://github.com/docker-library/golang/blob/48a7371ed6055a97a10adb0b75756192ad5f1c97/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.17.0-bullseye, 1.17-bullseye, 1-bullseye, bullseye
SharedTags: 1.17.0, 1.17, 1, latest
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
GitCommit: 48a7371ed6055a97a10adb0b75756192ad5f1c97
Directory: 1.17/bullseye
Tags: 1.17.0-buster, 1.17-buster, 1-buster, buster
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
GitCommit: 2cd4dab7bd702c7315864c428ba286827d50cda3
Directory: 1.17/buster
Tags: 1.17.0-stretch, 1.17-stretch, 1-stretch, stretch
Architectures: amd64, arm32v7, arm64v8, i386
GitCommit: 2cd4dab7bd702c7315864c428ba286827d50cda3
Directory: 1.17/stretch
Tags: 1.17.0-alpine3.14, 1.17-alpine3.14, 1-alpine3.14, alpine3.14, 1.17.0-alpine, 1.17-alpine, 1-alpine, alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: 2cd4dab7bd702c7315864c428ba286827d50cda3
Directory: 1.17/alpine3.14
Tags: 1.17.0-alpine3.13, 1.17-alpine3.13, 1-alpine3.13, alpine3.13
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: 2cd4dab7bd702c7315864c428ba286827d50cda3
Directory: 1.17/alpine3.13
Tags: 1.17.0-windowsservercore-1809, 1.17-windowsservercore-1809, 1-windowsservercore-1809, windowsservercore-1809
SharedTags: 1.17.0-windowsservercore, 1.17-windowsservercore, 1-windowsservercore, windowsservercore, 1.17.0, 1.17, 1, latest
Architectures: windows-amd64
GitCommit: 2cd4dab7bd702c7315864c428ba286827d50cda3
Directory: 1.17/windows/windowsservercore-1809
Constraints: windowsservercore-1809
Tags: 1.17.0-windowsservercore-ltsc2016, 1.17-windowsservercore-ltsc2016, 1-windowsservercore-ltsc2016, windowsservercore-ltsc2016
SharedTags: 1.17.0-windowsservercore, 1.17-windowsservercore, 1-windowsservercore, windowsservercore, 1.17.0, 1.17, 1, latest
Architectures: windows-amd64
GitCommit: 2cd4dab7bd702c7315864c428ba286827d50cda3
Directory: 1.17/windows/windowsservercore-ltsc2016
Constraints: windowsservercore-ltsc2016
Tags: 1.17.0-nanoserver-1809, 1.17-nanoserver-1809, 1-nanoserver-1809, nanoserver-1809
SharedTags: 1.17.0-nanoserver, 1.17-nanoserver, 1-nanoserver, nanoserver
Architectures: windows-amd64
GitCommit: 2cd4dab7bd702c7315864c428ba286827d50cda3
Directory: 1.17/windows/nanoserver-1809
Constraints: nanoserver-1809, windowsservercore-1809
Tags: 1.16.7-bullseye, 1.16-bullseye
SharedTags: 1.16.7, 1.16
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
GitCommit: 48a7371ed6055a97a10adb0b75756192ad5f1c97
Directory: 1.16/bullseye
Tags: 1.16.7-buster, 1.16-buster
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
GitCommit: 4c1da70f967b2b38b254e166e787d017cc9ca351
Directory: 1.16/buster
Tags: 1.16.7-stretch, 1.16-stretch
Architectures: amd64, arm32v7, arm64v8, i386
GitCommit: 4c1da70f967b2b38b254e166e787d017cc9ca351
Directory: 1.16/stretch
Tags: 1.16.7-alpine3.14, 1.16-alpine3.14, 1.16.7-alpine, 1.16-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: 4c1da70f967b2b38b254e166e787d017cc9ca351
Directory: 1.16/alpine3.14
Tags: 1.16.7-alpine3.13, 1.16-alpine3.13
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: 4c1da70f967b2b38b254e166e787d017cc9ca351
Directory: 1.16/alpine3.13
Tags: 1.16.7-windowsservercore-1809, 1.16-windowsservercore-1809
SharedTags: 1.16.7-windowsservercore, 1.16-windowsservercore, 1.16.7, 1.16
Architectures: windows-amd64
GitCommit: 4c1da70f967b2b38b254e166e787d017cc9ca351
Directory: 1.16/windows/windowsservercore-1809
Constraints: windowsservercore-1809
Tags: 1.16.7-windowsservercore-ltsc2016, 1.16-windowsservercore-ltsc2016
SharedTags: 1.16.7-windowsservercore, 1.16-windowsservercore, 1.16.7, 1.16
Architectures: windows-amd64
GitCommit: 4c1da70f967b2b38b254e166e787d017cc9ca351
Directory: 1.16/windows/windowsservercore-ltsc2016
Constraints: windowsservercore-ltsc2016
Tags: 1.16.7-nanoserver-1809, 1.16-nanoserver-1809
SharedTags: 1.16.7-nanoserver, 1.16-nanoserver
Architectures: windows-amd64
GitCommit: 4c1da70f967b2b38b254e166e787d017cc9ca351
Directory: 1.16/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.2.0-jdk8, 7.2.0-jdk8-hotspot, 7.2-jdk8, 7.2-jdk8-hotspot, 7-jdk8, 7-jdk8-hotspot, jdk8, jdk8-hotspot, 7.2.0-jdk, 7.2.0-jdk-hotspot, 7.2-jdk, 7.2-jdk-hotspot, 7-jdk, 7-jdk-hotspot, jdk, jdk-hotspot, 7.2.0, 7.2.0-hotspot, 7.2, 7.2-hotspot, 7, 7-hotspot, latest, hotspot
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
GitCommit: 314183716a384cb67c3dfd8e7a35c06aa0ab472e
Directory: hotspot/jdk8
Tags: 7.2.0-jre8, 7.2.0-jre8-hotspot, 7.2-jre8, 7.2-jre8-hotspot, 7-jre8, 7-jre8-hotspot, jre8, jre8-hotspot, 7.2.0-jre, 7.2.0-jre-hotspot, 7.2-jre, 7.2-jre-hotspot, 7-jre, 7-jre-hotspot, jre, jre-hotspot
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
GitCommit: 314183716a384cb67c3dfd8e7a35c06aa0ab472e
Directory: hotspot/jre8
Tags: 7.2.0-jdk11, 7.2.0-jdk11-hotspot, 7.2-jdk11, 7.2-jdk11-hotspot, 7-jdk11, 7-jdk11-hotspot, jdk11, jdk11-hotspot
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
GitCommit: 314183716a384cb67c3dfd8e7a35c06aa0ab472e
Directory: hotspot/jdk11
Tags: 7.2.0-jre11, 7.2.0-jre11-hotspot, 7.2-jre11, 7.2-jre11-hotspot, 7-jre11, 7-jre11-hotspot, jre11, jre11-hotspot
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
GitCommit: 314183716a384cb67c3dfd8e7a35c06aa0ab472e
Directory: hotspot/jre11
Tags: 7.2.0-jdk16, 7.2.0-jdk16-hotspot, 7.2-jdk16, 7.2-jdk16-hotspot, 7-jdk16, 7-jdk16-hotspot, jdk16, jdk16-hotspot
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
GitCommit: 314183716a384cb67c3dfd8e7a35c06aa0ab472e
Directory: hotspot/jdk16
Tags: 7.2.0-jre16, 7.2.0-jre16-hotspot, 7.2-jre16, 7.2-jre16-hotspot, 7-jre16, 7-jre16-hotspot, jre16, jre16-hotspot
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
GitCommit: 314183716a384cb67c3dfd8e7a35c06aa0ab472e
Directory: hotspot/jre16
# OpenJ9
Tags: 7.2.0-jdk8-openj9, 7.2-jdk8-openj9, 7-jdk8-openj9, jdk8-openj9, 7.2.0-jdk-openj9, 7.2-jdk-openj9, 7-jdk-openj9, jdk-openj9, 7.2.0-openj9, 7.2-openj9, 7-openj9, openj9
Architectures: amd64, arm64v8, ppc64le, s390x
GitCommit: 314183716a384cb67c3dfd8e7a35c06aa0ab472e
Directory: openj9/jdk8
Tags: 7.2.0-jre8-openj9, 7.2-jre8-openj9, 7-jre8-openj9, jre8-openj9, 7.2.0-jre-openj9, 7.2-jre-openj9, 7-jre-openj9, jre-openj9
Architectures: amd64, arm64v8, ppc64le, s390x
GitCommit: 314183716a384cb67c3dfd8e7a35c06aa0ab472e
Directory: openj9/jre8
Tags: 7.2.0-jdk11-openj9, 7.2-jdk11-openj9, 7-jdk11-openj9, jdk11-openj9
Architectures: amd64, arm64v8, ppc64le, s390x
GitCommit: 314183716a384cb67c3dfd8e7a35c06aa0ab472e
Directory: openj9/jdk11
Tags: 7.2.0-jre11-openj9, 7.2-jre11-openj9, 7-jre11-openj9, jre11-openj9
Architectures: amd64, arm64v8, ppc64le, s390x
GitCommit: 314183716a384cb67c3dfd8e7a35c06aa0ab472e
Directory: openj9/jre11
Tags: 7.2.0-jdk16-openj9, 7.2-jdk16-openj9, 7-jdk16-openj9, jdk16-openj9
Architectures: amd64, arm64v8, ppc64le, s390x
GitCommit: 314183716a384cb67c3dfd8e7a35c06aa0ab472e
Directory: openj9/jdk16
Tags: 7.2.0-jre16-openj9, 7.2-jre16-openj9, 7-jre16-openj9, jre16-openj9
Architectures: amd64, arm64v8, ppc64le, s390x
GitCommit: 314183716a384cb67c3dfd8e7a35c06aa0ab472e
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-dev4, 2.5-dev
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
GitCommit: a5931f79714e7fe67a6fd4969704a9f7c7098502
Directory: 2.5-rc
Tags: 2.5-dev4-alpine, 2.5-dev-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: a5931f79714e7fe67a6fd4969704a9f7c7098502
Directory: 2.5-rc/alpine
Tags: 2.4.3, 2.4, lts, latest
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
GitCommit: a5931f79714e7fe67a6fd4969704a9f7c7098502
Directory: 2.4
Tags: 2.4.3-alpine, 2.4-alpine, lts-alpine, alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: a5931f79714e7fe67a6fd4969704a9f7c7098502
Directory: 2.4/alpine
Tags: 2.3.13, 2.3
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
GitCommit: a5931f79714e7fe67a6fd4969704a9f7c7098502
Directory: 2.3
Tags: 2.3.13-alpine, 2.3-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: a5931f79714e7fe67a6fd4969704a9f7c7098502
Directory: 2.3/alpine
Tags: 2.2.16, 2.2
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
GitCommit: a5931f79714e7fe67a6fd4969704a9f7c7098502
Directory: 2.2
Tags: 2.2.16-alpine, 2.2-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: a5931f79714e7fe67a6fd4969704a9f7c7098502
Directory: 2.2/alpine
Tags: 2.0.24, 2.0
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
GitCommit: a5931f79714e7fe67a6fd4969704a9f7c7098502
Directory: 2.0
Tags: 2.0.24-alpine, 2.0-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: a5931f79714e7fe67a6fd4969704a9f7c7098502
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: d9bf04e3d561c3ccef4528bbe74d1c89552c6d35
Directory: 9.0/buster
Tags: 9.0.1-stretch, 9.0-stretch, 9-stretch, stretch
GitCommit: d9bf04e3d561c3ccef4528bbe74d1c89552c6d35
Directory: 9.0/stretch
Tags: 8.10.4-buster, 8.10-buster, 8-buster, 8.10.4, 8.10, 8
GitCommit: d9bf04e3d561c3ccef4528bbe74d1c89552c6d35
Directory: 8.10/buster
Tags: 8.10.4-stretch, 8.10-stretch, 8-stretch
GitCommit: d9bf04e3d561c3ccef4528bbe74d1c89552c6d35
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

15
library/httpd Normal file
View File

@ -0,0 +1,15 @@
# 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: 208fc2ba9a097530bb0b7386b0c2bebacdfb6c5c
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: 208fc2ba9a097530bb0b7386b0c2bebacdfb6c5c
Directory: 2.4/alpine

116
library/hylang Normal file
View File

@ -0,0 +1,116 @@
Maintainers: Paul Tagliamonte <paultag@hylang.org> (@paultag), Hy Docker Team (@hylang/docker)
GitRepo: https://github.com/hylang/docker-hylang.git
GitCommit: e9814439299710b61a2d41a7ae6ae376436c9070
Directory: dockerfiles-generated
Tags: 1.0a3-python3.9-bullseye, python3.9-bullseye, 1.0a3-bullseye, bullseye
SharedTags: 1.0a3-python3.9, python3.9, 1.0a3, latest
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
File: Dockerfile.python3.9-bullseye
Tags: 1.0a3-python3.9-buster, python3.9-buster, 1.0a3-buster, buster
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-bullseye, python3.8-bullseye
SharedTags: 1.0a3-python3.8, python3.8
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
File: Dockerfile.python3.8-bullseye
Tags: 1.0a3-python3.8-buster, python3.8-buster
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-bullseye, python3.7-bullseye
SharedTags: 1.0a3-python3.7, python3.7
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
File: Dockerfile.python3.7-bullseye
Tags: 1.0a3-python3.7-buster, python3.7-buster
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
File: Dockerfile.python3.7-buster
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-bullseye, python3.6-bullseye
SharedTags: 1.0a3-python3.6, python3.6
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
File: Dockerfile.python3.6-bullseye
Tags: 1.0a3-python3.6-buster, python3.6-buster
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
File: Dockerfile.python3.6-buster
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-bullseye, python3.10-rc-bullseye
SharedTags: 1.0a3-python3.10-rc, python3.10-rc
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
File: Dockerfile.python3.10-rc-bullseye
Tags: 1.0a3-python3.10-rc-buster, python3.10-rc-buster
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-bullseye, pypy3.7-bullseye, 1.0a3-pypy-bullseye, pypy-bullseye
SharedTags: 1.0a3-pypy3.7, pypy3.7, 1.0a3-pypy, pypy
Architectures: amd64, arm64v8, i386
File: Dockerfile.pypy3.7-bullseye
Tags: 1.0a3-pypy3.7-buster, pypy3.7-buster, 1.0a3-pypy-buster, pypy-buster
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: 41ff2296a7d3de9b694feb3407fc66a25dfd41c0
Directory: ibmjava/8/jre/ubuntu
Tags: 8-jre-alpine, jre-alpine
Architectures: amd64
GitCommit: 41ff2296a7d3de9b694feb3407fc66a25dfd41c0
Directory: ibmjava/8/jre/alpine
Tags: 8-sfj, sfj
Architectures: amd64, i386, ppc64le, s390x
GitCommit: 41ff2296a7d3de9b694feb3407fc66a25dfd41c0
Directory: ibmjava/8/sfj/ubuntu
Tags: 8-sfj-alpine, sfj-alpine
Architectures: amd64
GitCommit: 41ff2296a7d3de9b694feb3407fc66a25dfd41c0
Directory: ibmjava/8/sfj/alpine
Tags: 8-sdk, sdk
Architectures: amd64, i386, ppc64le, s390x
GitCommit: 41ff2296a7d3de9b694feb3407fc66a25dfd41c0
Directory: ibmjava/8/sdk/ubuntu
Tags: 8-sdk-alpine, sdk-alpine
Architectures: amd64
GitCommit: 41ff2296a7d3de9b694feb3407fc66a25dfd41c0
Directory: ibmjava/8/sdk/alpine
Tags: 11-jdk, 11
Architectures: amd64, ppc64le, s390x
GitCommit: 41ff2296a7d3de9b694feb3407fc66a25dfd41c0
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: c26070e0898e01777b763de6e81af9a92b31f87d
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.9
Architectures: amd64, arm32v7, arm64v8
Directory: influxdb/1.8
Tags: 1.8-alpine, 1.8.9-alpine
Directory: influxdb/1.8/alpine
Tags: 1.8-data, 1.8.9-data, data
Directory: influxdb/1.8/data
Tags: 1.8-data-alpine, 1.8.9-data-alpine, data-alpine
Directory: influxdb/1.8/data/alpine
Tags: 1.8-meta, 1.8.9-meta, meta
Directory: influxdb/1.8/meta
Tags: 1.8-meta-alpine, 1.8.9-meta-alpine, meta-alpine
Directory: influxdb/1.8/meta/alpine
Tags: 1.9-data, 1.9.3-data
Directory: influxdb/1.9/data
Tags: 1.9-data-alpine, 1.9.3-data-alpine
Directory: influxdb/1.9/data/alpine
Tags: 1.9-meta, 1.9.3-meta
Directory: influxdb/1.9/meta
Tags: 1.9-meta-alpine, 1.9.3-meta-alpine
Directory: influxdb/1.9/meta/alpine
Tags: 2.0, 2.0.8, latest
Architectures: amd64, arm64v8
Directory: influxdb/2.0
Tags: 2.0-alpine, 2.0.8-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.10.0-apache, 3.10-apache, 3-apache, apache, 3.10.0, 3.10, 3, latest, 3.10.0-php7.3-apache, 3.10-php7.3-apache, 3-php7.3-apache, php7.3-apache, 3.10.0-php7.3, 3.10-php7.3, 3-php7.3, php7.3
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
GitCommit: 7d3cec34d348137c16751298528bced4ba504160
Directory: php7.3/apache
Tags: 3.10.0-fpm, 3.10-fpm, 3-fpm, fpm, 3.10.0-php7.3-fpm, 3.10-php7.3-fpm, 3-php7.3-fpm, php7.3-fpm
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
GitCommit: 7d3cec34d348137c16751298528bced4ba504160
Directory: php7.3/fpm
Tags: 3.10.0-fpm-alpine, 3.10-fpm-alpine, 3-fpm-alpine, fpm-alpine, 3.10.0-php7.3-fpm-alpine, 3.10-php7.3-fpm-alpine, 3-php7.3-fpm-alpine, php7.3-fpm-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: 7d3cec34d348137c16751298528bced4ba504160
Directory: php7.3/fpm-alpine
Tags: 3.10.0-php7.4-apache, 3.10-php7.4-apache, 3-php7.4-apache, php7.4-apache, 3.10.0-php7.4, 3.10-php7.4, 3-php7.4, php7.4
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
GitCommit: 7d3cec34d348137c16751298528bced4ba504160
Directory: php7.4/apache
Tags: 3.10.0-php7.4-fpm, 3.10-php7.4-fpm, 3-php7.4-fpm, php7.4-fpm
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
GitCommit: 7d3cec34d348137c16751298528bced4ba504160
Directory: php7.4/fpm
Tags: 3.10.0-php7.4-fpm-alpine, 3.10-php7.4-fpm-alpine, 3-php7.4-fpm-alpine, php7.4-fpm-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: 7d3cec34d348137c16751298528bced4ba504160
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

19
library/kapacitor Normal file
View File

@ -0,0 +1,19 @@
Maintainers: Jonathan A. Sternberg <jonathan@influxdata.com> (@jsternberg),
j. Emrys Landivar <landivar@gmail.com> (@docmerlin)
GitRepo: git://github.com/influxdata/influxdata-docker
GitCommit: 0e03b615c48d7f089fff7bb2aa2e7d65e83bd2c2
Tags: 1.5, 1.5.9
Architectures: amd64, arm32v7, arm64v8
Directory: kapacitor/1.5
Tags: 1.5-alpine, 1.5.9-alpine
Directory: kapacitor/1.5/alpine
Tags: 1.6, 1.6.1, latest
Architectures: amd64, arm64v8
Directory: kapacitor/1.6
Tags: 1.6-alpine, 1.6.1-alpine, alpine
Directory: kapacitor/1.6/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.14.0
Architectures: amd64, arm64v8
GitCommit: 80e00e461a6aad29ce2d8acd1bd6c21828c98812
Directory: 7
Tags: 6.8.18
Architectures: amd64
GitCommit: cff36ad1ea430335a6ceccb4a2f6beaad710551f
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, arm64v8
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: fe38e8a5b87c4cb29b964a49f9ce7f0a50752b48
Directory: 7.2/jdk11
Tags: 7.2.0-jdk8-openjdk, 7.2-jd8-openjdk, 7-jdk8-openjdk, 7.2.0-jdk8, 7.2-jdk8, 7-jdk8
Architectures: amd64, arm64v8
GitCommit: fe38e8a5b87c4cb29b964a49f9ce7f0a50752b48
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.14.0
Architectures: amd64, arm64v8
GitCommit: 458cc387b0320cef6170dc8532b6695fd3daebff
Directory: 7
Tags: 6.8.18
Architectures: amd64
GitCommit: b33a53e022f25be3395791b247227247642a6504
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.4-focal, 10.6-focal, 10-focal, focal, 10.6.4, 10.6, 10, latest
Architectures: amd64, arm64v8, ppc64le, s390x
GitCommit: 60caa9ea5c46b985ac6a7ebc93564a29791fca08
Directory: 10.6
Tags: 10.5.12-focal, 10.5-focal, 10.5.12, 10.5
Architectures: amd64, arm64v8, ppc64le, s390x
GitCommit: 60caa9ea5c46b985ac6a7ebc93564a29791fca08
Directory: 10.5
Tags: 10.4.21-focal, 10.4-focal, 10.4.21, 10.4
Architectures: amd64, arm64v8, ppc64le
GitCommit: 60caa9ea5c46b985ac6a7ebc93564a29791fca08
Directory: 10.4
Tags: 10.3.31-focal, 10.3-focal, 10.3.31, 10.3
Architectures: amd64, arm64v8, ppc64le
GitCommit: 60caa9ea5c46b985ac6a7ebc93564a29791fca08
Directory: 10.3
Tags: 10.2.40-bionic, 10.2-bionic, 10.2.40, 10.2
Architectures: amd64, arm64v8, ppc64le
GitCommit: 60caa9ea5c46b985ac6a7ebc93564a29791fca08
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.4.1-apache, 4.4-apache, 4-apache, apache, 4.4.1, 4.4, 4, latest
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
GitCommit: 456bb49728ca932d635d2e6fff44de0676c10c9c
Directory: apache
Tags: 4.4.1-fpm, 4.4-fpm, 4-fpm, fpm
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
GitCommit: 456bb49728ca932d635d2e6fff44de0676c10c9c
Directory: fpm
Tags: 4.4.1-fpm-alpine, 4.4-fpm-alpine, 4-fpm-alpine, fpm-alpine
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: 456bb49728ca932d635d2e6fff44de0676c10c9c
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.2-jdk-11, 3.8-jdk-11, 3-jdk-11
Architectures: amd64, arm64v8
GitCommit: 0a7b1ef030687a5d95ce3e7567a4c279ab87dc81
Directory: openjdk-11
Tags: 3.8.2-jdk-11-openj9, 3.8-jdk-11-openj9, 3-jdk-11-openj9
Architectures: amd64, ppc64le, s390x
GitCommit: 0a7b1ef030687a5d95ce3e7567a4c279ab87dc81
Directory: adoptopenjdk-11-openj9
Tags: 3.8.2-jdk-11-slim, 3.8-jdk-11-slim, 3-jdk-11-slim
Architectures: amd64, arm64v8
GitCommit: 0a7b1ef030687a5d95ce3e7567a4c279ab87dc81
Directory: openjdk-11-slim
Tags: 3.8.2-jdk-8, 3.8-jdk-8, 3-jdk-8
Architectures: amd64, arm64v8
GitCommit: 0a7b1ef030687a5d95ce3e7567a4c279ab87dc81
Directory: openjdk-8
Tags: 3.8.2-jdk-8-openj9, 3.8-jdk-8-openj9, 3-jdk-8-openj9
Architectures: amd64, ppc64le, s390x
GitCommit: 0a7b1ef030687a5d95ce3e7567a4c279ab87dc81
Directory: adoptopenjdk-8-openj9
Tags: 3.8.2-jdk-8-slim, 3.8-jdk-8-slim, 3-jdk-8-slim
Architectures: amd64, arm64v8
GitCommit: 0a7b1ef030687a5d95ce3e7567a4c279ab87dc81
Directory: openjdk-8-slim
Tags: 3.8.2-openjdk-11, 3.8-openjdk-11, 3-openjdk-11
Architectures: amd64, arm64v8
GitCommit: 0a7b1ef030687a5d95ce3e7567a4c279ab87dc81
Directory: openjdk-11
Tags: 3.8.2-openjdk-11-slim, 3.8-openjdk-11-slim, 3-openjdk-11-slim
Architectures: amd64, arm64v8
GitCommit: 0a7b1ef030687a5d95ce3e7567a4c279ab87dc81
Directory: openjdk-11-slim
Tags: 3.8.2-openjdk-16, 3.8.2, 3.8.2-openjdk, 3.8-openjdk-16, 3.8, 3.8-openjdk, 3-openjdk-16, 3, latest, 3-openjdk, openjdk
Architectures: amd64, arm64v8
GitCommit: 0a7b1ef030687a5d95ce3e7567a4c279ab87dc81
Directory: openjdk-16
Tags: 3.8.2-openjdk-16-slim, 3.8-openjdk-16-slim, 3-openjdk-16-slim
Architectures: amd64, arm64v8
GitCommit: 0a7b1ef030687a5d95ce3e7567a4c279ab87dc81
Directory: openjdk-16-slim
Tags: 3.8.2-openjdk-17, 3.8-openjdk-17, 3-openjdk-17
Architectures: amd64, arm64v8
GitCommit: 0a7b1ef030687a5d95ce3e7567a4c279ab87dc81
Directory: openjdk-17
Tags: 3.8.2-openjdk-17-slim, 3.8-openjdk-17-slim, 3-openjdk-17-slim
Architectures: amd64, arm64v8
GitCommit: 0a7b1ef030687a5d95ce3e7567a4c279ab87dc81
Directory: openjdk-17-slim
Tags: 3.8.2-openjdk-8, 3.8-openjdk-8, 3-openjdk-8
Architectures: amd64, arm64v8
GitCommit: 0a7b1ef030687a5d95ce3e7567a4c279ab87dc81
Directory: openjdk-8
Tags: 3.8.2-openjdk-8-slim, 3.8-openjdk-8-slim, 3-openjdk-8-slim
Architectures: amd64, arm64v8
GitCommit: 0a7b1ef030687a5d95ce3e7567a4c279ab87dc81
Directory: openjdk-8-slim
Tags: 3.8.2-adoptopenjdk-11, 3.8-adoptopenjdk-11, 3-adoptopenjdk-11
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
GitCommit: 0a7b1ef030687a5d95ce3e7567a4c279ab87dc81
Directory: adoptopenjdk-11
Tags: 3.8.2-adoptopenjdk-11-openj9, 3.8-adoptopenjdk-11-openj9, 3-adoptopenjdk-11-openj9
Architectures: amd64, ppc64le, s390x
GitCommit: 0a7b1ef030687a5d95ce3e7567a4c279ab87dc81
Directory: adoptopenjdk-11-openj9
Tags: 3.8.2-adoptopenjdk-15, 3.8.2-adoptopenjdk, 3.8-adoptopenjdk-15, 3.8-adoptopenjdk, 3-adoptopenjdk-15, 3-adoptopenjdk, adoptopenjdk
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
GitCommit: 0a7b1ef030687a5d95ce3e7567a4c279ab87dc81
Directory: adoptopenjdk-15
Tags: 3.8.2-adoptopenjdk-15-openj9, 3.8-adoptopenjdk-15-openj9, 3-adoptopenjdk-15-openj9
Architectures: amd64, ppc64le, s390x
GitCommit: 0a7b1ef030687a5d95ce3e7567a4c279ab87dc81
Directory: adoptopenjdk-15-openj9
Tags: 3.8.2-adoptopenjdk-16, 3.8-adoptopenjdk-16, 3-adoptopenjdk-16
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
GitCommit: 0a7b1ef030687a5d95ce3e7567a4c279ab87dc81
Directory: adoptopenjdk-16
Tags: 3.8.2-adoptopenjdk-16-openj9, 3.8-adoptopenjdk-16-openj9, 3-adoptopenjdk-16-openj9
Architectures: amd64, ppc64le, s390x
GitCommit: 0a7b1ef030687a5d95ce3e7567a4c279ab87dc81
Directory: adoptopenjdk-16-openj9
Tags: 3.8.2-adoptopenjdk-8, 3.8-adoptopenjdk-8, 3-adoptopenjdk-8
Architectures: amd64, arm32v7, arm64v8, ppc64le, s390x
GitCommit: 0a7b1ef030687a5d95ce3e7567a4c279ab87dc81
Directory: adoptopenjdk-8
Tags: 3.8.2-adoptopenjdk-8-openj9, 3.8-adoptopenjdk-8-openj9, 3-adoptopenjdk-8-openj9
Architectures: amd64, ppc64le, s390x
GitCommit: 0a7b1ef030687a5d95ce3e7567a4c279ab87dc81
Directory: adoptopenjdk-8-openj9
Tags: 3.8.2-eclipse-temurin-11, 3.8-eclipse-temurin-11, 3-eclipse-temurin-11
Architectures: amd64, arm64v8, ppc64le, s390x
GitCommit: fb98b767f20d898dcfaa998a6d4b5d2c9237252e
Directory: eclipse-temurin-11
Tags: 3.8.2-eclipse-temurin-16, 3.8.2-eclipse-temurin, 3.8-eclipse-temurin-16, 3.8-eclipse-temurin, 3-eclipse-temurin-16, 3-eclipse-temurin, eclipse-temurin
Architectures: amd64, arm64v8, ppc64le
GitCommit: fb98b767f20d898dcfaa998a6d4b5d2c9237252e
Directory: eclipse-temurin-16
Tags: 3.8.2-eclipse-temurin-8, 3.8-eclipse-temurin-8, 3-eclipse-temurin-8
Architectures: amd64, arm64v8, ppc64le
GitCommit: fb98b767f20d898dcfaa998a6d4b5d2c9237252e
Directory: eclipse-temurin-8
Tags: 3.8.2-ibmjava-8, 3.8.2-ibmjava, 3.8-ibmjava-8, 3.8-ibmjava, 3-ibmjava-8, 3-ibmjava, ibmjava
Architectures: amd64, i386, ppc64le, s390x
GitCommit: 0a7b1ef030687a5d95ce3e7567a4c279ab87dc81
Directory: ibmjava-8
Tags: 3.8.2-ibmjava-8-alpine, 3.8.2-ibmjava-alpine, 3.8-ibmjava-8-alpine, 3.8-ibmjava-alpine, 3-ibmjava-8-alpine, ibmjava-alpine
Architectures: amd64
GitCommit: 0a7b1ef030687a5d95ce3e7567a4c279ab87dc81
Directory: ibmjava-8-alpine
Tags: 3.8.2-amazoncorretto-11, 3.8.2-amazoncorretto, 3.8-amazoncorretto-11, 3.8-amazoncorretto, 3-amazoncorretto-11, 3-amazoncorretto, amazoncorretto
Architectures: amd64, arm64v8
GitCommit: 0a7b1ef030687a5d95ce3e7567a4c279ab87dc81
Directory: amazoncorretto-11
Tags: 3.8.2-amazoncorretto-16, 3.8-amazoncorretto-16, 3-amazoncorretto-16
Architectures: amd64, arm64v8
GitCommit: 0a7b1ef030687a5d95ce3e7567a4c279ab87dc81
Directory: amazoncorretto-16
Tags: 3.8.2-amazoncorretto-8, 3.8-amazoncorretto-8, 3-amazoncorretto-8
Architectures: amd64, arm64v8
GitCommit: 0a7b1ef030687a5d95ce3e7567a4c279ab87dc81
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.10, 1.6, 1, latest, 1.6.10-buster, 1.6-buster, 1-buster, buster
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, mips64le, ppc64le, s390x
GitCommit: 1a01e364e20f571700e35e1ba8906a59ea4561b8
Directory: debian
Tags: 1.6.10-alpine, 1.6-alpine, 1-alpine, alpine, 1.6.10-alpine3.14, 1.6-alpine3.14, 1-alpine3.14, alpine3.14
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
GitCommit: 1a01e364e20f571700e35e1ba8906a59ea4561b8
Directory: alpine

113
library/mongo Normal file
View File

@ -0,0 +1,113 @@
# 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.2-focal, 5.0-focal, 5-focal, focal
SharedTags: 5.0.2, 5.0, 5, latest
Architectures: amd64, arm64v8
GitCommit: 058b4d1eb2e7c083c16f458bd7ed519b079b1e70
Directory: 5.0
Tags: 5.0.2-windowsservercore-1809, 5.0-windowsservercore-1809, 5-windowsservercore-1809, windowsservercore-1809
SharedTags: 5.0.2-windowsservercore, 5.0-windowsservercore, 5-windowsservercore, windowsservercore, 5.0.2, 5.0, 5, latest
Architectures: windows-amd64
GitCommit: 058b4d1eb2e7c083c16f458bd7ed519b079b1e70
Directory: 5.0/windows/windowsservercore-1809
Constraints: windowsservercore-1809
Tags: 5.0.2-windowsservercore-ltsc2016, 5.0-windowsservercore-ltsc2016, 5-windowsservercore-ltsc2016, windowsservercore-ltsc2016
SharedTags: 5.0.2-windowsservercore, 5.0-windowsservercore, 5-windowsservercore, windowsservercore, 5.0.2, 5.0, 5, latest
Architectures: windows-amd64
GitCommit: 058b4d1eb2e7c083c16f458bd7ed519b079b1e70
Directory: 5.0/windows/windowsservercore-ltsc2016
Constraints: windowsservercore-ltsc2016
Tags: 5.0.2-nanoserver-1809, 5.0-nanoserver-1809, 5-nanoserver-1809, nanoserver-1809
SharedTags: 5.0.2-nanoserver, 5.0-nanoserver, 5-nanoserver, nanoserver
Architectures: windows-amd64
GitCommit: 058b4d1eb2e7c083c16f458bd7ed519b079b1e70
Directory: 5.0/windows/nanoserver-1809
Constraints: nanoserver-1809, windowsservercore-1809
Tags: 4.4.8-focal, 4.4-focal, 4-focal
SharedTags: 4.4.8, 4.4, 4
Architectures: amd64, arm64v8
GitCommit: f28b913c99f879903ebb0327b968a4adf27122dc
Directory: 4.4
Tags: 4.4.8-windowsservercore-1809, 4.4-windowsservercore-1809, 4-windowsservercore-1809
SharedTags: 4.4.8-windowsservercore, 4.4-windowsservercore, 4-windowsservercore, 4.4.8, 4.4, 4
Architectures: windows-amd64
GitCommit: f28b913c99f879903ebb0327b968a4adf27122dc
Directory: 4.4/windows/windowsservercore-1809
Constraints: windowsservercore-1809
Tags: 4.4.8-windowsservercore-ltsc2016, 4.4-windowsservercore-ltsc2016, 4-windowsservercore-ltsc2016
SharedTags: 4.4.8-windowsservercore, 4.4-windowsservercore, 4-windowsservercore, 4.4.8, 4.4, 4
Architectures: windows-amd64
GitCommit: f28b913c99f879903ebb0327b968a4adf27122dc
Directory: 4.4/windows/windowsservercore-ltsc2016
Constraints: windowsservercore-ltsc2016
Tags: 4.4.8-nanoserver-1809, 4.4-nanoserver-1809, 4-nanoserver-1809
SharedTags: 4.4.8-nanoserver, 4.4-nanoserver, 4-nanoserver
Architectures: windows-amd64
GitCommit: f28b913c99f879903ebb0327b968a4adf27122dc
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: c1f08e81d162ff5710181c5072402e809d0fdd5e
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.26-xenial, 4.0-xenial
SharedTags: 4.0.26, 4.0
Architectures: amd64, arm64v8
GitCommit: c1f08e81d162ff5710181c5072402e809d0fdd5e
Directory: 4.0
Tags: 4.0.26-windowsservercore-1809, 4.0-windowsservercore-1809
SharedTags: 4.0.26-windowsservercore, 4.0-windowsservercore, 4.0.26, 4.0
Architectures: windows-amd64
GitCommit: faee02920b450a4a66bddec8ce67f48f802cd012
Directory: 4.0/windows/windowsservercore-1809
Constraints: windowsservercore-1809
Tags: 4.0.26-windowsservercore-ltsc2016, 4.0-windowsservercore-ltsc2016
SharedTags: 4.0.26-windowsservercore, 4.0-windowsservercore, 4.0.26, 4.0
Architectures: windows-amd64
GitCommit: faee02920b450a4a66bddec8ce67f48f802cd012
Directory: 4.0/windows/windowsservercore-ltsc2016
Constraints: windowsservercore-ltsc2016
Tags: 4.0.26-nanoserver-1809, 4.0-nanoserver-1809
SharedTags: 4.0.26-nanoserver, 4.0-nanoserver
Architectures: windows-amd64
GitCommit: faee02920b450a4a66bddec8ce67f48f802cd012
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