Skip to content

Commit 2c38571

Browse files
authored
Merge branch 'docker-library:master' into master
2 parents 828bf1a + 8ef8b67 commit 2c38571

File tree

255 files changed

+5215
-3364
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

255 files changed

+5215
-3364
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
name: GitHub CI
22

3+
permissions:
4+
contents: read
5+
36
on:
47
pull_request:
58
push:
@@ -16,29 +19,29 @@ jobs:
1619
markdownfmt:
1720
runs-on: ubuntu-latest
1821
steps:
19-
- uses: actions/checkout@v2
22+
- uses: actions/checkout@v3
2023
- run: docker pull tianon/markdownfmt
2124
- run: .ci/check-markdownfmt.sh
2225
ymlfmt:
2326
runs-on: ubuntu-latest
2427
steps:
25-
- uses: actions/checkout@v2
28+
- uses: actions/checkout@v3
2629
- run: docker pull tianon/ymlfmt
2730
- run: .ci/check-ymlfmt.sh
2831
short:
2932
runs-on: ubuntu-latest
3033
steps:
31-
- uses: actions/checkout@v2
34+
- uses: actions/checkout@v3
3235
- run: .ci/check-short.sh
3336
required-files:
3437
runs-on: ubuntu-latest
3538
steps:
36-
- uses: actions/checkout@v2
39+
- uses: actions/checkout@v3
3740
- run: .ci/check-required-files.sh
3841
no-readme:
3942
runs-on: ubuntu-latest
4043
steps:
41-
- uses: actions/checkout@v2
44+
- uses: actions/checkout@v3
4245
with:
4346
fetch-depth: 0
4447
- run: .ci/check-pr-no-readme.sh

.template-helpers/generate-dockerfile-links-partial.tmpl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ This template defines the "Supported tags and Dockerfile links" portion of an im
2929
{{- $url := hasPrefix "https://github.com/" $repoUrlBase | ternary (join "/" $repoUrlBase "blob" $gitCommit $dockerfilePath) "" -}}
3030
{{- /* handle https://gitlab.../.../... style URLs (by reasonably assuming they're a gitlab instance) */ -}}
3131
{{- $url = $url | ternary $url (hasPrefix "https://gitlab." $repoUrlBase | ternary (join "/" $repoUrlBase "-/blob" $gitCommit $dockerfilePath) "") -}}
32+
{{- /* handle https://git.launchpad.net/ URLs */ -}}
33+
{{- $url = $url | ternary $url (hasPrefix "https://git.launchpad.net/" $repoUrlBase | ternary (print $repoUrlBase "/tree/" $dockerfilePath "?h=" ($e.ArchGitFetch $arch) "&id=" $gitCommit) "") -}}
3234
{{- /* TODO decide what to do (if anything) about other non-GitHub repos with respect to URL */ -}}
3335

3436
{{- if $i -}}
@@ -68,6 +70,8 @@ This template defines the "Supported tags and Dockerfile links" portion of an im
6870
{{- $url := hasPrefix "https://github.com/" $repoUrlBase | ternary (join "/" $repoUrlBase "blob" $gitCommit $dockerfilePath) "" -}}
6971
{{- /* handle https://gitlab.../.../... style URLs (by reasonably assuming they're a gitlab instance) */ -}}
7072
{{- $url = $url | ternary $url (hasPrefix "https://gitlab." $repoUrlBase | ternary (join "/" $repoUrlBase "-/blob" $gitCommit $dockerfilePath) "") -}}
73+
{{- /* handle https://git.launchpad.net/ URLs */ -}}
74+
{{- $url = $url | ternary $url (hasPrefix "https://git.launchpad.net/" $repoUrlBase | ternary (print $repoUrlBase "/tree/" $dockerfilePath "?h=" ($e.ArchGitFetch $arch) "&id=" $gitCommit) "") -}}
7175
{{- /* TODO decide what to do (if anything) about other non-GitHub repos with respect to URL */ -}}
7276

7377
{{- "\t-\t" -}}

