From 4f5108057c8849e6c38d82c03331fc5b7fd23743 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 27 Apr 2021 22:12:02 +0000 Subject: [PATCH] Run update.sh --- bash/README.md | 2 +- bonita/README.md | 20 +++++----- gradle/README.md | 32 ++++++++++------ influxdb/README.md | 28 +++++++------- python/README.md | 94 +++++++++++++++++++++++----------------------- rabbitmq/README.md | 8 ++-- 6 files changed, 96 insertions(+), 88 deletions(-) diff --git a/bash/README.md b/bash/README.md index e3f84a9a4..6033acb6a 100644 --- a/bash/README.md +++ b/bash/README.md @@ -24,7 +24,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`devel-20210419`, `devel`](https://github.com/tianon/docker-bash/blob/a360295cd1a85b715da59fa8253ebb8c2147a928/devel/Dockerfile) +- [`devel-20210426`, `devel`](https://github.com/tianon/docker-bash/blob/4c47bc9e2c0c9c51b721f0f66e372c2202ef97bb/devel/Dockerfile) - [`5.1.4`, `5.1`, `5`, `latest`](https://github.com/tianon/docker-bash/blob/40d324c8da655e6834b34d730dba8eaa1f274e47/5.1/Dockerfile) - [`5.0.18`, `5.0`](https://github.com/tianon/docker-bash/blob/7d80c7cc5d829b6be9e04b6b2cba98a228fb67db/5.0/Dockerfile) - [`4.4.23`, `4.4`, `4`](https://github.com/tianon/docker-bash/blob/7d80c7cc5d829b6be9e04b6b2cba98a228fb67db/4.4/Dockerfile) diff --git a/bonita/README.md b/bonita/README.md index 8491beed6..cf6ff89e6 100644 --- a/bonita/README.md +++ b/bonita/README.md @@ -63,7 +63,7 @@ Bonita (called Bonita BPM till 7.5) is an open-source business process managemen $ docker run --name bonita -d -p 8080:8080 bonita ``` -This will start a container running [Bonita runtime](https://documentation.bonitasoft.com/bonita/7.11/tomcat-bundle): a Tomcat bundle with Bonita Engine + Bonita Portal. With no environment variables specified, it's as if you have launched the bundle on your host using startup.{sh|bat} (with security hardening on REST and HTTP APIs, cf Security part). Bonita uses a H2 database here. +This will start a container running [Bonita runtime](https://documentation.bonitasoft.com/bonita/2021.1/tomcat-bundle): a Tomcat bundle with Bonita Engine + Bonita Portal. With no environment variables specified, it's as if you have launched the bundle on your host using startup.{sh|bat} (with security hardening on REST and HTTP APIs, cf Security part). Bonita uses a H2 database here. You can access the Bonita Portal on http://localhost:8080/bonita and login using the default credentials: install / install @@ -73,7 +73,7 @@ You can access the Bonita Portal on http://localhost:8080/bonita and login using PostgreSQL is the recommended database. -[Set max_prepared_transactions to 100](https://documentation.bonitasoft.com/bonita/7.11/database-configuration#toc5): +[Set max_prepared_transactions to 100](https://documentation.bonitasoft.com/bonita/2021.1/database-configuration#_postgresql): ```console $ mkdir -p custom_postgres @@ -98,7 +98,7 @@ $ docker run --name bonita_postgres --link mydbpostgres:postgres -d -p 8080:8080 There are known issues with the management of XA transactions by MySQL engine and driver: see MySQL bug [17343](http://bugs.mysql.com/bug.php?id=17343) -[Increase the packet size](https://documentation.bonitasoft.com/bonita/7.11/database-configuration#toc5) which is set by default to 1M: +[Increase the packet size](https://documentation.bonitasoft.com/bonita/2021.1/database-configuration#_maximum_packet_size) which is set by default to 1M: ```console $ mkdir -p custom_mysql @@ -374,11 +374,11 @@ This Docker image activates both static and dynamic authorization checks by defa - REST API authorization - - [Static authorization checking](https://documentation.bonitasoft.com/bonita/2021.1/rest-api-authorization#toc1) + - [Static authorization checking](https://documentation.bonitasoft.com/bonita/2021.1/rest-api-authorization#static_authorization) - - [Dynamic authorization checking](https://documentation.bonitasoft.com/bonita/2021.1/rest-api-authorization#toc2) + - [Dynamic authorization checking](https://documentation.bonitasoft.com/bonita/2021.1/rest-api-authorization#dynamic_authorization) -- [HTTP API](https://documentation.bonitasoft.com/bonita/2021.1/rest-api-authorization#toc10) +- [HTTP API](https://documentation.bonitasoft.com/bonita/2021.1/rest-api-authorization#_activating_and_deactivating_authorization) For specific needs you can override this behavior by setting HTTP_API to true and REST_API_DYN_AUTH_CHECKS to false: @@ -392,7 +392,7 @@ When you start the `bonita` image, you can adjust the configuration of the Bonit ### `PLATFORM_PASSWORD` -This environment variable [is recommended](https://documentation.bonitasoft.com/bonita/2021.1/tomcat-bundle#toc3) for you to use the Bonita image. It sets the platform administrator password for Bonita. If it is not specified, the default password `platform` will be used. +This environment variable [is recommended](https://documentation.bonitasoft.com/bonita/2021.1/tomcat-bundle#_platform_administrator) for you to use the Bonita image. It sets the platform administrator password for Bonita. If it is not specified, the default password `platform` will be used. ### `PLATFORM_LOGIN` @@ -400,7 +400,7 @@ This optional environment variable is used in conjunction with `PLATFORM_PASSWOR ### `TENANT_PASSWORD` -This environment variable [is recommended](https://documentation.bonitasoft.com/bonita/2021.1/tomcat-bundle#toc3) for you to use the Bonita image. It sets the tenant administrator password for Bonita. If it is not specified, the default password `install` will be used. +This environment variable [is recommended](https://documentation.bonitasoft.com/bonita/2021.1/tomcat-bundle#_tenant_administrator) for you to use the Bonita image. It sets the tenant administrator password for Bonita. If it is not specified, the default password `install` will be used. ### `TENANT_LOGIN` @@ -408,7 +408,7 @@ This optional environment variable is used in conjunction with `TENANT_PASSWORD` ### `REST_API_DYN_AUTH_CHECKS` -This optional environment variable is used to enable/disable [dynamic authorization checking](https://documentation.bonitasoft.com/bonita/2021.1/rest-api-authorization#toc2) on Bonita REST API. The default value is `true`, which will activate dynamic authorization checking. +This optional environment variable is used to enable/disable [dynamic authorization checking](https://documentation.bonitasoft.com/bonita/2021.1/rest-api-authorization#dynamic_authorization) on Bonita REST API. The default value is `true`, which will activate dynamic authorization checking. ### `HTTP_API` @@ -442,7 +442,7 @@ These variables are used in conjunction to create a new user, set that user's pa ### `BIZ_DB_NAME`, `BIZ_DB_USER`, `BIZ_DB_PASS` -These variables are used in conjunction to create a new user, set that user's password and create the `bonita` [business database](https://documentation.bonitasoft.com/bonita/2021.1/define-and-deploy-the-bdm#toc1). +These variables are used in conjunction to create a new user, set that user's password and create the `bonita` [business database](https://documentation.bonitasoft.com/bonita/2021.1/define-and-deploy-the-bdm#_business_data_model_bdm). `BIZ_DB_NAME` default value is `businessdb`. diff --git a/gradle/README.md b/gradle/README.md index d43783cb3..90bce071a 100644 --- a/gradle/README.md +++ b/gradle/README.md @@ -24,18 +24,26 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`7.0.0-jdk8`, `7.0.0-jdk8-hotspot`, `7.0-jdk8`, `7.0-jdk8-hotspot`, `jdk8`, `jdk8-hotspot`, `7.0.0-jdk`, `7.0.0-jdk-hotspot`, `7.0-jdk`, `7.0-jdk-hotspot`, `jdk`, `jdk-hotspot`, `7.0.0`, `7.0.0-hotspot`, `7.0`, `7.0-hotspot`, `latest`, `hotspot`](https://github.com/keeganwitt/docker-gradle/blob/605a08fb025ad34e8e9d5d2391427886e64fc9f7/hotspot/jdk8/Dockerfile) -- [`7.0.0-jre8`, `7.0.0-jre8-hotspot`, `7.0-jre8`, `7.0-jre8-hotspot`, `jre8`, `jre8-hotspot`, `7.0.0-jre`, `7.0.0-jre-hotspot`, `7.0-jre`, `7.0-jre-hotspot`, `jre`, `jre-hotspot`](https://github.com/keeganwitt/docker-gradle/blob/605a08fb025ad34e8e9d5d2391427886e64fc9f7/hotspot/jre8/Dockerfile) -- [`7.0.0-jdk11`, `7.0.0-jdk11-hotspot`, `7.0-jdk11`, `7.0-jdk11-hotspot`, `jdk11`, `jdk11-hotspot`](https://github.com/keeganwitt/docker-gradle/blob/605a08fb025ad34e8e9d5d2391427886e64fc9f7/hotspot/jdk11/Dockerfile) -- [`7.0.0-jre11`, `7.0.0-jre11-hotspot`, `7.0-jre11`, `7.0-jre11-hotspot`, `jre11`, `jre11-hotspot`](https://github.com/keeganwitt/docker-gradle/blob/605a08fb025ad34e8e9d5d2391427886e64fc9f7/hotspot/jre11/Dockerfile) -- [`7.0.0-jdk16`, `7.0.0-jdk16-hotspot`, `7.0-jdk16`, `7.0-jdk16-hotspot`, `jdk16`, `jdk16-hotspot`](https://github.com/keeganwitt/docker-gradle/blob/605a08fb025ad34e8e9d5d2391427886e64fc9f7/hotspot/jdk16/Dockerfile) -- [`7.0.0-jre16`, `7.0.0-jre16-hotspot`, `7.0-jre16`, `7.0-jre16-hotspot`, `jre16`, `jre16-hotspot`](https://github.com/keeganwitt/docker-gradle/blob/605a08fb025ad34e8e9d5d2391427886e64fc9f7/hotspot/jre16/Dockerfile) -- [`7.0.0-jdk8-openj9`, `7.0-jdk8-openj9`, `jdk8-openj9`, `7.0.0-jdk-openj9`, `7.0-jdk-openj9`, `jdk-openj9`, `7.0.0-openj9`, `7.0-openj9`, `openj9`](https://github.com/keeganwitt/docker-gradle/blob/605a08fb025ad34e8e9d5d2391427886e64fc9f7/openj9/jdk8/Dockerfile) -- [`7.0.0-jre8-openj9`, `7.0-jre8-openj9`, `jre8-openj9`, `7.0.0-jre-openj9`, `7.0-jre-openj9`, `jre-openj9`](https://github.com/keeganwitt/docker-gradle/blob/605a08fb025ad34e8e9d5d2391427886e64fc9f7/openj9/jre8/Dockerfile) -- [`7.0.0-jdk11-openj9`, `7.0-jdk11-openj9`, `jdk11-openj9`](https://github.com/keeganwitt/docker-gradle/blob/605a08fb025ad34e8e9d5d2391427886e64fc9f7/openj9/jdk11/Dockerfile) -- [`7.0.0-jre11-openj9`, `7.0-jre11-openj9`, `jre11-openj9`](https://github.com/keeganwitt/docker-gradle/blob/605a08fb025ad34e8e9d5d2391427886e64fc9f7/openj9/jre11/Dockerfile) -- [`7.0.0-jdk16-openj9`, `7.0-jdk16-openj9`, `jdk16-openj9`](https://github.com/keeganwitt/docker-gradle/blob/605a08fb025ad34e8e9d5d2391427886e64fc9f7/openj9/jdk16/Dockerfile) -- [`7.0.0-jre16-openj9`, `7.0-jre16-openj9`, `jre16-openj9`](https://github.com/keeganwitt/docker-gradle/blob/605a08fb025ad34e8e9d5d2391427886e64fc9f7/openj9/jre16/Dockerfile) +- [`7.0.0-jdk8`, `7.0.0-jdk8-hotspot`, `7.0-jdk8`, `7.0-jdk8-hotspot`, `7-jdk8`, `7-jdk8-hotspot`, `jdk8`, `jdk8-hotspot`, `7.0.0-jdk`, `7.0.0-jdk-hotspot`, `7.0-jdk`, `7.0-jdk-hotspot`, `7-jdk`, `7-jdk-hotspot`, `jdk`, `jdk-hotspot`, `7.0.0`, `7.0.0-hotspot`, `7.0`, `7.0-hotspot`, `7`, `7-hotspot`, `latest`, `hotspot`](https://github.com/keeganwitt/docker-gradle/blob/605a08fb025ad34e8e9d5d2391427886e64fc9f7/hotspot/jdk8/Dockerfile) +- [`7.0.0-jre8`, `7.0.0-jre8-hotspot`, `7.0-jre8`, `7.0-jre8-hotspot`, `7-jre8`, `7-jre8-hotspot`, `jre8`, `jre8-hotspot`, `7.0.0-jre`, `7.0.0-jre-hotspot`, `7.0-jre`, `7.0-jre-hotspot`, `7-jre`, `7-jre-hotspot`, `jre`, `jre-hotspot`](https://github.com/keeganwitt/docker-gradle/blob/605a08fb025ad34e8e9d5d2391427886e64fc9f7/hotspot/jre8/Dockerfile) +- [`7.0.0-jdk11`, `7.0.0-jdk11-hotspot`, `7.0-jdk11`, `7.0-jdk11-hotspot`, `7-jdk11`, `7-jdk11-hotspot`, `jdk11`, `jdk11-hotspot`](https://github.com/keeganwitt/docker-gradle/blob/605a08fb025ad34e8e9d5d2391427886e64fc9f7/hotspot/jdk11/Dockerfile) +- [`7.0.0-jre11`, `7.0.0-jre11-hotspot`, `7.0-jre11`, `7.0-jre11-hotspot`, `7-jre11`, `7-jre11-hotspot`, `jre11`, `jre11-hotspot`](https://github.com/keeganwitt/docker-gradle/blob/605a08fb025ad34e8e9d5d2391427886e64fc9f7/hotspot/jre11/Dockerfile) +- [`7.0.0-jdk16`, `7.0.0-jdk16-hotspot`, `7.0-jdk16`, `7.0-jdk16-hotspot`, `7-jdk16`, `7-jdk16-hotspot`, `jdk16`, `jdk16-hotspot`](https://github.com/keeganwitt/docker-gradle/blob/605a08fb025ad34e8e9d5d2391427886e64fc9f7/hotspot/jdk16/Dockerfile) +- [`7.0.0-jre16`, `7.0.0-jre16-hotspot`, `7.0-jre16`, `7.0-jre16-hotspot`, `7-jre16`, `7-jre16-hotspot`, `jre16`, `jre16-hotspot`](https://github.com/keeganwitt/docker-gradle/blob/605a08fb025ad34e8e9d5d2391427886e64fc9f7/hotspot/jre16/Dockerfile) +- [`7.0.0-jdk8-openj9`, `7.0-jdk8-openj9`, `7-jdk8-openj9`, `jdk8-openj9`, `7.0.0-jdk-openj9`, `7.0-jdk-openj9`, `7-jdk-openj9`, `jdk-openj9`, `7.0.0-openj9`, `7.0-openj9`, `7-openj9`, `openj9`](https://github.com/keeganwitt/docker-gradle/blob/605a08fb025ad34e8e9d5d2391427886e64fc9f7/openj9/jdk8/Dockerfile) +- [`7.0.0-jre8-openj9`, `7.0-jre8-openj9`, `7-jre8-openj9`, `jre8-openj9`, `7.0.0-jre-openj9`, `7.0-jre-openj9`, `7-jre-openj9`, `jre-openj9`](https://github.com/keeganwitt/docker-gradle/blob/605a08fb025ad34e8e9d5d2391427886e64fc9f7/openj9/jre8/Dockerfile) +- [`7.0.0-jdk11-openj9`, `7.0-jdk11-openj9`, `7-jdk11-openj9`, `jdk11-openj9`](https://github.com/keeganwitt/docker-gradle/blob/605a08fb025ad34e8e9d5d2391427886e64fc9f7/openj9/jdk11/Dockerfile) +- [`7.0.0-jre11-openj9`, `7.0-jre11-openj9`, `7-jre11-openj9`, `jre11-openj9`](https://github.com/keeganwitt/docker-gradle/blob/605a08fb025ad34e8e9d5d2391427886e64fc9f7/openj9/jre11/Dockerfile) +- [`7.0.0-jdk16-openj9`, `7.0-jdk16-openj9`, `7-jdk16-openj9`, `jdk16-openj9`](https://github.com/keeganwitt/docker-gradle/blob/605a08fb025ad34e8e9d5d2391427886e64fc9f7/openj9/jdk16/Dockerfile) +- [`7.0.0-jre16-openj9`, `7.0-jre16-openj9`, `7-jre16-openj9`, `jre16-openj9`](https://github.com/keeganwitt/docker-gradle/blob/605a08fb025ad34e8e9d5d2391427886e64fc9f7/openj9/jre16/Dockerfile) +- [`6.8.3-jdk8`, `6.8.3-jdk8-hotspot`, `6.8-jdk8`, `6.8-jdk8-hotspot`, `6-jdk8`, `6-jdk8-hotspot`, `6.8.3-jdk`, `6.8.3-jdk-hotspot`, `6.8-jdk`, `6.8-jdk-hotspot`, `6-jdk`, `6-jdk-hotspot`, `6.8.3`, `6.8.3-hotspot`, `6.8`, `6.8-hotspot`, `6`, `6-hotspot`](https://github.com/keeganwitt/docker-gradle/blob/019489a1187aac1788f5369048c34969462a0456/hotspot/jdk8/Dockerfile) +- [`6.8.3-jre8`, `6.8.3-jre8-hotspot`, `6.8-jre8`, `6.8-jre8-hotspot`, `6-jre8`, `6-jre8-hotspot`, `6.8.3-jre`, `6.8.3-jre-hotspot`, `6.8-jre`, `6.8-jre-hotspot`, `6-jre`, `6-jre-hotspot`](https://github.com/keeganwitt/docker-gradle/blob/019489a1187aac1788f5369048c34969462a0456/hotspot/jre8/Dockerfile) +- [`6.8.3-jdk11`, `6.8.3-jdk11-hotspot`, `6.8-jdk11`, `6.8-jdk11-hotspot`, `6-jdk11`, `6-jdk11-hotspot`](https://github.com/keeganwitt/docker-gradle/blob/019489a1187aac1788f5369048c34969462a0456/hotspot/jdk11/Dockerfile) +- [`6.8.3-jre11`, `6.8.3-jre11-hotspot`, `6.8-jre11`, `6.8-jre11-hotspot`, `6-jre11`, `6-jre11-hotspot`](https://github.com/keeganwitt/docker-gradle/blob/019489a1187aac1788f5369048c34969462a0456/hotspot/jre11/Dockerfile) +- [`6.8.3-jdk8-openj9`, `6.8-jdk8-openj9`, `6-jdk8-openj9`, `6.8.3-jdk-openj9`, `6.8-jdk-openj9`, `6-jdk-openj9`, `6.8.3-openj9`, `6.8-openj9`, `6-openj9`](https://github.com/keeganwitt/docker-gradle/blob/019489a1187aac1788f5369048c34969462a0456/openj9/jdk8/Dockerfile) +- [`6.8.3-jre8-openj9`, `6.8-jre8-openj9`, `6-jre8-openj9`, `6.8.3-jre-openj9`, `6.8-jre-openj9`, `6-jre-openj9`](https://github.com/keeganwitt/docker-gradle/blob/019489a1187aac1788f5369048c34969462a0456/openj9/jre8/Dockerfile) +- [`6.8.3-jdk11-openj9`, `6.8-jdk11-openj9`, `6-jdk11-openj9`](https://github.com/keeganwitt/docker-gradle/blob/019489a1187aac1788f5369048c34969462a0456/openj9/jdk11/Dockerfile) +- [`6.8.3-jre11-openj9`, `6.8-jre11-openj9`, `6-jre11-openj9`](https://github.com/keeganwitt/docker-gradle/blob/019489a1187aac1788f5369048c34969462a0456/openj9/jre11/Dockerfile) # Quick reference (cont.) diff --git a/influxdb/README.md b/influxdb/README.md index 126f4d759..41d91d4f2 100644 --- a/influxdb/README.md +++ b/influxdb/README.md @@ -24,20 +24,20 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.7`, `1.7.11`](https://github.com/influxdata/influxdata-docker/blob/c4d6651a3688b517cf29c7c6178f388fea5dad60/influxdb/1.7/Dockerfile) -- [`1.7-alpine`, `1.7.11-alpine`](https://github.com/influxdata/influxdata-docker/blob/c4d6651a3688b517cf29c7c6178f388fea5dad60/influxdb/1.7/alpine/Dockerfile) -- [`1.7-data`, `1.7.11-data`](https://github.com/influxdata/influxdata-docker/blob/c4d6651a3688b517cf29c7c6178f388fea5dad60/influxdb/1.7/data/Dockerfile) -- [`1.7-data-alpine`, `1.7.11-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/c4d6651a3688b517cf29c7c6178f388fea5dad60/influxdb/1.7/data/alpine/Dockerfile) -- [`1.7-meta`, `1.7.11-meta`](https://github.com/influxdata/influxdata-docker/blob/c4d6651a3688b517cf29c7c6178f388fea5dad60/influxdb/1.7/meta/Dockerfile) -- [`1.7-meta-alpine`, `1.7.11-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/c4d6651a3688b517cf29c7c6178f388fea5dad60/influxdb/1.7/meta/alpine/Dockerfile) -- [`1.8`, `1.8.5`](https://github.com/influxdata/influxdata-docker/blob/c4d6651a3688b517cf29c7c6178f388fea5dad60/influxdb/1.8/Dockerfile) -- [`1.8-alpine`, `1.8.5-alpine`](https://github.com/influxdata/influxdata-docker/blob/c4d6651a3688b517cf29c7c6178f388fea5dad60/influxdb/1.8/alpine/Dockerfile) -- [`1.8-data`, `1.8.5-data`, `data`](https://github.com/influxdata/influxdata-docker/blob/c4d6651a3688b517cf29c7c6178f388fea5dad60/influxdb/1.8/data/Dockerfile) -- [`1.8-data-alpine`, `1.8.5-data-alpine`, `data-alpine`](https://github.com/influxdata/influxdata-docker/blob/c4d6651a3688b517cf29c7c6178f388fea5dad60/influxdb/1.8/data/alpine/Dockerfile) -- [`1.8-meta`, `1.8.5-meta`, `meta`](https://github.com/influxdata/influxdata-docker/blob/c4d6651a3688b517cf29c7c6178f388fea5dad60/influxdb/1.8/meta/Dockerfile) -- [`1.8-meta-alpine`, `1.8.5-meta-alpine`, `meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/c4d6651a3688b517cf29c7c6178f388fea5dad60/influxdb/1.8/meta/alpine/Dockerfile) -- [`2.0`, `2.0.4`, `latest`](https://github.com/influxdata/influxdata-docker/blob/c4d6651a3688b517cf29c7c6178f388fea5dad60/influxdb/2.0/Dockerfile) -- [`2.0-alpine`, `2.0.4-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/c4d6651a3688b517cf29c7c6178f388fea5dad60/influxdb/2.0/alpine/Dockerfile) +- [`1.7`, `1.7.11`](https://github.com/influxdata/influxdata-docker/blob/08bf692626c273782d4d362aeb15cd009622b28b/influxdb/1.7/Dockerfile) +- [`1.7-alpine`, `1.7.11-alpine`](https://github.com/influxdata/influxdata-docker/blob/08bf692626c273782d4d362aeb15cd009622b28b/influxdb/1.7/alpine/Dockerfile) +- [`1.7-data`, `1.7.11-data`](https://github.com/influxdata/influxdata-docker/blob/08bf692626c273782d4d362aeb15cd009622b28b/influxdb/1.7/data/Dockerfile) +- [`1.7-data-alpine`, `1.7.11-data-alpine`](https://github.com/influxdata/influxdata-docker/blob/08bf692626c273782d4d362aeb15cd009622b28b/influxdb/1.7/data/alpine/Dockerfile) +- [`1.7-meta`, `1.7.11-meta`](https://github.com/influxdata/influxdata-docker/blob/08bf692626c273782d4d362aeb15cd009622b28b/influxdb/1.7/meta/Dockerfile) +- [`1.7-meta-alpine`, `1.7.11-meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/08bf692626c273782d4d362aeb15cd009622b28b/influxdb/1.7/meta/alpine/Dockerfile) +- [`1.8`, `1.8.5`](https://github.com/influxdata/influxdata-docker/blob/08bf692626c273782d4d362aeb15cd009622b28b/influxdb/1.8/Dockerfile) +- [`1.8-alpine`, `1.8.5-alpine`](https://github.com/influxdata/influxdata-docker/blob/08bf692626c273782d4d362aeb15cd009622b28b/influxdb/1.8/alpine/Dockerfile) +- [`1.8-data`, `1.8.5-data`, `data`](https://github.com/influxdata/influxdata-docker/blob/08bf692626c273782d4d362aeb15cd009622b28b/influxdb/1.8/data/Dockerfile) +- [`1.8-data-alpine`, `1.8.5-data-alpine`, `data-alpine`](https://github.com/influxdata/influxdata-docker/blob/08bf692626c273782d4d362aeb15cd009622b28b/influxdb/1.8/data/alpine/Dockerfile) +- [`1.8-meta`, `1.8.5-meta`, `meta`](https://github.com/influxdata/influxdata-docker/blob/08bf692626c273782d4d362aeb15cd009622b28b/influxdb/1.8/meta/Dockerfile) +- [`1.8-meta-alpine`, `1.8.5-meta-alpine`, `meta-alpine`](https://github.com/influxdata/influxdata-docker/blob/08bf692626c273782d4d362aeb15cd009622b28b/influxdb/1.8/meta/alpine/Dockerfile) +- [`2.0`, `2.0.5`, `latest`](https://github.com/influxdata/influxdata-docker/blob/08bf692626c273782d4d362aeb15cd009622b28b/influxdb/2.0/Dockerfile) +- [`2.0-alpine`, `2.0.5-alpine`, `alpine`](https://github.com/influxdata/influxdata-docker/blob/08bf692626c273782d4d362aeb15cd009622b28b/influxdb/2.0/alpine/Dockerfile) # Quick reference (cont.) diff --git a/python/README.md b/python/README.md index c793690ef..8e7f1a086 100644 --- a/python/README.md +++ b/python/README.md @@ -28,64 +28,64 @@ WARNING: ## Simple Tags -- [`3.10.0a7-buster`, `3.10-rc-buster`, `rc-buster`](https://github.com/docker-library/python/blob/4bff010c9735707699dd72524c7d1a827f6f5933/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/4bff010c9735707699dd72524c7d1a827f6f5933/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/4bff010c9735707699dd72524c7d1a827f6f5933/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/4bff010c9735707699dd72524c7d1a827f6f5933/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/4bff010c9735707699dd72524c7d1a827f6f5933/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/4bff010c9735707699dd72524c7d1a827f6f5933/3.10-rc/windows/windowsservercore-ltsc2016/Dockerfile) -- [`3.9.4-buster`, `3.9-buster`, `3-buster`, `buster`](https://github.com/docker-library/python/blob/18ef1b6500a622da8b138d1b413c963c279e7ea4/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/18ef1b6500a622da8b138d1b413c963c279e7ea4/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/18ef1b6500a622da8b138d1b413c963c279e7ea4/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/18ef1b6500a622da8b138d1b413c963c279e7ea4/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/18ef1b6500a622da8b138d1b413c963c279e7ea4/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/18ef1b6500a622da8b138d1b413c963c279e7ea4/3.9/windows/windowsservercore-ltsc2016/Dockerfile) -- [`3.8.9-buster`, `3.8-buster`](https://github.com/docker-library/python/blob/cb9a39a6c48d4606a68ae8f986373c9c64d430b5/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/cb9a39a6c48d4606a68ae8f986373c9c64d430b5/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/cb9a39a6c48d4606a68ae8f986373c9c64d430b5/3.8/alpine3.13/Dockerfile) -- [`3.8.9-alpine3.12`, `3.8-alpine3.12`](https://github.com/docker-library/python/blob/cb9a39a6c48d4606a68ae8f986373c9c64d430b5/3.8/alpine3.12/Dockerfile) -- [`3.8.9-windowsservercore-1809`, `3.8-windowsservercore-1809`](https://github.com/docker-library/python/blob/b4985e2aca58545a24046bdbe9d360023086abec/3.8/windows/windowsservercore-1809/Dockerfile) -- [`3.8.9-windowsservercore-ltsc2016`, `3.8-windowsservercore-ltsc2016`](https://github.com/docker-library/python/blob/b4985e2aca58545a24046bdbe9d360023086abec/3.8/windows/windowsservercore-ltsc2016/Dockerfile) -- [`3.7.10-buster`, `3.7-buster`](https://github.com/docker-library/python/blob/7217b72192c93ca2033051d7191d5689932d3912/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/7217b72192c93ca2033051d7191d5689932d3912/3.7/buster/slim/Dockerfile) -- [`3.7.10-stretch`, `3.7-stretch`](https://github.com/docker-library/python/blob/7217b72192c93ca2033051d7191d5689932d3912/3.7/stretch/Dockerfile) -- [`3.7.10-slim-stretch`, `3.7-slim-stretch`](https://github.com/docker-library/python/blob/7217b72192c93ca2033051d7191d5689932d3912/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/7217b72192c93ca2033051d7191d5689932d3912/3.7/alpine3.13/Dockerfile) -- [`3.7.10-alpine3.12`, `3.7-alpine3.12`](https://github.com/docker-library/python/blob/7217b72192c93ca2033051d7191d5689932d3912/3.7/alpine3.12/Dockerfile) -- [`3.6.13-buster`, `3.6-buster`](https://github.com/docker-library/python/blob/7217b72192c93ca2033051d7191d5689932d3912/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/7217b72192c93ca2033051d7191d5689932d3912/3.6/buster/slim/Dockerfile) -- [`3.6.13-stretch`, `3.6-stretch`](https://github.com/docker-library/python/blob/7217b72192c93ca2033051d7191d5689932d3912/3.6/stretch/Dockerfile) -- [`3.6.13-slim-stretch`, `3.6-slim-stretch`](https://github.com/docker-library/python/blob/7217b72192c93ca2033051d7191d5689932d3912/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/7217b72192c93ca2033051d7191d5689932d3912/3.6/alpine3.13/Dockerfile) -- [`3.6.13-alpine3.12`, `3.6-alpine3.12`](https://github.com/docker-library/python/blob/7217b72192c93ca2033051d7191d5689932d3912/3.6/alpine3.12/Dockerfile) +- [`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-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-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.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-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-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.9.4-buster`, `3.9-buster`, `3-buster`, `buster`](https://github.com/docker-library/python/blob/d9ab222fcd828888b102e3581c03931eac344097/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-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.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-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-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.8.9-buster`, `3.8-buster`](https://github.com/docker-library/python/blob/2bfae5e680d7d2c617cca513c6a495b2865543ab/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-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.12`, `3.8-alpine3.12`](https://github.com/docker-library/python/blob/2bfae5e680d7d2c617cca513c6a495b2865543ab/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-ltsc2016`, `3.8-windowsservercore-ltsc2016`](https://github.com/docker-library/python/blob/2bfae5e680d7d2c617cca513c6a495b2865543ab/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-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-stretch`, `3.7-stretch`](https://github.com/docker-library/python/blob/584c16017fee70be9174a3e39f30d8e01b48e5e1/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-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.12`, `3.7-alpine3.12`](https://github.com/docker-library/python/blob/584c16017fee70be9174a3e39f30d8e01b48e5e1/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-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-stretch`, `3.6-stretch`](https://github.com/docker-library/python/blob/96d07a4336438bd24e3e5afa5ed76b096c720f18/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-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.12`, `3.6-alpine3.12`](https://github.com/docker-library/python/blob/96d07a4336438bd24e3e5afa5ed76b096c720f18/3.6/alpine3.12/Dockerfile) ## Shared Tags - `3.10.0a7`, `3.10-rc`, `rc`: - - [`3.10.0a7-buster`](https://github.com/docker-library/python/blob/4bff010c9735707699dd72524c7d1a827f6f5933/3.10-rc/buster/Dockerfile) - - [`3.10.0a7-windowsservercore-1809`](https://github.com/docker-library/python/blob/4bff010c9735707699dd72524c7d1a827f6f5933/3.10-rc/windows/windowsservercore-1809/Dockerfile) - - [`3.10.0a7-windowsservercore-ltsc2016`](https://github.com/docker-library/python/blob/4bff010c9735707699dd72524c7d1a827f6f5933/3.10-rc/windows/windowsservercore-ltsc2016/Dockerfile) + - [`3.10.0a7-buster`](https://github.com/docker-library/python/blob/83b7e0cf623605178c0e7c42ee81fe758fc7e6f1/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-ltsc2016`](https://github.com/docker-library/python/blob/83b7e0cf623605178c0e7c42ee81fe758fc7e6f1/3.10-rc/windows/windowsservercore-ltsc2016/Dockerfile) - `3.10.0a7-windowsservercore`, `3.10-rc-windowsservercore`, `rc-windowsservercore`: - - [`3.10.0a7-windowsservercore-1809`](https://github.com/docker-library/python/blob/4bff010c9735707699dd72524c7d1a827f6f5933/3.10-rc/windows/windowsservercore-1809/Dockerfile) - - [`3.10.0a7-windowsservercore-ltsc2016`](https://github.com/docker-library/python/blob/4bff010c9735707699dd72524c7d1a827f6f5933/3.10-rc/windows/windowsservercore-ltsc2016/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-ltsc2016`](https://github.com/docker-library/python/blob/83b7e0cf623605178c0e7c42ee81fe758fc7e6f1/3.10-rc/windows/windowsservercore-ltsc2016/Dockerfile) - `3.9.4`, `3.9`, `3`, `latest`: - - [`3.9.4-buster`](https://github.com/docker-library/python/blob/18ef1b6500a622da8b138d1b413c963c279e7ea4/3.9/buster/Dockerfile) - - [`3.9.4-windowsservercore-1809`](https://github.com/docker-library/python/blob/18ef1b6500a622da8b138d1b413c963c279e7ea4/3.9/windows/windowsservercore-1809/Dockerfile) - - [`3.9.4-windowsservercore-ltsc2016`](https://github.com/docker-library/python/blob/18ef1b6500a622da8b138d1b413c963c279e7ea4/3.9/windows/windowsservercore-ltsc2016/Dockerfile) + - [`3.9.4-buster`](https://github.com/docker-library/python/blob/d9ab222fcd828888b102e3581c03931eac344097/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-ltsc2016`](https://github.com/docker-library/python/blob/d9ab222fcd828888b102e3581c03931eac344097/3.9/windows/windowsservercore-ltsc2016/Dockerfile) - `3.9.4-windowsservercore`, `3.9-windowsservercore`, `3-windowsservercore`, `windowsservercore`: - - [`3.9.4-windowsservercore-1809`](https://github.com/docker-library/python/blob/18ef1b6500a622da8b138d1b413c963c279e7ea4/3.9/windows/windowsservercore-1809/Dockerfile) - - [`3.9.4-windowsservercore-ltsc2016`](https://github.com/docker-library/python/blob/18ef1b6500a622da8b138d1b413c963c279e7ea4/3.9/windows/windowsservercore-ltsc2016/Dockerfile) + - [`3.9.4-windowsservercore-1809`](https://github.com/docker-library/python/blob/d9ab222fcd828888b102e3581c03931eac344097/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.8.9`, `3.8`: - - [`3.8.9-buster`](https://github.com/docker-library/python/blob/cb9a39a6c48d4606a68ae8f986373c9c64d430b5/3.8/buster/Dockerfile) - - [`3.8.9-windowsservercore-1809`](https://github.com/docker-library/python/blob/b4985e2aca58545a24046bdbe9d360023086abec/3.8/windows/windowsservercore-1809/Dockerfile) - - [`3.8.9-windowsservercore-ltsc2016`](https://github.com/docker-library/python/blob/b4985e2aca58545a24046bdbe9d360023086abec/3.8/windows/windowsservercore-ltsc2016/Dockerfile) + - [`3.8.9-buster`](https://github.com/docker-library/python/blob/2bfae5e680d7d2c617cca513c6a495b2865543ab/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-ltsc2016`](https://github.com/docker-library/python/blob/2bfae5e680d7d2c617cca513c6a495b2865543ab/3.8/windows/windowsservercore-ltsc2016/Dockerfile) - `3.8.9-windowsservercore`, `3.8-windowsservercore`: - - [`3.8.9-windowsservercore-1809`](https://github.com/docker-library/python/blob/b4985e2aca58545a24046bdbe9d360023086abec/3.8/windows/windowsservercore-1809/Dockerfile) - - [`3.8.9-windowsservercore-ltsc2016`](https://github.com/docker-library/python/blob/b4985e2aca58545a24046bdbe9d360023086abec/3.8/windows/windowsservercore-ltsc2016/Dockerfile) + - [`3.8.9-windowsservercore-1809`](https://github.com/docker-library/python/blob/2bfae5e680d7d2c617cca513c6a495b2865543ab/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.7.10`, `3.7`: - - [`3.7.10-buster`](https://github.com/docker-library/python/blob/7217b72192c93ca2033051d7191d5689932d3912/3.7/buster/Dockerfile) + - [`3.7.10-buster`](https://github.com/docker-library/python/blob/584c16017fee70be9174a3e39f30d8e01b48e5e1/3.7/buster/Dockerfile) - `3.6.13`, `3.6`: - - [`3.6.13-buster`](https://github.com/docker-library/python/blob/7217b72192c93ca2033051d7191d5689932d3912/3.6/buster/Dockerfile) + - [`3.6.13-buster`](https://github.com/docker-library/python/blob/96d07a4336438bd24e3e5afa5ed76b096c720f18/3.6/buster/Dockerfile) # Quick reference (cont.) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 94e382927..d8433483d 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -24,13 +24,13 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`3.8.15-rc.2`, `3.8-rc`](https://github.com/docker-library/rabbitmq/blob/0c9e77ef2e7b569523ba6f01dd84ed1315b62903/3.8-rc/ubuntu/Dockerfile) +- [`3.8.15-rc.2`, `3.8-rc`](https://github.com/docker-library/rabbitmq/blob/8983f3a2000b26a5658fccc99ee9fa3d66760d76/3.8-rc/ubuntu/Dockerfile) - [`3.8.15-rc.2-management`, `3.8-rc-management`](https://github.com/docker-library/rabbitmq/blob/7e63843da6bfb191ddee6dbe3dd7ec0df36ae70b/3.8-rc/ubuntu/management/Dockerfile) -- [`3.8.15-rc.2-alpine`, `3.8-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/0c9e77ef2e7b569523ba6f01dd84ed1315b62903/3.8-rc/alpine/Dockerfile) +- [`3.8.15-rc.2-alpine`, `3.8-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/8983f3a2000b26a5658fccc99ee9fa3d66760d76/3.8-rc/alpine/Dockerfile) - [`3.8.15-rc.2-management-alpine`, `3.8-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/7e63843da6bfb191ddee6dbe3dd7ec0df36ae70b/3.8-rc/alpine/management/Dockerfile) -- [`3.8.14`, `3.8`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/10fb3def4f912ed753d81917ce6bdb48cd6a5f36/3.8/ubuntu/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/10fb3def4f912ed753d81917ce6bdb48cd6a5f36/3.8/alpine/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.)