Run update.sh

This commit is contained in:
Docker Library Bot 2021-05-03 14:09:54 -07:00
parent c2b05e6d07
commit 41654d83f0
9 changed files with 103 additions and 89 deletions

View File

@ -28,6 +28,8 @@ WARNING:
- [`ee-5.4.0.11`](https://github.com/aerospike/aerospike-server-enterprise.docker/blob/9d0da6851703f8b1bbc43b392af955055c578032/Dockerfile) - [`ee-5.4.0.11`](https://github.com/aerospike/aerospike-server-enterprise.docker/blob/9d0da6851703f8b1bbc43b392af955055c578032/Dockerfile)
- [`ee-5.5.0.9`, `latest`](https://github.com/aerospike/aerospike-server-enterprise.docker/blob/1f2f68dd54868659402d7f27cd26c4ec26dd964f/Dockerfile) - [`ee-5.5.0.9`, `latest`](https://github.com/aerospike/aerospike-server-enterprise.docker/blob/1f2f68dd54868659402d7f27cd26c4ec26dd964f/Dockerfile)
- [`ce-5.5.0.9`](https://github.com/aerospike/aerospike-server.docker/blob/7be1159a1714b9a11ae4c24c134f0762b903eca9/Dockerfile) - [`ce-5.5.0.9`](https://github.com/aerospike/aerospike-server.docker/blob/7be1159a1714b9a11ae4c24c134f0762b903eca9/Dockerfile)
- [`ce-5.4.0.11`](https://github.com/aerospike/aerospike-server.docker/blob/6a0955a11bac57cfdba9a80096e0fdf197419161/Dockerfile)
- [`ce-5.3.0.16`](https://github.com/aerospike/aerospike-server.docker/blob/c9e69ec4a5a3d079daa8948ad1e3dc33328b3870/Dockerfile)
# Quick reference (cont.) # Quick reference (cont.)
@ -48,7 +50,7 @@ WARNING:
- **Source of this description**: - **Source of this description**:
[docs repo's `aerospike/` directory](https://github.com/docker-library/docs/tree/master/aerospike) ([history](https://github.com/docker-library/docs/commits/master/aerospike)) [docs repo's `aerospike/` directory](https://github.com/docker-library/docs/tree/master/aerospike) ([history](https://github.com/docker-library/docs/commits/master/aerospike))
# Aerospike Enterprise Edition Docker Image # Aerospike Database Docker Images
## What is Aerospike? ## What is Aerospike?
@ -62,24 +64,32 @@ Aerospike Enterprise Edition requires a feature key file to start and to ungate
Anyone can [sign up](https://www.aerospike.com/lp/try-now/) to get an evaluation feature key file for a full-featured, single-node Aerospike Enterprise Edition. Anyone can [sign up](https://www.aerospike.com/lp/try-now/) to get an evaluation feature key file for a full-featured, single-node Aerospike Enterprise Edition.
### Running a node with a feature key file in a mapped directory Aerospike Community Edition supports the same developer APIs as Aerospike Enterprise Edition, and differs in ease of operation and enterprise features. See the [product matrix](https://www.aerospike.com/products/product-matrix/) for more.
### Running an Aerospike EE node with a feature key file in a mapped directory
```console ```console
docker run -d -v DIR:/opt/aerospike/etc/ -e "FEATURE_KEY_FILE=/opt/aerospike/etc/features.conf" --name aerospike -p 3000:3000 -p 3001:3001 -p 3002:3002 aerospike:ee-[version] docker run -d -v DIR:/opt/aerospike/etc/ -e "FEATURE_KEY_FILE=/opt/aerospike/etc/features.conf" --name aerospike -p 3000-3002:3000-3002 aerospike:ee-[version]
``` ```
Above, *DIR* is a directory on your machine where you drop your feature key file. Make sure Docker Desktop has file sharing permission to bind mount it into Docker containers. Above, *DIR* is a directory on your machine where you drop your feature key file. Make sure Docker Desktop has file sharing permission to bind mount it into Docker containers.
### Running a node with a feature key file in an environment variable ### Running an Aerospike EE node with a feature key file in a mapped directory
```console ```console
FEATKEY=$(base64 ~/Desktop/evaluation-features.conf) FEATKEY=$(base64 ~/Desktop/evaluation-features.conf)
docker run -d -e "FEATURES=$FEATKEY" -e "FEATURE_KEY_FILE=env-b64:FEATURES" --name aerospike -p 3000:3000 -p 3001:3001 -p 3002:3002 aerospike:ee-[version] docker run -d -e "FEATURES=$FEATKEY" -e "FEATURE_KEY_FILE=env-b64:FEATURES" --name aerospike -p 3000-3002:3000-3002 aerospike:ee-[version]
```
### Running an Aerospike CE node
```console
docker run -d --name aerospike -p 3000-3002:3000-3002 aerospike:ce-[version]
``` ```
## Advanced Configuration ## Advanced Configuration
The Aerospike EE Docker image has a default configuration file template that can be populated with individual configuration parameters, as we did before with `FEATURE_KEY_FILE`. Alternatively, it can be replaced with a custom configuration file. The Aerospike Docker image has a default configuration file template that can be populated with individual configuration parameters, as we did before with `FEATURE_KEY_FILE`. Alternatively, it can be replaced with a custom configuration file.
The following sections describe both advanced options. The following sections describe both advanced options.
@ -90,7 +100,7 @@ You can inject parameters into the configuration template using container-side e
For example, to set the default [namespace](https://www.aerospike.com/docs/architecture/data-model.html) name to *demo*: For example, to set the default [namespace](https://www.aerospike.com/docs/architecture/data-model.html) name to *demo*:
```console ```console
docker run -d --name aerospike -e "NAMESPACE=demo" -p 3000:3000 -p 3001:3001 -p 3002:3002 -v /my/dir:/opt/aerospike/etc/ -e "FEATURE_KEY_FILE=/opt/aerospike/etc/features.conf" aerospike:ee-[version] docker run -d --name aerospike -e "NAMESPACE=demo" -p 3000-3002:3000-3002 -v /my/dir:/opt/aerospike/etc/ -e "FEATURE_KEY_FILE=/opt/aerospike/etc/features.conf" aerospike:ee-[version]
``` ```
Injecting configuration parameters into the configuration template isn't compatible with using a custom configuration file. You can use one or the other. Injecting configuration parameters into the configuration template isn't compatible with using a custom configuration file. You can use one or the other.
@ -125,7 +135,7 @@ You should first `-v` map a local directory, which Docker will bind mount. Next,
For example: For example:
```console ```console
docker run -d -v /opt/aerospike/etc/:/opt/aerospike/etc/ --name aerospike -p 3000:3000 -p 3001:3001 -p 3002:3002 aerospike:ee-[version] --config-file /opt/aerospike/etc/aerospike.conf docker run -d -v /opt/aerospike/etc/:/opt/aerospike/etc/ --name aerospike-p 3000-3002:3000-3002 aerospike:ee-[version] --config-file /opt/aerospike/etc/aerospike.conf
``` ```
### Persistent Data Directory ### Persistent Data Directory
@ -135,7 +145,7 @@ With Docker, the files within the container are not persisted past the life of t
For example: For example:
```console ```console
docker run -d -v /opt/aerospike/data:/opt/aerospike/data -v /opt/aerospike/etc:/opt/aerospike/etc/ --name aerospike -p 3000:3000 -p 3001:3001 -p 3002:3002 -e "FEATURE_KEY_FILE=/opt/aerospike/etc/features.conf" aerospike:ee-[version] docker run -d -v /opt/aerospike/data:/opt/aerospike/data -v /opt/aerospike/etc:/opt/aerospike/etc/ --name aerospike -p 3000-3002:3000-3002 -e "FEATURE_KEY_FILE=/opt/aerospike/etc/features.conf" aerospike:ee-[version]
``` ```
The example above uses the configuration template, where the single defined namespace is in-memory with file-based persistence. Just mounting the predefined /opt/aerospike/data directory enables the data to be persisted on the host. The example above uses the configuration template, where the single defined namespace is in-memory with file-based persistence. Just mounting the predefined /opt/aerospike/data directory enables the data to be persisted on the host.
@ -154,7 +164,7 @@ Alternatively, a custom configuration file is used with the parameter `file` set
In this example we also mount the data directory in a similar way, using a custom configuration file. In this example we also mount the data directory in a similar way, using a custom configuration file.
```console ```console
docker run -d -v /opt/aerospike/data:/opt/aerospike/data -v /opt/aerospike/etc/:/opt/aerospike/etc/ --name aerospike -p 3000:3000 -p 3001:3001 -p 3002:3002 aerospike:ee-[version] --config-file /opt/aerospike/etc/aerospike.conf docker run -d -v /opt/aerospike/data:/opt/aerospike/data -v /opt/aerospike/etc/:/opt/aerospike/etc/ --name aerospike -p 3000-3002:3000-3002 aerospike:ee-[version] --config-file /opt/aerospike/etc/aerospike.conf
``` ```
### Block Storage ### Block Storage
@ -174,7 +184,7 @@ Update the `storage-engine device` section of the namespace in the custom aerosp
Now to map a host drive /dev/sdc to /dev/xvdc on a container Now to map a host drive /dev/sdc to /dev/xvdc on a container
```console ```console
docker run -d --device '/dev/sdc:/dev/xvdc' -v /opt/aerospike/etc/:/opt/aerospike/etc/ --name aerospike -p 3000:3000 -p 3001:3001 -p 3002:3002 aerospike:ee-[version] --config-file /opt/aerospike/etc/aerospike.conf docker run -d --device '/dev/sdc:/dev/xvdc' -v /opt/aerospike/etc/:/opt/aerospike/etc/ --name aerospike -p 3000-3002:3000-3002 aerospike:ee-[version] --config-file /opt/aerospike/etc/aerospike.conf
``` ```
### Persistent Lua Cache ### Persistent Lua Cache
@ -182,7 +192,7 @@ docker run -d --device '/dev/sdc:/dev/xvdc' -v /opt/aerospike/etc/:/opt/aerospik
Upon restart, your lua cache will become emptied. To persist the cache, you will want to mount a directory from the host to the container's `/opt/aerospike/usr/udf/lua` using the `-v` option: Upon restart, your lua cache will become emptied. To persist the cache, you will want to mount a directory from the host to the container's `/opt/aerospike/usr/udf/lua` using the `-v` option:
```sh ```sh
docker run -d -v /opt/aerospike/lua:/opt/aerospike/usr/udf/lua -v /opt/aerospike/data:/opt/aerospike/data --name aerospike -p 3000:3000 -p 3001:3001 -p 3002:3002 -e "FEATURE_KEY_FILE=/opt/etc/aerospike/features.conf" aerospike:ee-[version] docker run -d -v /opt/aerospike/lua:/opt/aerospike/usr/udf/lua -v /opt/aerospike/data:/opt/aerospike/data --name aerospike -p 3000-3002:3000-3002 -e "FEATURE_KEY_FILE=/opt/etc/aerospike/features.conf" aerospike:ee-[version]
``` ```
## Clustering ## Clustering
@ -213,12 +223,24 @@ For more, see [How do I get a 2 nodes Aerospike cluster running quickly in Docke
These images are based on [debian:strech-slim](https://hub.docker.com/_/debian). These images are based on [debian:strech-slim](https://hub.docker.com/_/debian).
### ee-[version]
These tags are for Aerospike EE images, and will require a feature key file, such as the one you get with the single-node EE evaluation, or one associated with a commercial enterprise license agreement.
### ce-[version]
These tags are for Aerospike CE images, and do not require a feature key file to start. As mentioned above, the developer API for both is the same, but the editions differ in operational features.
## Reporting Issues ## Reporting Issues
Aerospike EE evaluation users, if you have any problems with or questions about this image, please post on the [Aerospike discussion forum](https://discuss.aerospike.com) or open an issue in[aerospike/aerospike-server-enterprise.docker](https://github.com/aerospike/aerospike-server-enterprise.docker/issues). If you have any problems with or questions about this image, please post on the [Aerospike discussion forum](https://discuss.aerospike.com).
Enterprise customers are welcome to participate in the community forum, but can also report issues through the enterprise support system. Enterprise customers are welcome to participate in the community forum, but can also report issues through the enterprise support system.
Aerospike EE evaluation users can open an issue in [aerospike/aerospike-server-enterprise.docker](https://github.com/aerospike/aerospike-server-enterprise.docker/issues).
Aerospike CE users can open an issue in [aerospike/aerospike-server.docker](https://github.com/aerospike/aerospike-server.docker/issues).
# License # License
Copyright 2019-2021 Aerospike, Inc. Copyright 2019-2021 Aerospike, Inc.

View File

@ -24,8 +24,8 @@ WARNING:
# Supported tags and respective `Dockerfile` links # Supported tags and respective `Dockerfile` links
- [`latest`, `base`, `base-20210425.0.20608`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/d90390653741d84e557a6cbbb1d60738fdd4eee1/Dockerfile.base) - [`latest`, `base`, `base-20210502.0.21321`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/3300367f87e898f2a6ad278bb4084c4ea25bb30f/Dockerfile.base)
- [`base-devel`, `base-devel-20210425.0.20608`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/d90390653741d84e557a6cbbb1d60738fdd4eee1/Dockerfile.base-devel) - [`base-devel`, `base-devel-20210502.0.21321`](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/3300367f87e898f2a6ad278bb4084c4ea25bb30f/Dockerfile.base-devel)
# Quick reference (cont.) # Quick reference (cont.)
@ -69,6 +69,8 @@ This image is intended to serve the following goals:
- `pacman` needs to work out of the box - `pacman` needs to work out of the box
- All installed packages have to be kept unmodified - All installed packages have to be kept unmodified
> ⚠️⚠️⚠️ NOTE: For Security Reasons, these images strip the pacman lsign key. This is because the same key would be spread to all containers of the same image, allowing for malicious actors to inject packages (via, for example, a man-in-the-middle). In order to create an lsign-key run `pacman-key --init` on the first execution, but be careful to not redistribute that key. ⚠️⚠️⚠️
## Availability ## Availability
Root filesystem tarballs are [provided by our GitLab](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/releases) for at least two months. Root filesystem tarballs are [provided by our GitLab](https://gitlab.archlinux.org/archlinux/archlinux-docker/-/releases) for at least two months.

View File

@ -24,7 +24,7 @@ WARNING:
# Supported tags and respective `Dockerfile` links # Supported tags and respective `Dockerfile` links
- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/053d66913b6055fd64947f74e7b2c9daede7b4cc/Dockerfile) - [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/b155e09cc727f890848394426b59c6ce000b1072/Dockerfile)
# Quick reference (cont.) # Quick reference (cont.)

View File

@ -24,8 +24,8 @@ WARNING:
# Supported tags and respective `Dockerfile` links # Supported tags and respective `Dockerfile` links
- [`2.4-dev16`, `2.4-dev`](https://github.com/docker-library/haproxy/blob/787536c6d9ad19a63be432a411ae479133f083f7/2.4-rc/Dockerfile) - [`2.4-dev18`, `2.4-dev`](https://github.com/docker-library/haproxy/blob/f4a6a117947695082117106a5dcc13007e384951/2.4-rc/Dockerfile)
- [`2.4-dev16-alpine`, `2.4-dev-alpine`](https://github.com/docker-library/haproxy/blob/787536c6d9ad19a63be432a411ae479133f083f7/2.4-rc/alpine/Dockerfile) - [`2.4-dev18-alpine`, `2.4-dev-alpine`](https://github.com/docker-library/haproxy/blob/f4a6a117947695082117106a5dcc13007e384951/2.4-rc/alpine/Dockerfile)
- [`2.3.10`, `2.3`, `latest`](https://github.com/docker-library/haproxy/blob/db9335048c43b78fb4daec1ac9d7d171fc209d78/2.3/Dockerfile) - [`2.3.10`, `2.3`, `latest`](https://github.com/docker-library/haproxy/blob/db9335048c43b78fb4daec1ac9d7d171fc209d78/2.3/Dockerfile)
- [`2.3.10-alpine`, `2.3-alpine`, `alpine`](https://github.com/docker-library/haproxy/blob/db9335048c43b78fb4daec1ac9d7d171fc209d78/2.3/alpine/Dockerfile) - [`2.3.10-alpine`, `2.3-alpine`, `alpine`](https://github.com/docker-library/haproxy/blob/db9335048c43b78fb4daec1ac9d7d171fc209d78/2.3/alpine/Dockerfile)
- [`2.2.14`, `2.2`, `lts`](https://github.com/docker-library/haproxy/blob/99d68b7d5b3ec68cdfcb7e0cef173e054d491bcb/2.2/Dockerfile) - [`2.2.14`, `2.2`, `lts`](https://github.com/docker-library/haproxy/blob/99d68b7d5b3ec68cdfcb7e0cef173e054d491bcb/2.2/Dockerfile)

View File

@ -24,9 +24,9 @@ WARNING:
# Supported tags and respective `Dockerfile` links # Supported tags and respective `Dockerfile` links
- [`2.22.0-apache`, `2.22-apache`, `2-apache`, `apache`, `2.22.0`, `2.22`, `2`, `latest`](https://github.com/monicahq/docker/blob/58e3d7ac1610d85fdab3824c4054f71bc7372c9b/apache/Dockerfile) - [`3.0.0-apache`, `3.0-apache`, `3-apache`, `apache`, `3.0.0`, `3.0`, `3`, `latest`](https://github.com/monicahq/docker/blob/219154530e308d10d6dff32274ca1a8384c8f471/apache/Dockerfile)
- [`2.22.0-fpm`, `2.22-fpm`, `2-fpm`, `fpm`](https://github.com/monicahq/docker/blob/58e3d7ac1610d85fdab3824c4054f71bc7372c9b/fpm/Dockerfile) - [`3.0.0-fpm`, `3.0-fpm`, `3-fpm`, `fpm`](https://github.com/monicahq/docker/blob/219154530e308d10d6dff32274ca1a8384c8f471/fpm/Dockerfile)
- [`2.22.0-fpm-alpine`, `2.22-fpm-alpine`, `2-fpm-alpine`, `fpm-alpine`](https://github.com/monicahq/docker/blob/58e3d7ac1610d85fdab3824c4054f71bc7372c9b/fpm-alpine/Dockerfile) - [`3.0.0-fpm-alpine`, `3.0-fpm-alpine`, `3-fpm-alpine`, `fpm-alpine`](https://github.com/monicahq/docker/blob/219154530e308d10d6dff32274ca1a8384c8f471/fpm-alpine/Dockerfile)
# Quick reference (cont.) # Quick reference (cont.)

View File

@ -54,12 +54,6 @@ WARNING:
- [`12-buster-slim`, `12.22-buster-slim`, `12.22.1-buster-slim`, `erbium-buster-slim`](https://github.com/nodejs/docker-node/blob/31246f5f779cafa0930a1db04bd00d875d6a940d/12/buster-slim/Dockerfile) - [`12-buster-slim`, `12.22-buster-slim`, `12.22.1-buster-slim`, `erbium-buster-slim`](https://github.com/nodejs/docker-node/blob/31246f5f779cafa0930a1db04bd00d875d6a940d/12/buster-slim/Dockerfile)
- [`12`, `12-stretch`, `12.22`, `12.22-stretch`, `12.22.1`, `12.22.1-stretch`, `erbium`, `erbium-stretch`](https://github.com/nodejs/docker-node/blob/31246f5f779cafa0930a1db04bd00d875d6a940d/12/stretch/Dockerfile) - [`12`, `12-stretch`, `12.22`, `12.22-stretch`, `12.22.1`, `12.22.1-stretch`, `erbium`, `erbium-stretch`](https://github.com/nodejs/docker-node/blob/31246f5f779cafa0930a1db04bd00d875d6a940d/12/stretch/Dockerfile)
- [`12-slim`, `12-stretch-slim`, `12.22-slim`, `12.22-stretch-slim`, `12.22.1-slim`, `12.22.1-stretch-slim`, `erbium-slim`, `erbium-stretch-slim`](https://github.com/nodejs/docker-node/blob/31246f5f779cafa0930a1db04bd00d875d6a940d/12/stretch-slim/Dockerfile) - [`12-slim`, `12-stretch-slim`, `12.22-slim`, `12.22-stretch-slim`, `12.22.1-slim`, `12.22.1-stretch-slim`, `erbium-slim`, `erbium-stretch-slim`](https://github.com/nodejs/docker-node/blob/31246f5f779cafa0930a1db04bd00d875d6a940d/12/stretch-slim/Dockerfile)
- [`10-alpine3.10`, `10.24-alpine3.10`, `10.24.1-alpine3.10`, `dubnium-alpine3.10`](https://github.com/nodejs/docker-node/blob/31246f5f779cafa0930a1db04bd00d875d6a940d/10/alpine3.10/Dockerfile)
- [`10-alpine`, `10-alpine3.11`, `10.24-alpine`, `10.24-alpine3.11`, `10.24.1-alpine`, `10.24.1-alpine3.11`, `dubnium-alpine`, `dubnium-alpine3.11`](https://github.com/nodejs/docker-node/blob/31246f5f779cafa0930a1db04bd00d875d6a940d/10/alpine3.11/Dockerfile)
- [`10-buster`, `10.24-buster`, `10.24.1-buster`, `dubnium-buster`](https://github.com/nodejs/docker-node/blob/31246f5f779cafa0930a1db04bd00d875d6a940d/10/buster/Dockerfile)
- [`10-buster-slim`, `10.24-buster-slim`, `10.24.1-buster-slim`, `dubnium-buster-slim`](https://github.com/nodejs/docker-node/blob/31246f5f779cafa0930a1db04bd00d875d6a940d/10/buster-slim/Dockerfile)
- [`10`, `10-stretch`, `10.24`, `10.24-stretch`, `10.24.1`, `10.24.1-stretch`, `dubnium`, `dubnium-stretch`](https://github.com/nodejs/docker-node/blob/31246f5f779cafa0930a1db04bd00d875d6a940d/10/stretch/Dockerfile)
- [`10-slim`, `10-stretch-slim`, `10.24-slim`, `10.24-stretch-slim`, `10.24.1-slim`, `10.24.1-stretch-slim`, `dubnium-slim`, `dubnium-stretch-slim`](https://github.com/nodejs/docker-node/blob/31246f5f779cafa0930a1db04bd00d875d6a940d/10/stretch-slim/Dockerfile)
# Quick reference (cont.) # Quick reference (cont.)
@ -67,7 +61,7 @@ WARNING:
[https://github.com/nodejs/docker-node/issues](https://github.com/nodejs/docker-node/issues) [https://github.com/nodejs/docker-node/issues](https://github.com/nodejs/docker-node/issues)
- **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64)) - **Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64))
[`amd64`](https://hub.docker.com/r/amd64/node/), [`arm32v6`](https://hub.docker.com/r/arm32v6/node/), [`arm32v7`](https://hub.docker.com/r/arm32v7/node/), [`arm64v8`](https://hub.docker.com/r/arm64v8/node/), [`i386`](https://hub.docker.com/r/i386/node/), [`ppc64le`](https://hub.docker.com/r/ppc64le/node/), [`s390x`](https://hub.docker.com/r/s390x/node/) [`amd64`](https://hub.docker.com/r/amd64/node/), [`arm32v6`](https://hub.docker.com/r/arm32v6/node/), [`arm32v7`](https://hub.docker.com/r/arm32v7/node/), [`arm64v8`](https://hub.docker.com/r/arm64v8/node/), [`ppc64le`](https://hub.docker.com/r/ppc64le/node/), [`s390x`](https://hub.docker.com/r/s390x/node/)
- **Published image artifact details**: - **Published image artifact details**:
[repo-info repo's `repos/node/` directory](https://github.com/docker-library/repo-info/blob/master/repos/node) ([history](https://github.com/docker-library/repo-info/commits/master/repos/node)) [repo-info repo's `repos/node/` directory](https://github.com/docker-library/repo-info/blob/master/repos/node) ([history](https://github.com/docker-library/repo-info/commits/master/repos/node))

View File

@ -28,64 +28,64 @@ WARNING:
## Simple Tags ## Simple Tags
- [`3.10.0a7-buster`, `3.10-rc-buster`, `rc-buster`](https://github.com/docker-library/python/blob/83b7e0cf623605178c0e7c42ee81fe758fc7e6f1/3.10-rc/buster/Dockerfile) - [`3.10.0a7-buster`, `3.10-rc-buster`, `rc-buster`](https://github.com/docker-library/python/blob/85243ed55bf395fabc845d8b92d9b78324fc2d81/3.10-rc/buster/Dockerfile)
- [`3.10.0a7-slim-buster`, `3.10-rc-slim-buster`, `rc-slim-buster`, `3.10.0a7-slim`, `3.10-rc-slim`, `rc-slim`](https://github.com/docker-library/python/blob/83b7e0cf623605178c0e7c42ee81fe758fc7e6f1/3.10-rc/buster/slim/Dockerfile) - [`3.10.0a7-slim-buster`, `3.10-rc-slim-buster`, `rc-slim-buster`, `3.10.0a7-slim`, `3.10-rc-slim`, `rc-slim`](https://github.com/docker-library/python/blob/85243ed55bf395fabc845d8b92d9b78324fc2d81/3.10-rc/buster/slim/Dockerfile)
- [`3.10.0a7-alpine3.13`, `3.10-rc-alpine3.13`, `rc-alpine3.13`, `3.10.0a7-alpine`, `3.10-rc-alpine`, `rc-alpine`](https://github.com/docker-library/python/blob/83b7e0cf623605178c0e7c42ee81fe758fc7e6f1/3.10-rc/alpine3.13/Dockerfile) - [`3.10.0a7-alpine3.13`, `3.10-rc-alpine3.13`, `rc-alpine3.13`, `3.10.0a7-alpine`, `3.10-rc-alpine`, `rc-alpine`](https://github.com/docker-library/python/blob/85243ed55bf395fabc845d8b92d9b78324fc2d81/3.10-rc/alpine3.13/Dockerfile)
- [`3.10.0a7-alpine3.12`, `3.10-rc-alpine3.12`, `rc-alpine3.12`](https://github.com/docker-library/python/blob/83b7e0cf623605178c0e7c42ee81fe758fc7e6f1/3.10-rc/alpine3.12/Dockerfile) - [`3.10.0a7-alpine3.12`, `3.10-rc-alpine3.12`, `rc-alpine3.12`](https://github.com/docker-library/python/blob/85243ed55bf395fabc845d8b92d9b78324fc2d81/3.10-rc/alpine3.12/Dockerfile)
- [`3.10.0a7-windowsservercore-1809`, `3.10-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/83b7e0cf623605178c0e7c42ee81fe758fc7e6f1/3.10-rc/windows/windowsservercore-1809/Dockerfile) - [`3.10.0a7-windowsservercore-1809`, `3.10-rc-windowsservercore-1809`, `rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/85243ed55bf395fabc845d8b92d9b78324fc2d81/3.10-rc/windows/windowsservercore-1809/Dockerfile)
- [`3.10.0a7-windowsservercore-ltsc2016`, `3.10-rc-windowsservercore-ltsc2016`, `rc-windowsservercore-ltsc2016`](https://github.com/docker-library/python/blob/83b7e0cf623605178c0e7c42ee81fe758fc7e6f1/3.10-rc/windows/windowsservercore-ltsc2016/Dockerfile) - [`3.10.0a7-windowsservercore-ltsc2016`, `3.10-rc-windowsservercore-ltsc2016`, `rc-windowsservercore-ltsc2016`](https://github.com/docker-library/python/blob/85243ed55bf395fabc845d8b92d9b78324fc2d81/3.10-rc/windows/windowsservercore-ltsc2016/Dockerfile)
- [`3.9.4-buster`, `3.9-buster`, `3-buster`, `buster`](https://github.com/docker-library/python/blob/d9ab222fcd828888b102e3581c03931eac344097/3.9/buster/Dockerfile) - [`3.9.4-buster`, `3.9-buster`, `3-buster`, `buster`](https://github.com/docker-library/python/blob/f603cd73be1c57763191b6a9d324cb16e5c38f0d/3.9/buster/Dockerfile)
- [`3.9.4-slim-buster`, `3.9-slim-buster`, `3-slim-buster`, `slim-buster`, `3.9.4-slim`, `3.9-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/d9ab222fcd828888b102e3581c03931eac344097/3.9/buster/slim/Dockerfile) - [`3.9.4-slim-buster`, `3.9-slim-buster`, `3-slim-buster`, `slim-buster`, `3.9.4-slim`, `3.9-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/f603cd73be1c57763191b6a9d324cb16e5c38f0d/3.9/buster/slim/Dockerfile)
- [`3.9.4-alpine3.13`, `3.9-alpine3.13`, `3-alpine3.13`, `alpine3.13`, `3.9.4-alpine`, `3.9-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/d9ab222fcd828888b102e3581c03931eac344097/3.9/alpine3.13/Dockerfile) - [`3.9.4-alpine3.13`, `3.9-alpine3.13`, `3-alpine3.13`, `alpine3.13`, `3.9.4-alpine`, `3.9-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/f603cd73be1c57763191b6a9d324cb16e5c38f0d/3.9/alpine3.13/Dockerfile)
- [`3.9.4-alpine3.12`, `3.9-alpine3.12`, `3-alpine3.12`, `alpine3.12`](https://github.com/docker-library/python/blob/d9ab222fcd828888b102e3581c03931eac344097/3.9/alpine3.12/Dockerfile) - [`3.9.4-alpine3.12`, `3.9-alpine3.12`, `3-alpine3.12`, `alpine3.12`](https://github.com/docker-library/python/blob/f603cd73be1c57763191b6a9d324cb16e5c38f0d/3.9/alpine3.12/Dockerfile)
- [`3.9.4-windowsservercore-1809`, `3.9-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/d9ab222fcd828888b102e3581c03931eac344097/3.9/windows/windowsservercore-1809/Dockerfile) - [`3.9.4-windowsservercore-1809`, `3.9-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/f603cd73be1c57763191b6a9d324cb16e5c38f0d/3.9/windows/windowsservercore-1809/Dockerfile)
- [`3.9.4-windowsservercore-ltsc2016`, `3.9-windowsservercore-ltsc2016`, `3-windowsservercore-ltsc2016`, `windowsservercore-ltsc2016`](https://github.com/docker-library/python/blob/d9ab222fcd828888b102e3581c03931eac344097/3.9/windows/windowsservercore-ltsc2016/Dockerfile) - [`3.9.4-windowsservercore-ltsc2016`, `3.9-windowsservercore-ltsc2016`, `3-windowsservercore-ltsc2016`, `windowsservercore-ltsc2016`](https://github.com/docker-library/python/blob/f603cd73be1c57763191b6a9d324cb16e5c38f0d/3.9/windows/windowsservercore-ltsc2016/Dockerfile)
- [`3.8.9-buster`, `3.8-buster`](https://github.com/docker-library/python/blob/2bfae5e680d7d2c617cca513c6a495b2865543ab/3.8/buster/Dockerfile) - [`3.8.9-buster`, `3.8-buster`](https://github.com/docker-library/python/blob/4f369cb094aa14eeea49d63747dfad6770b894d4/3.8/buster/Dockerfile)
- [`3.8.9-slim-buster`, `3.8-slim-buster`, `3.8.9-slim`, `3.8-slim`](https://github.com/docker-library/python/blob/2bfae5e680d7d2c617cca513c6a495b2865543ab/3.8/buster/slim/Dockerfile) - [`3.8.9-slim-buster`, `3.8-slim-buster`, `3.8.9-slim`, `3.8-slim`](https://github.com/docker-library/python/blob/4f369cb094aa14eeea49d63747dfad6770b894d4/3.8/buster/slim/Dockerfile)
- [`3.8.9-alpine3.13`, `3.8-alpine3.13`, `3.8.9-alpine`, `3.8-alpine`](https://github.com/docker-library/python/blob/2bfae5e680d7d2c617cca513c6a495b2865543ab/3.8/alpine3.13/Dockerfile) - [`3.8.9-alpine3.13`, `3.8-alpine3.13`, `3.8.9-alpine`, `3.8-alpine`](https://github.com/docker-library/python/blob/4f369cb094aa14eeea49d63747dfad6770b894d4/3.8/alpine3.13/Dockerfile)
- [`3.8.9-alpine3.12`, `3.8-alpine3.12`](https://github.com/docker-library/python/blob/2bfae5e680d7d2c617cca513c6a495b2865543ab/3.8/alpine3.12/Dockerfile) - [`3.8.9-alpine3.12`, `3.8-alpine3.12`](https://github.com/docker-library/python/blob/4f369cb094aa14eeea49d63747dfad6770b894d4/3.8/alpine3.12/Dockerfile)
- [`3.8.9-windowsservercore-1809`, `3.8-windowsservercore-1809`](https://github.com/docker-library/python/blob/2bfae5e680d7d2c617cca513c6a495b2865543ab/3.8/windows/windowsservercore-1809/Dockerfile) - [`3.8.9-windowsservercore-1809`, `3.8-windowsservercore-1809`](https://github.com/docker-library/python/blob/4f369cb094aa14eeea49d63747dfad6770b894d4/3.8/windows/windowsservercore-1809/Dockerfile)
- [`3.8.9-windowsservercore-ltsc2016`, `3.8-windowsservercore-ltsc2016`](https://github.com/docker-library/python/blob/2bfae5e680d7d2c617cca513c6a495b2865543ab/3.8/windows/windowsservercore-ltsc2016/Dockerfile) - [`3.8.9-windowsservercore-ltsc2016`, `3.8-windowsservercore-ltsc2016`](https://github.com/docker-library/python/blob/4f369cb094aa14eeea49d63747dfad6770b894d4/3.8/windows/windowsservercore-ltsc2016/Dockerfile)
- [`3.7.10-buster`, `3.7-buster`](https://github.com/docker-library/python/blob/584c16017fee70be9174a3e39f30d8e01b48e5e1/3.7/buster/Dockerfile) - [`3.7.10-buster`, `3.7-buster`](https://github.com/docker-library/python/blob/117d4e375b86cdbe1853930478d0d07d7d5701f7/3.7/buster/Dockerfile)
- [`3.7.10-slim-buster`, `3.7-slim-buster`, `3.7.10-slim`, `3.7-slim`](https://github.com/docker-library/python/blob/584c16017fee70be9174a3e39f30d8e01b48e5e1/3.7/buster/slim/Dockerfile) - [`3.7.10-slim-buster`, `3.7-slim-buster`, `3.7.10-slim`, `3.7-slim`](https://github.com/docker-library/python/blob/117d4e375b86cdbe1853930478d0d07d7d5701f7/3.7/buster/slim/Dockerfile)
- [`3.7.10-stretch`, `3.7-stretch`](https://github.com/docker-library/python/blob/584c16017fee70be9174a3e39f30d8e01b48e5e1/3.7/stretch/Dockerfile) - [`3.7.10-stretch`, `3.7-stretch`](https://github.com/docker-library/python/blob/117d4e375b86cdbe1853930478d0d07d7d5701f7/3.7/stretch/Dockerfile)
- [`3.7.10-slim-stretch`, `3.7-slim-stretch`](https://github.com/docker-library/python/blob/584c16017fee70be9174a3e39f30d8e01b48e5e1/3.7/stretch/slim/Dockerfile) - [`3.7.10-slim-stretch`, `3.7-slim-stretch`](https://github.com/docker-library/python/blob/117d4e375b86cdbe1853930478d0d07d7d5701f7/3.7/stretch/slim/Dockerfile)
- [`3.7.10-alpine3.13`, `3.7-alpine3.13`, `3.7.10-alpine`, `3.7-alpine`](https://github.com/docker-library/python/blob/584c16017fee70be9174a3e39f30d8e01b48e5e1/3.7/alpine3.13/Dockerfile) - [`3.7.10-alpine3.13`, `3.7-alpine3.13`, `3.7.10-alpine`, `3.7-alpine`](https://github.com/docker-library/python/blob/117d4e375b86cdbe1853930478d0d07d7d5701f7/3.7/alpine3.13/Dockerfile)
- [`3.7.10-alpine3.12`, `3.7-alpine3.12`](https://github.com/docker-library/python/blob/584c16017fee70be9174a3e39f30d8e01b48e5e1/3.7/alpine3.12/Dockerfile) - [`3.7.10-alpine3.12`, `3.7-alpine3.12`](https://github.com/docker-library/python/blob/117d4e375b86cdbe1853930478d0d07d7d5701f7/3.7/alpine3.12/Dockerfile)
- [`3.6.13-buster`, `3.6-buster`](https://github.com/docker-library/python/blob/96d07a4336438bd24e3e5afa5ed76b096c720f18/3.6/buster/Dockerfile) - [`3.6.13-buster`, `3.6-buster`](https://github.com/docker-library/python/blob/7f89b4569a7241872574a7d34c9c16942637d141/3.6/buster/Dockerfile)
- [`3.6.13-slim-buster`, `3.6-slim-buster`, `3.6.13-slim`, `3.6-slim`](https://github.com/docker-library/python/blob/96d07a4336438bd24e3e5afa5ed76b096c720f18/3.6/buster/slim/Dockerfile) - [`3.6.13-slim-buster`, `3.6-slim-buster`, `3.6.13-slim`, `3.6-slim`](https://github.com/docker-library/python/blob/7f89b4569a7241872574a7d34c9c16942637d141/3.6/buster/slim/Dockerfile)
- [`3.6.13-stretch`, `3.6-stretch`](https://github.com/docker-library/python/blob/96d07a4336438bd24e3e5afa5ed76b096c720f18/3.6/stretch/Dockerfile) - [`3.6.13-stretch`, `3.6-stretch`](https://github.com/docker-library/python/blob/7f89b4569a7241872574a7d34c9c16942637d141/3.6/stretch/Dockerfile)
- [`3.6.13-slim-stretch`, `3.6-slim-stretch`](https://github.com/docker-library/python/blob/96d07a4336438bd24e3e5afa5ed76b096c720f18/3.6/stretch/slim/Dockerfile) - [`3.6.13-slim-stretch`, `3.6-slim-stretch`](https://github.com/docker-library/python/blob/7f89b4569a7241872574a7d34c9c16942637d141/3.6/stretch/slim/Dockerfile)
- [`3.6.13-alpine3.13`, `3.6-alpine3.13`, `3.6.13-alpine`, `3.6-alpine`](https://github.com/docker-library/python/blob/96d07a4336438bd24e3e5afa5ed76b096c720f18/3.6/alpine3.13/Dockerfile) - [`3.6.13-alpine3.13`, `3.6-alpine3.13`, `3.6.13-alpine`, `3.6-alpine`](https://github.com/docker-library/python/blob/7f89b4569a7241872574a7d34c9c16942637d141/3.6/alpine3.13/Dockerfile)
- [`3.6.13-alpine3.12`, `3.6-alpine3.12`](https://github.com/docker-library/python/blob/96d07a4336438bd24e3e5afa5ed76b096c720f18/3.6/alpine3.12/Dockerfile) - [`3.6.13-alpine3.12`, `3.6-alpine3.12`](https://github.com/docker-library/python/blob/7f89b4569a7241872574a7d34c9c16942637d141/3.6/alpine3.12/Dockerfile)
## Shared Tags ## Shared Tags
- `3.10.0a7`, `3.10-rc`, `rc`: - `3.10.0a7`, `3.10-rc`, `rc`:
- [`3.10.0a7-buster`](https://github.com/docker-library/python/blob/83b7e0cf623605178c0e7c42ee81fe758fc7e6f1/3.10-rc/buster/Dockerfile) - [`3.10.0a7-buster`](https://github.com/docker-library/python/blob/85243ed55bf395fabc845d8b92d9b78324fc2d81/3.10-rc/buster/Dockerfile)
- [`3.10.0a7-windowsservercore-1809`](https://github.com/docker-library/python/blob/83b7e0cf623605178c0e7c42ee81fe758fc7e6f1/3.10-rc/windows/windowsservercore-1809/Dockerfile) - [`3.10.0a7-windowsservercore-1809`](https://github.com/docker-library/python/blob/85243ed55bf395fabc845d8b92d9b78324fc2d81/3.10-rc/windows/windowsservercore-1809/Dockerfile)
- [`3.10.0a7-windowsservercore-ltsc2016`](https://github.com/docker-library/python/blob/83b7e0cf623605178c0e7c42ee81fe758fc7e6f1/3.10-rc/windows/windowsservercore-ltsc2016/Dockerfile) - [`3.10.0a7-windowsservercore-ltsc2016`](https://github.com/docker-library/python/blob/85243ed55bf395fabc845d8b92d9b78324fc2d81/3.10-rc/windows/windowsservercore-ltsc2016/Dockerfile)
- `3.10.0a7-windowsservercore`, `3.10-rc-windowsservercore`, `rc-windowsservercore`: - `3.10.0a7-windowsservercore`, `3.10-rc-windowsservercore`, `rc-windowsservercore`:
- [`3.10.0a7-windowsservercore-1809`](https://github.com/docker-library/python/blob/83b7e0cf623605178c0e7c42ee81fe758fc7e6f1/3.10-rc/windows/windowsservercore-1809/Dockerfile) - [`3.10.0a7-windowsservercore-1809`](https://github.com/docker-library/python/blob/85243ed55bf395fabc845d8b92d9b78324fc2d81/3.10-rc/windows/windowsservercore-1809/Dockerfile)
- [`3.10.0a7-windowsservercore-ltsc2016`](https://github.com/docker-library/python/blob/83b7e0cf623605178c0e7c42ee81fe758fc7e6f1/3.10-rc/windows/windowsservercore-ltsc2016/Dockerfile) - [`3.10.0a7-windowsservercore-ltsc2016`](https://github.com/docker-library/python/blob/85243ed55bf395fabc845d8b92d9b78324fc2d81/3.10-rc/windows/windowsservercore-ltsc2016/Dockerfile)
- `3.9.4`, `3.9`, `3`, `latest`: - `3.9.4`, `3.9`, `3`, `latest`:
- [`3.9.4-buster`](https://github.com/docker-library/python/blob/d9ab222fcd828888b102e3581c03931eac344097/3.9/buster/Dockerfile) - [`3.9.4-buster`](https://github.com/docker-library/python/blob/f603cd73be1c57763191b6a9d324cb16e5c38f0d/3.9/buster/Dockerfile)
- [`3.9.4-windowsservercore-1809`](https://github.com/docker-library/python/blob/d9ab222fcd828888b102e3581c03931eac344097/3.9/windows/windowsservercore-1809/Dockerfile) - [`3.9.4-windowsservercore-1809`](https://github.com/docker-library/python/blob/f603cd73be1c57763191b6a9d324cb16e5c38f0d/3.9/windows/windowsservercore-1809/Dockerfile)
- [`3.9.4-windowsservercore-ltsc2016`](https://github.com/docker-library/python/blob/d9ab222fcd828888b102e3581c03931eac344097/3.9/windows/windowsservercore-ltsc2016/Dockerfile) - [`3.9.4-windowsservercore-ltsc2016`](https://github.com/docker-library/python/blob/f603cd73be1c57763191b6a9d324cb16e5c38f0d/3.9/windows/windowsservercore-ltsc2016/Dockerfile)
- `3.9.4-windowsservercore`, `3.9-windowsservercore`, `3-windowsservercore`, `windowsservercore`: - `3.9.4-windowsservercore`, `3.9-windowsservercore`, `3-windowsservercore`, `windowsservercore`:
- [`3.9.4-windowsservercore-1809`](https://github.com/docker-library/python/blob/d9ab222fcd828888b102e3581c03931eac344097/3.9/windows/windowsservercore-1809/Dockerfile) - [`3.9.4-windowsservercore-1809`](https://github.com/docker-library/python/blob/f603cd73be1c57763191b6a9d324cb16e5c38f0d/3.9/windows/windowsservercore-1809/Dockerfile)
- [`3.9.4-windowsservercore-ltsc2016`](https://github.com/docker-library/python/blob/d9ab222fcd828888b102e3581c03931eac344097/3.9/windows/windowsservercore-ltsc2016/Dockerfile) - [`3.9.4-windowsservercore-ltsc2016`](https://github.com/docker-library/python/blob/f603cd73be1c57763191b6a9d324cb16e5c38f0d/3.9/windows/windowsservercore-ltsc2016/Dockerfile)
- `3.8.9`, `3.8`: - `3.8.9`, `3.8`:
- [`3.8.9-buster`](https://github.com/docker-library/python/blob/2bfae5e680d7d2c617cca513c6a495b2865543ab/3.8/buster/Dockerfile) - [`3.8.9-buster`](https://github.com/docker-library/python/blob/4f369cb094aa14eeea49d63747dfad6770b894d4/3.8/buster/Dockerfile)
- [`3.8.9-windowsservercore-1809`](https://github.com/docker-library/python/blob/2bfae5e680d7d2c617cca513c6a495b2865543ab/3.8/windows/windowsservercore-1809/Dockerfile) - [`3.8.9-windowsservercore-1809`](https://github.com/docker-library/python/blob/4f369cb094aa14eeea49d63747dfad6770b894d4/3.8/windows/windowsservercore-1809/Dockerfile)
- [`3.8.9-windowsservercore-ltsc2016`](https://github.com/docker-library/python/blob/2bfae5e680d7d2c617cca513c6a495b2865543ab/3.8/windows/windowsservercore-ltsc2016/Dockerfile) - [`3.8.9-windowsservercore-ltsc2016`](https://github.com/docker-library/python/blob/4f369cb094aa14eeea49d63747dfad6770b894d4/3.8/windows/windowsservercore-ltsc2016/Dockerfile)
- `3.8.9-windowsservercore`, `3.8-windowsservercore`: - `3.8.9-windowsservercore`, `3.8-windowsservercore`:
- [`3.8.9-windowsservercore-1809`](https://github.com/docker-library/python/blob/2bfae5e680d7d2c617cca513c6a495b2865543ab/3.8/windows/windowsservercore-1809/Dockerfile) - [`3.8.9-windowsservercore-1809`](https://github.com/docker-library/python/blob/4f369cb094aa14eeea49d63747dfad6770b894d4/3.8/windows/windowsservercore-1809/Dockerfile)
- [`3.8.9-windowsservercore-ltsc2016`](https://github.com/docker-library/python/blob/2bfae5e680d7d2c617cca513c6a495b2865543ab/3.8/windows/windowsservercore-ltsc2016/Dockerfile) - [`3.8.9-windowsservercore-ltsc2016`](https://github.com/docker-library/python/blob/4f369cb094aa14eeea49d63747dfad6770b894d4/3.8/windows/windowsservercore-ltsc2016/Dockerfile)
- `3.7.10`, `3.7`: - `3.7.10`, `3.7`:
- [`3.7.10-buster`](https://github.com/docker-library/python/blob/584c16017fee70be9174a3e39f30d8e01b48e5e1/3.7/buster/Dockerfile) - [`3.7.10-buster`](https://github.com/docker-library/python/blob/117d4e375b86cdbe1853930478d0d07d7d5701f7/3.7/buster/Dockerfile)
- `3.6.13`, `3.6`: - `3.6.13`, `3.6`:
- [`3.6.13-buster`](https://github.com/docker-library/python/blob/96d07a4336438bd24e3e5afa5ed76b096c720f18/3.6/buster/Dockerfile) - [`3.6.13-buster`](https://github.com/docker-library/python/blob/7f89b4569a7241872574a7d34c9c16942637d141/3.6/buster/Dockerfile)
# Quick reference (cont.) # Quick reference (cont.)

View File

@ -24,14 +24,10 @@ WARNING:
# Supported tags and respective `Dockerfile` links # Supported tags and respective `Dockerfile` links
- [`3.8.15-rc.3`, `3.8-rc`](https://github.com/docker-library/rabbitmq/blob/fcb9d26a671581a665e257aa8b7a1ea0dff5344a/3.8-rc/ubuntu/Dockerfile) - [`3.8.15`, `3.8`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/cefa168001245c0d4a8af8aae988bbe5506bb03f/3.8/ubuntu/Dockerfile)
- [`3.8.15-rc.3-management`, `3.8-rc-management`](https://github.com/docker-library/rabbitmq/blob/7e63843da6bfb191ddee6dbe3dd7ec0df36ae70b/3.8-rc/ubuntu/management/Dockerfile) - [`3.8.15-management`, `3.8-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/7e63843da6bfb191ddee6dbe3dd7ec0df36ae70b/3.8/ubuntu/management/Dockerfile)
- [`3.8.15-rc.3-alpine`, `3.8-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/fcb9d26a671581a665e257aa8b7a1ea0dff5344a/3.8-rc/alpine/Dockerfile) - [`3.8.15-alpine`, `3.8-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/cefa168001245c0d4a8af8aae988bbe5506bb03f/3.8/alpine/Dockerfile)
- [`3.8.15-rc.3-management-alpine`, `3.8-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/7e63843da6bfb191ddee6dbe3dd7ec0df36ae70b/3.8-rc/alpine/management/Dockerfile) - [`3.8.15-management-alpine`, `3.8-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/7e63843da6bfb191ddee6dbe3dd7ec0df36ae70b/3.8/alpine/management/Dockerfile)
- [`3.8.14`, `3.8`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/06aa7a5fb49fbc81e4264bf259ddde888d120b75/3.8/ubuntu/Dockerfile)
- [`3.8.14-management`, `3.8-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/7e63843da6bfb191ddee6dbe3dd7ec0df36ae70b/3.8/ubuntu/management/Dockerfile)
- [`3.8.14-alpine`, `3.8-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/06aa7a5fb49fbc81e4264bf259ddde888d120b75/3.8/alpine/Dockerfile)
- [`3.8.14-management-alpine`, `3.8-management-alpine`, `3-management-alpine`, `management-alpine`](https://github.com/docker-library/rabbitmq/blob/7e63843da6bfb191ddee6dbe3dd7ec0df36ae70b/3.8/alpine/management/Dockerfile)
# Quick reference (cont.) # Quick reference (cont.)

View File

@ -24,15 +24,15 @@ WARNING:
# Supported tags and respective `Dockerfile` links # Supported tags and respective `Dockerfile` links
- [`4.2.1`, `4.2`, `4`, `latest`](https://github.com/docker-library/redmine/blob/7b4cc5ec2de2d6e18523e07c92c8dcae6cc5ebd7/4.2/Dockerfile) - [`4.2.1`, `4.2`, `4`, `latest`](https://github.com/docker-library/redmine/blob/02809f9dead7b26e490f84107c7a2170f11fd2b9/4.2/Dockerfile)
- [`4.2.1-passenger`, `4.2-passenger`, `4-passenger`, `passenger`](https://github.com/docker-library/redmine/blob/fc3182cf934fc112a0d9a4f819892d3f2450d05a/4.2/passenger/Dockerfile) - [`4.2.1-passenger`, `4.2-passenger`, `4-passenger`, `passenger`](https://github.com/docker-library/redmine/blob/fc3182cf934fc112a0d9a4f819892d3f2450d05a/4.2/passenger/Dockerfile)
- [`4.2.1-alpine`, `4.2-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/redmine/blob/7b4cc5ec2de2d6e18523e07c92c8dcae6cc5ebd7/4.2/alpine/Dockerfile) - [`4.2.1-alpine`, `4.2-alpine`, `4-alpine`, `alpine`](https://github.com/docker-library/redmine/blob/02809f9dead7b26e490f84107c7a2170f11fd2b9/4.2/alpine/Dockerfile)
- [`4.1.3`, `4.1`](https://github.com/docker-library/redmine/blob/7aedf23f0304b556b745fa309406f2f4297b3d17/4.1/Dockerfile) - [`4.1.3`, `4.1`](https://github.com/docker-library/redmine/blob/02809f9dead7b26e490f84107c7a2170f11fd2b9/4.1/Dockerfile)
- [`4.1.3-passenger`, `4.1-passenger`](https://github.com/docker-library/redmine/blob/9cdb40719526a554a985422a554e481cbdf3e717/4.1/passenger/Dockerfile) - [`4.1.3-passenger`, `4.1-passenger`](https://github.com/docker-library/redmine/blob/9cdb40719526a554a985422a554e481cbdf3e717/4.1/passenger/Dockerfile)
- [`4.1.3-alpine`, `4.1-alpine`](https://github.com/docker-library/redmine/blob/7aedf23f0304b556b745fa309406f2f4297b3d17/4.1/alpine/Dockerfile) - [`4.1.3-alpine`, `4.1-alpine`](https://github.com/docker-library/redmine/blob/02809f9dead7b26e490f84107c7a2170f11fd2b9/4.1/alpine/Dockerfile)
- [`4.0.9`, `4.0`](https://github.com/docker-library/redmine/blob/69b470404cf0f1c0f1d8ca9efd45a95059d28a6a/4.0/Dockerfile) - [`4.0.9`, `4.0`](https://github.com/docker-library/redmine/blob/02809f9dead7b26e490f84107c7a2170f11fd2b9/4.0/Dockerfile)
- [`4.0.9-passenger`, `4.0-passenger`](https://github.com/docker-library/redmine/blob/9cdb40719526a554a985422a554e481cbdf3e717/4.0/passenger/Dockerfile) - [`4.0.9-passenger`, `4.0-passenger`](https://github.com/docker-library/redmine/blob/9cdb40719526a554a985422a554e481cbdf3e717/4.0/passenger/Dockerfile)
- [`4.0.9-alpine`, `4.0-alpine`](https://github.com/docker-library/redmine/blob/69b470404cf0f1c0f1d8ca9efd45a95059d28a6a/4.0/alpine/Dockerfile) - [`4.0.9-alpine`, `4.0-alpine`](https://github.com/docker-library/redmine/blob/02809f9dead7b26e490f84107c7a2170f11fd2b9/4.0/alpine/Dockerfile)
# Quick reference (cont.) # Quick reference (cont.)