.template-helpers/get-help.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
[the Docker Community Forums](https://forums.docker.com/), [the Docker Community Slack](https://dockr.ly/slack), or [Stack Overflow](https://stackoverflow.com/search?tab=newest&q=docker)
1+
[the Docker Community Slack](https://dockr.ly/comm-slack), [Server Fault](https://serverfault.com/help/on-topic), [Unix & Linux](https://unix.stackexchange.com/help/on-topic), or [Stack Overflow](https://stackoverflow.com/help/on-topic)

.template-helpers/variant.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ if [ -n "$text" ]; then
102102
default+=$'\n' # parameter expansion eats the trailing newline
103103

104104
if [ "$repo" != 'debian' ] && [ "$repo" != 'ubuntu' ]; then
105-
# what is 'jessie', 'stretch' and 'sid'
105+
# what is 'bullseye', 'buster' and 'sid'
106106
# https://github.com/docker-library/python/issues/343
107107
debian=( $(bashbrew list --uniq "$(_repo 'debian')" | grep -vE 'stable|slim|backports|experimental|testing' | cut -d: -f2) )
108108
ubuntu=( $(bashbrew list "$(_repo 'ubuntu')" | grep -vE 'devel|latest|[0-9]' | cut -d: -f2) )

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -55,20 +55,20 @@ After opening your Pull Request the changes will be checked by an automated `mar
5555

5656
# How do I add a new image's docs
5757

58-
- create a folder for my image: `mkdir myimage`
59-
- create a `README-short.txt` (required, 100 char max)
60-
- create a `content.md` (required)
61-
- create a `license.md` (required)
62-
- create a `maintainer.md` (required)
63-
- create a `github-repo` (required)
64-
- add a `logo.png` (recommended)
58+
- Create a folder for my image: `mkdir myimage`
59+
- Create a `README-short.txt` (required, 100 char max)
60+
- Create a `content.md` (required)
61+
- Create a `license.md` (required)
62+
- Create a `maintainer.md` (required)
63+
- Create a `github-repo` (required)
64+
- Add a `logo.png` (recommended)
6565

6666
Optionally:
6767

68-
- run `./markdownfmt.sh -l myimage` to list any files that are non-compliant to [`tianon/markdownfmt`](https://hub.docker.com/r/tianon/markdownfmt).
68+
- Run `./markdownfmt.sh -l myimage` to list any files that are non-compliant to [`tianon/markdownfmt`](https://hub.docker.com/r/tianon/markdownfmt).
6969
Any files in the list will result in a failed build during continuous integration.
7070
- run `./markdownfmt.sh -d myimage` to see a diff of changes required to pass.
71-
- run `./update.sh myimage` to generate `myimage/README.md` for manual review of the generated copy.
71+
- Run `./update.sh myimage` to generate `myimage/README.md` for manual review of the generated copy.
7272
**Note:** do not actually commit the `README.md` file; it is automatically generated/committed before being uploaded to Docker Hub.
7373

7474
# Files related to an image's docs
@@ -164,7 +164,7 @@ The scripts and Markdown files in here are used in building an image's `README.m
164164

165165
## `generate-repo-stub-readme.sh`
166166

167-
This is used to generate a simple `README.md` to put in the image's repo. We use this in Git repositories within https://github.com/docker-library to simplify our maintenance, but it is not required for anyone else. Argument is the name of the image, like `golang` and it then outputs the readme to standard out.
167+
This is used to generate a simple `README.md` to put in the image's repo. We use this in Git repositories within https://github.com/docker-library to simplify our maintenance, but it is not required for anyone else. The only argument is the name of the image (or repo), like `golang` and it then outputs the readme to standard out.
168168

169169
## `push.pl` and `push.sh`
170170

adminer/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ WARNING:
2020
[Tim Düsterhus (of the Docker Community)](https://github.com/TimWolla/docker-adminer)
2121

2222
- **Where to get help**:
23-
[the Docker Community Forums](https://forums.docker.com/), [the Docker Community Slack](https://dockr.ly/slack), or [Stack Overflow](https://stackoverflow.com/search?tab=newest&q=docker)
23+
[the Docker Community Slack](https://dockr.ly/comm-slack), [Server Fault](https://serverfault.com/help/on-topic), [Unix & Linux](https://unix.stackexchange.com/help/on-topic), or [Stack Overflow](https://stackoverflow.com/help/on-topic)
2424

2525
# Supported tags and respective `Dockerfile` links
2626

27-
- [`4.8.1-standalone`, `4-standalone`, `standalone`, `4.8.1`, `4`, `latest`](https://github.com/TimWolla/docker-adminer/blob/0f6d3781a93e274faaee2020b110b7bf701dc5da/4/Dockerfile)
28-
- [`4.8.1-fastcgi`, `4-fastcgi`, `fastcgi`](https://github.com/TimWolla/docker-adminer/blob/0f6d3781a93e274faaee2020b110b7bf701dc5da/4/fastcgi/Dockerfile)
27+
- [`4.8.1-standalone`, `4-standalone`, `standalone`, `4.8.1`, `4`, `latest`](https://github.com/TimWolla/docker-adminer/blob/655a0ba9445f62ee494bfe35be93e6730e7576af/4/Dockerfile)
28+
- [`4.8.1-fastcgi`, `4-fastcgi`, `fastcgi`](https://github.com/TimWolla/docker-adminer/blob/655a0ba9445f62ee494bfe35be93e6730e7576af/4/fastcgi/Dockerfile)
2929

3030
# Quick reference (cont.)
3131

aerospike/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ WARNING:
2020
[Aerospike, Inc.](https://github.com/aerospike/aerospike-server-enterprise.docker)
2121

2222
- **Where to get help**:
23-
[the Docker Community Forums](https://forums.docker.com/), [the Docker Community Slack](https://dockr.ly/slack), or [Stack Overflow](https://stackoverflow.com/search?tab=newest&q=docker)
23+
[the Docker Community Slack](https://dockr.ly/comm-slack), [Server Fault](https://serverfault.com/help/on-topic), [Unix & Linux](https://unix.stackexchange.com/help/on-topic), or [Stack Overflow](https://stackoverflow.com/help/on-topic)
2424

2525
# Supported tags and respective `Dockerfile` links
2626

27-
- [`ee-5.7.0.8`](https://github.com/aerospike/aerospike-server-enterprise.docker/blob/2d11fe93cec1c1adc86968a26b1b8827f61dc81f/Dockerfile)
28-
- [`ce-5.7.0.8`](https://github.com/aerospike/aerospike-server.docker/blob/9316b9e2dca468e2bbed08e12550f5d208447a14/Dockerfile)
27+
- [`ee-6.1.0.3`](https://github.com/aerospike/aerospike-server-enterprise.docker/blob/01871453aad7390a02a51dee11efe8e6a55f95cf/Dockerfile)
28+
- [`ce-6.1.0.3`](https://github.com/aerospike/aerospike-server.docker/blob/4557452ca88bcad1929e91bd303b522a1c242b12/Dockerfile)
2929

3030
# Quick reference (cont.)
3131

almalinux/README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,20 +20,22 @@ WARNING:
2020
[The AlmaLinux OS Foundation](https://github.com/AlmaLinux/docker-images)
2121

2222
- **Where to get help**:
23-
[the Docker Community Forums](https://forums.docker.com/), [the Docker Community Slack](https://dockr.ly/slack), or [Stack Overflow](https://stackoverflow.com/search?tab=newest&q=docker)
23+
[the Docker Community Slack](https://dockr.ly/comm-slack), [Server Fault](https://serverfault.com/help/on-topic), [Unix & Linux](https://unix.stackexchange.com/help/on-topic), or [Stack Overflow](https://stackoverflow.com/help/on-topic)
2424

2525
# Supported tags and respective `Dockerfile` links
2626

27-
- [`latest`, `8`, `8.5`, `8.5-20211112`](https://github.com/AlmaLinux/docker-images/blob/6e2df1f70f5c144198756f4be9a30e412e8bb065/Dockerfile)
28-
- [`minimal`, `8-minimal`, `8.5-minimal-20211112`](https://github.com/AlmaLinux/docker-images/blob/a5eb1823772e0154c96351879864d0badaf3c918/Dockerfile)
27+
- [`latest`, `8`, `8.7`, `8.7-20221110`](https://github.com/AlmaLinux/docker-images/blob/8ab8e4aa3c25e7836bf777dae31545da8fd477f1/Dockerfile-x86_64-default)
28+
- [`minimal`, `8-minimal`, `8.7-minimal`, `8.7-minimal-20221110`](https://github.com/AlmaLinux/docker-images/blob/8ab8e4aa3c25e7836bf777dae31545da8fd477f1/Dockerfile-x86_64-minimal)
29+
- [`9`, `9.1`, `9.1-20221117`](https://github.com/AlmaLinux/docker-images/blob/aaecb5417032a91f1eb3204d85cb7a41bd90025b/Dockerfile-x86_64-default)
30+
- [`9-minimal`, `9.1-minimal`, `9.1-minimal-20221117`](https://github.com/AlmaLinux/docker-images/blob/aaecb5417032a91f1eb3204d85cb7a41bd90025b/Dockerfile-x86_64-minimal)
2931

3032
# Quick reference (cont.)
3133

3234
- **Where to file issues**:
3335
[https://bugs.almalinux.org](https://bugs.almalinux.org) or [GitHub](https://github.com/AlmaLinux/docker-images/issues)
3436

3537
- **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64))
36-
[`amd64`](https://hub.docker.com/r/amd64/almalinux/), [`arm64v8`](https://hub.docker.com/r/arm64v8/almalinux/)
38+
[`amd64`](https://hub.docker.com/r/amd64/almalinux/), [`arm64v8`](https://hub.docker.com/r/arm64v8/almalinux/), [`ppc64le`](https://hub.docker.com/r/ppc64le/almalinux/), [`s390x`](https://hub.docker.com/r/s390x/almalinux/)
3739

3840
- **Published image artifact details**:
3941
[repo-info repo's `repos/almalinux/` directory](https://github.com/docker-library/repo-info/blob/master/repos/almalinux) ([history](https://github.com/docker-library/repo-info/commits/master/repos/almalinux))

alpine/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ WARNING:
2020
[Natanael Copa](https://github.com/alpinelinux/docker-alpine) (an Alpine Linux maintainer)
2121

2222
- **Where to get help**:
23-
[the Docker Community Forums](https://forums.docker.com/), [the Docker Community Slack](https://dockr.ly/slack), or [Stack Overflow](https://stackoverflow.com/search?tab=newest&q=docker)
23+
[the Docker Community Slack](https://dockr.ly/comm-slack), [Server Fault](https://serverfault.com/help/on-topic), [Unix & Linux](https://unix.stackexchange.com/help/on-topic), or [Stack Overflow](https://stackoverflow.com/help/on-topic)
2424

2525
# Supported tags and respective `Dockerfile` links
2626

27-
- [`20210804`, `edge`](https://github.com/alpinelinux/docker-alpine/blob/a29a148442aa2d6d13d3d87b224d058ec951ad46/x86_64/Dockerfile)
28-
- [`3.14.3`, `3.14`, `3`, `latest`](https://github.com/alpinelinux/docker-alpine/blob/b88b69a4da55c759a174176b9e8d1da8697fd709/x86_64/Dockerfile)
29-
- [`3.13.7`, `3.13`](https://github.com/alpinelinux/docker-alpine/blob/cdde2af5d054e84cb06f23bc99a1cf0827b25eff/x86_64/Dockerfile)
30-
- [`3.12.9`, `3.12`](https://github.com/alpinelinux/docker-alpine/blob/2793da4774fae12a67809b5956f6d70b02f99d79/x86_64/Dockerfile)
31-
- [`3.11.13`, `3.11`](https://github.com/alpinelinux/docker-alpine/blob/fd62af72be6e4a107fee6ac762dcf656503df075/x86_64/Dockerfile)
27+
- [`20221110`, `edge`](https://github.com/alpinelinux/docker-alpine/blob/7161d59eb68a7a2e71df7b4137c1c9403107d8a6/x86_64/Dockerfile)
28+
- [`3.17.0`, `3.17`, `3`, `latest`](https://github.com/alpinelinux/docker-alpine/blob/a791ed3b042cb15f4dda594dd2fb088dcb725542/x86_64/Dockerfile)
29+
- [`3.16.3`, `3.16`](https://github.com/alpinelinux/docker-alpine/blob/00e486941da9720adfdc82ac0144af73818ae732/x86_64/Dockerfile)
30+
- [`3.15.6`, `3.15`](https://github.com/alpinelinux/docker-alpine/blob/a9e802051a3a2ae7d6fdd32ff6f5b39e62240089/x86_64/Dockerfile)
31+
- [`3.14.8`, `3.14`](https://github.com/alpinelinux/docker-alpine/blob/a6c74aa475f4bc471e72f527db6256d8c3a52434/x86_64/Dockerfile)
3232

3333
# Quick reference (cont.)
3434

alt/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ WARNING:
2020
[The ALT Linux Team Cloud](https://github.com/alt-cloud/docker-brew-alt)
2121

2222
- **Where to get help**:
23-
[the Docker Community Forums](https://forums.docker.com/), [the Docker Community Slack](https://dockr.ly/slack), or [Stack Overflow](https://stackoverflow.com/search?tab=newest&q=docker)
23+
[the Docker Community Slack](https://dockr.ly/comm-slack), [Server Fault](https://serverfault.com/help/on-topic), [Unix & Linux](https://unix.stackexchange.com/help/on-topic), or [Stack Overflow](https://stackoverflow.com/help/on-topic)
2424

2525
# Supported tags and respective `Dockerfile` links
2626

27-
- [`p10`, `latest`](https://github.com/alt-cloud/docker-brew-alt/blob/1a75b1d52e2557c9661a3571c94010d9bed575f5/x86_64/Dockerfile)
28-
- [`p9`](https://github.com/alt-cloud/docker-brew-alt/blob/a7ea0d6982b84310d7dce8dcc6dc2d41e8b42be1/x86_64/Dockerfile)
29-
- [`sisyphus`](https://github.com/alt-cloud/docker-brew-alt/blob/7ed716e37ee5da61ea41588e454c326ce59ab06a/x86_64/Dockerfile)
27+
- [`p10`, `latest`](https://github.com/alt-cloud/docker-brew-alt/blob/b231d221f40d951338c30902735044a36bb1895f/x86_64/Dockerfile)
28+
- [`p9`](https://github.com/alt-cloud/docker-brew-alt/blob/fa873ac1d6ad83275982565b82b67b009969fd6a/x86_64/Dockerfile)
29+
- [`sisyphus`](https://github.com/alt-cloud/docker-brew-alt/blob/a7155b68c43e43d50c162e355946303abf76f7d8/x86_64/Dockerfile)
3030

3131
# Quick reference (cont.)
3232

0 commit comments

Comments
 (0)