Docker Library Bot 3 rokov pred
rodič
commit
dacad22eb6
6 zmenil súbory, kde vykonal 435 pridanie a 82 odobranie
  1. 1 1
      bash/README.md
  2. 362 0
      emqx/README.md
  3. 18 18
      openjdk/README.md
  4. 43 43
      python/README.md
  5. 2 2
      redis/README.md
  6. 9 18
      wordpress/README.md

+ 1 - 1
bash/README.md

@@ -24,7 +24,7 @@ WARNING:
 
 # Supported tags and respective `Dockerfile` links
 
--	[`devel-20220325`, `devel`, `devel-20220325-alpine3.15`, `devel-alpine3.15`](https://github.com/tianon/docker-bash/blob/a63e8f687b7e3b7ee28b329867033ce75b083cfe/devel/Dockerfile)
+-	[`devel-20220404`, `devel`, `devel-20220404-alpine3.15`, `devel-alpine3.15`](https://github.com/tianon/docker-bash/blob/0a87b91efb695f83e268c149541867fce0623543/devel/Dockerfile)
 -	[`5.2-alpha`, `5.2-rc`, `rc`, `5.2-alpha-alpine3.15`, `5.2-rc-alpine3.15`, `rc-alpine3.15`](https://github.com/tianon/docker-bash/blob/70b65fa22011fa4b58c93570b2fed168b79102e4/5.2-rc/Dockerfile)
 -	[`5.1.16`, `5.1`, `5`, `latest`, `5.1.16-alpine3.15`, `5.1-alpine3.15`, `5-alpine3.15`, `alpine3.15`](https://github.com/tianon/docker-bash/blob/70b65fa22011fa4b58c93570b2fed168b79102e4/5.1/Dockerfile)
 -	[`5.0.18`, `5.0`, `5.0.18-alpine3.15`, `5.0-alpine3.15`](https://github.com/tianon/docker-bash/blob/70b65fa22011fa4b58c93570b2fed168b79102e4/5.0/Dockerfile)

+ 362 - 0
emqx/README.md

@@ -0,0 +1,362 @@
+<!--
+
+********************************************************************************
+
+WARNING:
+
+    DO NOT EDIT "emqx/README.md"
+
+    IT IS AUTO-GENERATED
+
+    (from the other files in "emqx/" combined with a set of templates)
+
+********************************************************************************
+
+-->
+
+# Quick reference
+
+-	**Maintained by**:  
+	[EMQ Technologies](https://github.com/emqx)
+
+-	**Where to get help**:  
+	[Discussions](https://github.com/emqx/emqx/discussions) or [Slack](https://slack-invite.emqx.io/)
+
+# Supported tags and respective `Dockerfile` links
+
+-	[`4.3.5`, `4.3`, `4`, `latest`](https://github.com/emqx/emqx-docker/blob/915d12f4a289def311fdc350f85539c74068bdb9/4.3/Dockerfile)
+
+# Quick reference (cont.)
+
+-	**Where to file issues**:  
+	[https://github.com/emqx/emqx-docker/issues](https://github.com/emqx/emqx-docker/issues)
+
+-	**Supported architectures**: ([more info](https://github.com/docker-library/official-images#architectures-other-than-amd64))  
+	[`amd64`](https://hub.docker.com/r/amd64/emqx/)
+
+-	**Published image artifact details**:  
+	[repo-info repo's `repos/emqx/` directory](https://github.com/docker-library/repo-info/blob/master/repos/emqx) ([history](https://github.com/docker-library/repo-info/commits/master/repos/emqx))  
+	(image metadata, transfer size, etc)
+
+-	**Image updates**:  
+	[official-images repo's `library/emqx` label](https://github.com/docker-library/official-images/issues?q=label%3Alibrary%2Femqx)  
+	[official-images repo's `library/emqx` file](https://github.com/docker-library/official-images/blob/master/library/emqx) ([history](https://github.com/docker-library/official-images/commits/master/library/emqx))
+
+-	**Source of this description**:  
+	[docs repo's `emqx/` directory](https://github.com/docker-library/docs/tree/master/emqx) ([history](https://github.com/docker-library/docs/commits/master/emqx))
+
+# What is EMQ X ?
+
+[EMQ X MQTT broker](https://www.emqx.io/) is a fully open source, highly scalable, highly available distributed MQTT messaging broker for IoT, M2M and Mobile applications that can handle tens of millions of concurrent clients.
+
+Starting from 3.0 release, *EMQ X* broker fully supports MQTT V5.0 protocol specifications and backward compatible with MQTT V3.1 and V3.1.1, as well as other communication protocols such as MQTT-SN, CoAP, LwM2M, WebSocket and STOMP. The 3.0 release of the *EMQ X* broker can scaled to 10+ million concurrent MQTT connections on one cluster.
+
+![logo](https://raw.githubusercontent.com/docker-library/docs/6341b491d0019f28275259187b23b988ca102c38/emqx/logo.png)
+
+# How to use this image
+
+### Run emqx
+
+Execute some command under this docker image
+
+```console
+$ docker run -d --name emqx emqx:tag
+```
+
+For example
+
+```console
+$ docker run -d --name emqx -p 18083:18083 -p 1883:1883 emqx:latest
+```
+
+The emqx broker runs as linux user `emqx` in the docker container.
+
+### Configuration
+
+Use the environment variable to configure the EMQ X docker container.
+
+By default, the environment variables with `EMQX_` prefix are mapped to key-value pairs in configuration files.
+
+You can change the prefix by overriding `HOCON_ENV_OVERRIDE_PREFIX`.
+
+Example:
+
+```bash
+EMQX_LISTENERS__SSL__DEFAULT__ACCEPTORS <--> listeners.ssl.default.acceptors
+EMQX_ZONES__DEFAULT__MQTT__MAX_PACKET_SIZE <--> zones.default.mqtt.max_packet_size
+```
+
+-	Prefix `EMQX_` is removed
+-	All upper case letters is replaced with lower case letters
+-	`__` is replaced with `.`
+
+If `HOCON_ENV_OVERRIDE_PREFIX=DEV_` is set:
+
+```bash
+DEV_LISTENER__SSL__EXTERNAL__ACCEPTORS <--> listener.ssl.external.acceptors
+DEV_MQTT__MAX_PACKET_SIZE              <--> mqtt.max_packet_size
+```
+
+Non mapped environment variables:
+
+```bash
+EMQX_NAME
+EMQX_HOST
+```
+
+These environment variables will ignore for configuration file.
+
+#### EMQ X Configuration
+
+> NOTE: All EMQ X Configuration in [etc/emqx.conf](https://github.com/emqx/emqx/blob/master/etc/emqx.conf) could config by environment. The following list is just an example, not a complete configuration.
+
+| Options     | Default        | Mapped | Description                |
+|-------------|----------------|--------|----------------------------|
+| `EMQX_NAME` | container name | none   | emqx node short name       |
+| `EMQX_HOST` | container IP   | none   | emqx node host, IP or FQDN |
+
+The list is incomplete and may changed with [etc/emqx.conf](https://github.com/emqx/emqx/blob/master/etc/emqx.conf) and plugin configuration files. But the mapping rule is similar.
+
+If set `EMQX_NAME` and `EMQX_HOST`, and unset `EMQX_NODE_NAME`, `EMQX_NODE_NAME=$EMQX_NAME@$EMQX_HOST`.
+
+For example, set mqtt tcp port to 1883
+
+```console
+$ docker run -d --name emqx -e EMQX__LISTENERS__TCP__DEFAULT__BIND=1883 -p 18083:18083 -p 1883:1883 emqx:latest
+```
+
+#### EMQ Loaded Modules Configuration
+
+| Options               | Default           | Description                 |
+|-----------------------|-------------------|-----------------------------|
+| `EMQX_LOADED_MODULES` | see content below | default modules emqx loaded |
+
+Default environment variable `EMQX_LOADED_MODULES`, including
+
+-	`emqx_mod_presence`
+
+```bash
+# The default EMQX_LOADED_MODULES env
+EMQX_LOADED_MODULES="emqx_mod_presence"
+```
+
+For example, set `EMQX_LOADED_MODULES=emqx_mod_delayed,emqx_mod_rewrite` to load these two modules.
+
+You can use comma, space or other separator that you want.
+
+All the modules defined in env `EMQX_LOADED_MODULES` will be loaded.
+
+```bash
+EMQX_LOADED_MODULES="emqx_mod_delayed,emqx_mod_rewrite"
+EMQX_LOADED_MODULES="emqx_mod_delayed emqx_mod_rewrite"
+EMQX_LOADED_MODULES="emqx_mod_delayed | emqx_mod_rewrite"
+```
+
+#### EMQ Loaded Plugins Configuration
+
+| Options               | Default           | Description                 |
+|-----------------------|-------------------|-----------------------------|
+| `EMQX_LOADED_PLUGINS` | see content below | default plugins emqx loaded |
+
+Default environment variable `EMQX_LOADED_PLUGINS`, including
+
+-	`emqx_recon`
+-	`emqx_retainer`
+-	`emqx_rule_engine`
+-	`emqx_management`
+-	`emqx_dashboard`
+
+```bash
+# The default EMQX_LOADED_PLUGINS env
+EMQX_LOADED_PLUGINS="emqx_recon,emqx_retainer,emqx_management,emqx_dashboard"
+```
+
+For example, set `EMQX_LOADED_PLUGINS= emqx_retainer,emqx_rule_engine` to load these two plugins.
+
+You can use comma, space or other separator that you want.
+
+All the plugins defined in `EMQX_LOADED_PLUGINS` will be loaded.
+
+```bash
+EMQX_LOADED_PLUGINS="emqx_retainer,emqx_rule_engine"
+EMQX_LOADED_PLUGINS="emqx_retainer emqx_rule_engine"
+EMQX_LOADED_PLUGINS="emqx_retainer | emqx_rule_engine"
+```
+
+#### EMQ X Plugins Configuration
+
+The environment variables which with `EMQX_` prefix are mapped to all emqx plugins' configuration file, `.` get replaced by `__`.
+
+Example:
+
+```bash
+EMQX_RETAINER__STORAGE_TYPE <--> retainer.storage_type
+EMQX_RETAINER__MAX_PAYLOAD_SIZE <--> retainer.max_payload_size
+```
+
+Don't worry about where to find the configuration file of emqx plugins, this docker image will find and config them automatically using some magic.
+
+All plugin of emqx project could config in this way, following the environment variables mapping rule above.
+
+Assume you are using redis auth plugin, for example:
+
+```bash
+#EMQX_RETAINER__STORAGE_TYPE = "ram"
+#EMQX_RETAINER.MAX_PAYLOAD_SIZE = 1MB
+
+docker run -d --name emqx -p 18083:18083 -p 1883:1883 -p 4369:4369 \
+    -e EMQX_LISTENERS__TCP__DEFAULT=1883 \
+    -e EMQX_LOADED_PLUGINS="emqx_retainer" \
+    -e EMQX_RETAINER__STORAGE_TYPE = "ram" \
+    -e EMQX_RETAINER__MAX_PAYLOAD_SIZE = 1MB \
+    emqx:latest
+```
+
+For numbered configuration options where the number is next to a `.` such as:
+
+-	backend.redis.pool1.server
+-	backend.redis.hook.message.publish.1
+
+You can configure an arbitrary number of them as long as each has a uniq unber for it's own configuration option:
+
+```bash
+docker run -d --name emqx -p 18083:18083 -p 1883:1883 -p 4369:4369 \
+    -e EMQX_BACKEND_REDIS_POOL1__SERVER=127.0.0.1:6379 \
+    [...]
+    -e EMQX_BACKEND__REDIS__POOL5__SERVER=127.0.0.5:6379 \
+    -e EMQX_BACKEND__REDIS__HOOK_MESSAGE__PUBLISH__1='{"topic": "persistant/topic1", "action": {"function": "on_message_publish"}, "pool": "pool1"}' \
+    -e EMQX_BACKEND__REDIS__HOOK_MESSAGE__PUBLISH__2='{"topic": "persistant/topic2", "action": {"function": "on_message_publish"}, "pool": "pool1"}' \
+    -e EMQX_BACKEND__REDIS__HOOK_MESSAGE__PUBLISH__3='{"topic": "persistant/topic3", "action": {"function": "on_message_publish"}, "pool": "pool1"}' \
+    [...]
+    -e EMQX_BACKEND__REDIS__HOOK_MESSAGE__PUBLISH__13='{"topic": "persistant/topic13", "action": {"function": "on_message_publish"}, "pool": "pool1"}' \
+    emqx:latest
+```
+
+### Cluster
+
+EMQ X supports a variety of clustering methods, see our [documentation](https://docs.emqx.io/broker/latest/en/advanced/cluster.html#emqx-service-discovery) for details.
+
+Let's create a static node list cluster from docker-compose.
+
+-	Create `docker-compose.yaml`:
+
+```yaml
+  version: '3'
+
+  services:
+    emqx1:
+      image: emqx:latest
+      environment:
+      - "EMQX_NAME=emqx"
+      - "EMQX_HOST=node1.emqx.io"
+      - "EMQX_CLUSTER__DISCOVERY_STRATEGY=static"
+      - "EMQX_CLUSTER__STATIC__SEEDS=[[email protected], [email protected]]"
+      networks:
+        emqx-bridge:
+          aliases:
+          - node1.emqx.io
+
+    emqx2:
+      image: emqx:latest
+      environment:
+      - "EMQX_NAME=emqx"
+      - "EMQX_HOST=node2.emqx.io"
+      - "EMQX_CLUSTER__DISCOVERY_STRATEGY=static"
+      - "EMQX_CLUSTER__STATIC__SEEDS=[[email protected], [email protected]]"
+      networks:
+        emqx-bridge:
+          aliases:
+          - node2.emqx.io
+
+  networks:
+    emqx-bridge:
+      driver: bridge
+```
+
+-	Start the docker-compose cluster
+
+```bash
+  docker-compose -p my_emqx up -d
+```
+
+-	View cluster
+
+```bash
+  $ docker exec -it my_emqx_emqx1_1 sh -c "emqx_ctl cluster status"
+  Cluster status: #{running_nodes => ['[email protected]','[email protected]'],
+                    stopped_nodes => []}
+```
+
+### Persistence
+
+If you want to persist the EMQ X docker container, you need to keep the following directories:
+
+-	`/opt/emqx/data`
+-	`/opt/emqx/etc`
+-	`/opt/emqx/log`
+
+Since data in these folders are partially stored under the `/opt/emqx/data/mnesia/${node_name}`, the user also needs to reuse the same node name to see the previous state. In detail, one needs to specify the two environment variables: `EMQX_NAME` and `EMQX_HOST`, `EMQX_HOST` set as `127.0.0.1` or network alias would be useful.
+
+In if you use docker-compose, the configuration would look something like this:
+
+```YAML
+volumes:
+  vol-emqx-data:
+    name: foo-emqx-data
+  vol-emqx-etc:
+    name: foo-emqx-etc
+  vol-emqx-log:
+    name: foo-emqx-log
+
+services:
+  emqx:
+    image: emqx:latest
+    restart: always
+    environment:
+      EMQX_NAME: foo_emqx
+      EMQX_HOST: 127.0.0.1
+    volumes:
+      - vol-emqx-data:/opt/emqx/data
+
+      - vol-emqx-log:/opt/emqx/log
+```
+
+### Kernel Tuning
+
+Under linux host machine, the easiest way is [Tuning guide](https://docs.emqx.io/en/broker/latest/tutorial/tune.html#linux-kernel-tuning).
+
+If you want tune linux kernel by docker, you must ensure your docker is latest version (>=1.12).
+
+```bash
+
+docker run -d --name emqx -p 18083:18083 -p 1883:1883 -p 4369:4369 \
+    --sysctl fs.file-max=2097152 \
+    --sysctl fs.nr_open=2097152 \
+    --sysctl net.core.somaxconn=32768 \
+    --sysctl net.ipv4.tcp_max_syn_backlog=16384 \
+    --sysctl net.core.netdev_max_backlog=16384 \
+    --sysctl net.ipv4.ip_local_port_range=1000 65535 \
+    --sysctl net.core.rmem_default=262144 \
+    --sysctl net.core.wmem_default=262144 \
+    --sysctl net.core.rmem_max=16777216 \
+    --sysctl net.core.wmem_max=16777216 \
+    --sysctl net.core.optmem_max=16777216 \
+    --sysctl net.ipv4.tcp_rmem=1024 4096 16777216 \
+    --sysctl net.ipv4.tcp_wmem=1024 4096 16777216 \
+    --sysctl net.ipv4.tcp_max_tw_buckets=1048576 \
+    --sysctl net.ipv4.tcp_fin_timeout=15 \
+    emqx:latest
+
+```
+
+> REMEMBER: DO NOT RUN EMQ X DOCKER PRIVILEGED OR MOUNT SYSTEM PROC IN CONTAINER TO TUNE LINUX KERNEL, IT IS UNSAFE.
+
+# License
+
+View [license information](https://github.com/emqx/emqx/blob/master/LICENSE) for the software contained in this image.
+
+As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained).
+
+Some additional license information which was able to be auto-detected might be found in [the `repo-info` repository's `emqx/` directory](https://github.com/docker-library/repo-info/tree/master/repos/emqx).
+
+As for any pre-built image usage, it is the image user's responsibility to ensure that any use of this image complies with any relevant licenses for all software contained within.

+ 18 - 18
openjdk/README.md

@@ -28,17 +28,17 @@ WARNING:
 
 ## Simple Tags
 
--	[`19-ea-15-jdk-oraclelinux8`, `19-ea-15-oraclelinux8`, `19-ea-jdk-oraclelinux8`, `19-ea-oraclelinux8`, `19-jdk-oraclelinux8`, `19-oraclelinux8`, `19-ea-15-jdk-oracle`, `19-ea-15-oracle`, `19-ea-jdk-oracle`, `19-ea-oracle`, `19-jdk-oracle`, `19-oracle`](https://github.com/docker-library/openjdk/blob/0a3df988b35edc02ae6aab426c61551461d35b53/19/jdk/oraclelinux8/Dockerfile)
--	[`19-ea-15-jdk-oraclelinux7`, `19-ea-15-oraclelinux7`, `19-ea-jdk-oraclelinux7`, `19-ea-oraclelinux7`, `19-jdk-oraclelinux7`, `19-oraclelinux7`](https://github.com/docker-library/openjdk/blob/0a3df988b35edc02ae6aab426c61551461d35b53/19/jdk/oraclelinux7/Dockerfile)
--	[`19-ea-15-jdk-bullseye`, `19-ea-15-bullseye`, `19-ea-jdk-bullseye`, `19-ea-bullseye`, `19-jdk-bullseye`, `19-bullseye`](https://github.com/docker-library/openjdk/blob/0a3df988b35edc02ae6aab426c61551461d35b53/19/jdk/bullseye/Dockerfile)
--	[`19-ea-15-jdk-slim-bullseye`, `19-ea-15-slim-bullseye`, `19-ea-jdk-slim-bullseye`, `19-ea-slim-bullseye`, `19-jdk-slim-bullseye`, `19-slim-bullseye`, `19-ea-15-jdk-slim`, `19-ea-15-slim`, `19-ea-jdk-slim`, `19-ea-slim`, `19-jdk-slim`, `19-slim`](https://github.com/docker-library/openjdk/blob/0a3df988b35edc02ae6aab426c61551461d35b53/19/jdk/slim-bullseye/Dockerfile)
--	[`19-ea-15-jdk-buster`, `19-ea-15-buster`, `19-ea-jdk-buster`, `19-ea-buster`, `19-jdk-buster`, `19-buster`](https://github.com/docker-library/openjdk/blob/0a3df988b35edc02ae6aab426c61551461d35b53/19/jdk/buster/Dockerfile)
--	[`19-ea-15-jdk-slim-buster`, `19-ea-15-slim-buster`, `19-ea-jdk-slim-buster`, `19-ea-slim-buster`, `19-jdk-slim-buster`, `19-slim-buster`](https://github.com/docker-library/openjdk/blob/0a3df988b35edc02ae6aab426c61551461d35b53/19/jdk/slim-buster/Dockerfile)
+-	[`19-ea-16-jdk-oraclelinux8`, `19-ea-16-oraclelinux8`, `19-ea-jdk-oraclelinux8`, `19-ea-oraclelinux8`, `19-jdk-oraclelinux8`, `19-oraclelinux8`, `19-ea-16-jdk-oracle`, `19-ea-16-oracle`, `19-ea-jdk-oracle`, `19-ea-oracle`, `19-jdk-oracle`, `19-oracle`](https://github.com/docker-library/openjdk/blob/b5df7f69163346b6813883cd68bd2f43f82fd784/19/jdk/oraclelinux8/Dockerfile)
+-	[`19-ea-16-jdk-oraclelinux7`, `19-ea-16-oraclelinux7`, `19-ea-jdk-oraclelinux7`, `19-ea-oraclelinux7`, `19-jdk-oraclelinux7`, `19-oraclelinux7`](https://github.com/docker-library/openjdk/blob/b5df7f69163346b6813883cd68bd2f43f82fd784/19/jdk/oraclelinux7/Dockerfile)
+-	[`19-ea-16-jdk-bullseye`, `19-ea-16-bullseye`, `19-ea-jdk-bullseye`, `19-ea-bullseye`, `19-jdk-bullseye`, `19-bullseye`](https://github.com/docker-library/openjdk/blob/b5df7f69163346b6813883cd68bd2f43f82fd784/19/jdk/bullseye/Dockerfile)
+-	[`19-ea-16-jdk-slim-bullseye`, `19-ea-16-slim-bullseye`, `19-ea-jdk-slim-bullseye`, `19-ea-slim-bullseye`, `19-jdk-slim-bullseye`, `19-slim-bullseye`, `19-ea-16-jdk-slim`, `19-ea-16-slim`, `19-ea-jdk-slim`, `19-ea-slim`, `19-jdk-slim`, `19-slim`](https://github.com/docker-library/openjdk/blob/b5df7f69163346b6813883cd68bd2f43f82fd784/19/jdk/slim-bullseye/Dockerfile)
+-	[`19-ea-16-jdk-buster`, `19-ea-16-buster`, `19-ea-jdk-buster`, `19-ea-buster`, `19-jdk-buster`, `19-buster`](https://github.com/docker-library/openjdk/blob/b5df7f69163346b6813883cd68bd2f43f82fd784/19/jdk/buster/Dockerfile)
+-	[`19-ea-16-jdk-slim-buster`, `19-ea-16-slim-buster`, `19-ea-jdk-slim-buster`, `19-ea-slim-buster`, `19-jdk-slim-buster`, `19-slim-buster`](https://github.com/docker-library/openjdk/blob/b5df7f69163346b6813883cd68bd2f43f82fd784/19/jdk/slim-buster/Dockerfile)
 -	[`19-ea-5-jdk-alpine3.15`, `19-ea-5-alpine3.15`, `19-ea-jdk-alpine3.15`, `19-ea-alpine3.15`, `19-jdk-alpine3.15`, `19-alpine3.15`, `19-ea-5-jdk-alpine`, `19-ea-5-alpine`, `19-ea-jdk-alpine`, `19-ea-alpine`, `19-jdk-alpine`, `19-alpine`](https://github.com/docker-library/openjdk/blob/c6190d5cbbefd5233c190561fda803f742ae8241/19/jdk/alpine3.15/Dockerfile)
 -	[`19-ea-5-jdk-alpine3.14`, `19-ea-5-alpine3.14`, `19-ea-jdk-alpine3.14`, `19-ea-alpine3.14`, `19-jdk-alpine3.14`, `19-alpine3.14`](https://github.com/docker-library/openjdk/blob/c6190d5cbbefd5233c190561fda803f742ae8241/19/jdk/alpine3.14/Dockerfile)
--	[`19-ea-15-jdk-windowsservercore-ltsc2022`, `19-ea-15-windowsservercore-ltsc2022`, `19-ea-jdk-windowsservercore-ltsc2022`, `19-ea-windowsservercore-ltsc2022`, `19-jdk-windowsservercore-ltsc2022`, `19-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/0a3df988b35edc02ae6aab426c61551461d35b53/19/jdk/windows/windowsservercore-ltsc2022/Dockerfile)
--	[`19-ea-15-jdk-windowsservercore-1809`, `19-ea-15-windowsservercore-1809`, `19-ea-jdk-windowsservercore-1809`, `19-ea-windowsservercore-1809`, `19-jdk-windowsservercore-1809`, `19-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/0a3df988b35edc02ae6aab426c61551461d35b53/19/jdk/windows/windowsservercore-1809/Dockerfile)
--	[`19-ea-15-jdk-nanoserver-1809`, `19-ea-15-nanoserver-1809`, `19-ea-jdk-nanoserver-1809`, `19-ea-nanoserver-1809`, `19-jdk-nanoserver-1809`, `19-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/0a3df988b35edc02ae6aab426c61551461d35b53/19/jdk/windows/nanoserver-1809/Dockerfile)
+-	[`19-ea-16-jdk-windowsservercore-ltsc2022`, `19-ea-16-windowsservercore-ltsc2022`, `19-ea-jdk-windowsservercore-ltsc2022`, `19-ea-windowsservercore-ltsc2022`, `19-jdk-windowsservercore-ltsc2022`, `19-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/b5df7f69163346b6813883cd68bd2f43f82fd784/19/jdk/windows/windowsservercore-ltsc2022/Dockerfile)
+-	[`19-ea-16-jdk-windowsservercore-1809`, `19-ea-16-windowsservercore-1809`, `19-ea-jdk-windowsservercore-1809`, `19-ea-windowsservercore-1809`, `19-jdk-windowsservercore-1809`, `19-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/b5df7f69163346b6813883cd68bd2f43f82fd784/19/jdk/windows/windowsservercore-1809/Dockerfile)
+-	[`19-ea-16-jdk-nanoserver-1809`, `19-ea-16-nanoserver-1809`, `19-ea-jdk-nanoserver-1809`, `19-ea-nanoserver-1809`, `19-jdk-nanoserver-1809`, `19-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/b5df7f69163346b6813883cd68bd2f43f82fd784/19/jdk/windows/nanoserver-1809/Dockerfile)
 -	[`18-jdk-oraclelinux8`, `18-oraclelinux8`, `18-jdk-oracle`, `18-oracle`](https://github.com/docker-library/openjdk/blob/ce82579fcff27d724a50ceaa4f1c140ac0102f39/18/jdk/oraclelinux8/Dockerfile)
 -	[`18-jdk-oraclelinux7`, `18-oraclelinux7`](https://github.com/docker-library/openjdk/blob/ce82579fcff27d724a50ceaa4f1c140ac0102f39/18/jdk/oraclelinux7/Dockerfile)
 -	[`18-jdk-bullseye`, `18-bullseye`](https://github.com/docker-library/openjdk/blob/ce82579fcff27d724a50ceaa4f1c140ac0102f39/18/jdk/bullseye/Dockerfile)
@@ -92,15 +92,15 @@ WARNING:
 
 ## Shared Tags
 
--	`19-ea-15-jdk`, `19-ea-15`, `19-ea-jdk`, `19-ea`, `19-jdk`, `19`:
-	-	[`19-ea-15-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/0a3df988b35edc02ae6aab426c61551461d35b53/19/jdk/oraclelinux8/Dockerfile)
-	-	[`19-ea-15-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/0a3df988b35edc02ae6aab426c61551461d35b53/19/jdk/windows/windowsservercore-ltsc2022/Dockerfile)
-	-	[`19-ea-15-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/0a3df988b35edc02ae6aab426c61551461d35b53/19/jdk/windows/windowsservercore-1809/Dockerfile)
--	`19-ea-15-jdk-windowsservercore`, `19-ea-15-windowsservercore`, `19-ea-jdk-windowsservercore`, `19-ea-windowsservercore`, `19-jdk-windowsservercore`, `19-windowsservercore`:
-	-	[`19-ea-15-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/0a3df988b35edc02ae6aab426c61551461d35b53/19/jdk/windows/windowsservercore-ltsc2022/Dockerfile)
-	-	[`19-ea-15-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/0a3df988b35edc02ae6aab426c61551461d35b53/19/jdk/windows/windowsservercore-1809/Dockerfile)
--	`19-ea-15-jdk-nanoserver`, `19-ea-15-nanoserver`, `19-ea-jdk-nanoserver`, `19-ea-nanoserver`, `19-jdk-nanoserver`, `19-nanoserver`:
-	-	[`19-ea-15-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/0a3df988b35edc02ae6aab426c61551461d35b53/19/jdk/windows/nanoserver-1809/Dockerfile)
+-	`19-ea-16-jdk`, `19-ea-16`, `19-ea-jdk`, `19-ea`, `19-jdk`, `19`:
+	-	[`19-ea-16-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/b5df7f69163346b6813883cd68bd2f43f82fd784/19/jdk/oraclelinux8/Dockerfile)
+	-	[`19-ea-16-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/b5df7f69163346b6813883cd68bd2f43f82fd784/19/jdk/windows/windowsservercore-ltsc2022/Dockerfile)
+	-	[`19-ea-16-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/b5df7f69163346b6813883cd68bd2f43f82fd784/19/jdk/windows/windowsservercore-1809/Dockerfile)
+-	`19-ea-16-jdk-windowsservercore`, `19-ea-16-windowsservercore`, `19-ea-jdk-windowsservercore`, `19-ea-windowsservercore`, `19-jdk-windowsservercore`, `19-windowsservercore`:
+	-	[`19-ea-16-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/b5df7f69163346b6813883cd68bd2f43f82fd784/19/jdk/windows/windowsservercore-ltsc2022/Dockerfile)
+	-	[`19-ea-16-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/b5df7f69163346b6813883cd68bd2f43f82fd784/19/jdk/windows/windowsservercore-1809/Dockerfile)
+-	`19-ea-16-jdk-nanoserver`, `19-ea-16-nanoserver`, `19-ea-jdk-nanoserver`, `19-ea-nanoserver`, `19-jdk-nanoserver`, `19-nanoserver`:
+	-	[`19-ea-16-jdk-nanoserver-1809`](https://github.com/docker-library/openjdk/blob/b5df7f69163346b6813883cd68bd2f43f82fd784/19/jdk/windows/nanoserver-1809/Dockerfile)
 -	`18-jdk`, `18`:
 	-	[`18-jdk-oraclelinux8`](https://github.com/docker-library/openjdk/blob/ce82579fcff27d724a50ceaa4f1c140ac0102f39/18/jdk/oraclelinux8/Dockerfile)
 	-	[`18-jdk-windowsservercore-ltsc2022`](https://github.com/docker-library/openjdk/blob/ce82579fcff27d724a50ceaa4f1c140ac0102f39/18/jdk/windows/windowsservercore-ltsc2022/Dockerfile)

+ 43 - 43
python/README.md

@@ -28,70 +28,70 @@ WARNING:
 
 ## Simple Tags
 
--	[`3.11.0a6-bullseye`, `3.11-rc-bullseye`](https://github.com/docker-library/python/blob/0047f00c0967161e731c9bab7d50fd95c7c09d46/3.11-rc/bullseye/Dockerfile)
--	[`3.11.0a6-slim-bullseye`, `3.11-rc-slim-bullseye`, `3.11.0a6-slim`, `3.11-rc-slim`](https://github.com/docker-library/python/blob/0047f00c0967161e731c9bab7d50fd95c7c09d46/3.11-rc/slim-bullseye/Dockerfile)
--	[`3.11.0a6-buster`, `3.11-rc-buster`](https://github.com/docker-library/python/blob/0047f00c0967161e731c9bab7d50fd95c7c09d46/3.11-rc/buster/Dockerfile)
--	[`3.11.0a6-slim-buster`, `3.11-rc-slim-buster`](https://github.com/docker-library/python/blob/0047f00c0967161e731c9bab7d50fd95c7c09d46/3.11-rc/slim-buster/Dockerfile)
--	[`3.11.0a6-alpine3.15`, `3.11-rc-alpine3.15`, `3.11.0a6-alpine`, `3.11-rc-alpine`](https://github.com/docker-library/python/blob/0047f00c0967161e731c9bab7d50fd95c7c09d46/3.11-rc/alpine3.15/Dockerfile)
--	[`3.11.0a6-alpine3.14`, `3.11-rc-alpine3.14`](https://github.com/docker-library/python/blob/0047f00c0967161e731c9bab7d50fd95c7c09d46/3.11-rc/alpine3.14/Dockerfile)
--	[`3.11.0a6-windowsservercore-ltsc2022`, `3.11-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/0047f00c0967161e731c9bab7d50fd95c7c09d46/3.11-rc/windows/windowsservercore-ltsc2022/Dockerfile)
--	[`3.11.0a6-windowsservercore-1809`, `3.11-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/0047f00c0967161e731c9bab7d50fd95c7c09d46/3.11-rc/windows/windowsservercore-1809/Dockerfile)
--	[`3.10.4-bullseye`, `3.10-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/acf9b9003f54003c4ebace7d501dae04eb410518/3.10/bullseye/Dockerfile)
--	[`3.10.4-slim-bullseye`, `3.10-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`, `3.10.4-slim`, `3.10-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/acf9b9003f54003c4ebace7d501dae04eb410518/3.10/slim-bullseye/Dockerfile)
--	[`3.10.4-buster`, `3.10-buster`, `3-buster`, `buster`](https://github.com/docker-library/python/blob/acf9b9003f54003c4ebace7d501dae04eb410518/3.10/buster/Dockerfile)
--	[`3.10.4-slim-buster`, `3.10-slim-buster`, `3-slim-buster`, `slim-buster`](https://github.com/docker-library/python/blob/acf9b9003f54003c4ebace7d501dae04eb410518/3.10/slim-buster/Dockerfile)
--	[`3.10.4-alpine3.15`, `3.10-alpine3.15`, `3-alpine3.15`, `alpine3.15`, `3.10.4-alpine`, `3.10-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/acf9b9003f54003c4ebace7d501dae04eb410518/3.10/alpine3.15/Dockerfile)
--	[`3.10.4-alpine3.14`, `3.10-alpine3.14`, `3-alpine3.14`, `alpine3.14`](https://github.com/docker-library/python/blob/acf9b9003f54003c4ebace7d501dae04eb410518/3.10/alpine3.14/Dockerfile)
+-	[`3.11.0a7-bullseye`, `3.11-rc-bullseye`](https://github.com/docker-library/python/blob/37e4721d30f5f6111015aa21061ec2961040fe8f/3.11-rc/bullseye/Dockerfile)
+-	[`3.11.0a7-slim-bullseye`, `3.11-rc-slim-bullseye`, `3.11.0a7-slim`, `3.11-rc-slim`](https://github.com/docker-library/python/blob/37e4721d30f5f6111015aa21061ec2961040fe8f/3.11-rc/slim-bullseye/Dockerfile)
+-	[`3.11.0a7-buster`, `3.11-rc-buster`](https://github.com/docker-library/python/blob/37e4721d30f5f6111015aa21061ec2961040fe8f/3.11-rc/buster/Dockerfile)
+-	[`3.11.0a7-slim-buster`, `3.11-rc-slim-buster`](https://github.com/docker-library/python/blob/37e4721d30f5f6111015aa21061ec2961040fe8f/3.11-rc/slim-buster/Dockerfile)
+-	[`3.11.0a7-alpine3.15`, `3.11-rc-alpine3.15`, `3.11.0a7-alpine`, `3.11-rc-alpine`](https://github.com/docker-library/python/blob/37e4721d30f5f6111015aa21061ec2961040fe8f/3.11-rc/alpine3.15/Dockerfile)
+-	[`3.11.0a7-alpine3.14`, `3.11-rc-alpine3.14`](https://github.com/docker-library/python/blob/37e4721d30f5f6111015aa21061ec2961040fe8f/3.11-rc/alpine3.14/Dockerfile)
+-	[`3.11.0a7-windowsservercore-ltsc2022`, `3.11-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/37e4721d30f5f6111015aa21061ec2961040fe8f/3.11-rc/windows/windowsservercore-ltsc2022/Dockerfile)
+-	[`3.11.0a7-windowsservercore-1809`, `3.11-rc-windowsservercore-1809`](https://github.com/docker-library/python/blob/37e4721d30f5f6111015aa21061ec2961040fe8f/3.11-rc/windows/windowsservercore-1809/Dockerfile)
+-	[`3.10.4-bullseye`, `3.10-bullseye`, `3-bullseye`, `bullseye`](https://github.com/docker-library/python/blob/0a9ee3e64588bb1144d6e4e413a0c5dd5cd48651/3.10/bullseye/Dockerfile)
+-	[`3.10.4-slim-bullseye`, `3.10-slim-bullseye`, `3-slim-bullseye`, `slim-bullseye`, `3.10.4-slim`, `3.10-slim`, `3-slim`, `slim`](https://github.com/docker-library/python/blob/0a9ee3e64588bb1144d6e4e413a0c5dd5cd48651/3.10/slim-bullseye/Dockerfile)
+-	[`3.10.4-buster`, `3.10-buster`, `3-buster`, `buster`](https://github.com/docker-library/python/blob/0a9ee3e64588bb1144d6e4e413a0c5dd5cd48651/3.10/buster/Dockerfile)
+-	[`3.10.4-slim-buster`, `3.10-slim-buster`, `3-slim-buster`, `slim-buster`](https://github.com/docker-library/python/blob/0a9ee3e64588bb1144d6e4e413a0c5dd5cd48651/3.10/slim-buster/Dockerfile)
+-	[`3.10.4-alpine3.15`, `3.10-alpine3.15`, `3-alpine3.15`, `alpine3.15`, `3.10.4-alpine`, `3.10-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/python/blob/0a9ee3e64588bb1144d6e4e413a0c5dd5cd48651/3.10/alpine3.15/Dockerfile)
+-	[`3.10.4-alpine3.14`, `3.10-alpine3.14`, `3-alpine3.14`, `alpine3.14`](https://github.com/docker-library/python/blob/0a9ee3e64588bb1144d6e4e413a0c5dd5cd48651/3.10/alpine3.14/Dockerfile)
 -	[`3.10.4-windowsservercore-ltsc2022`, `3.10-windowsservercore-ltsc2022`, `3-windowsservercore-ltsc2022`, `windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/acf9b9003f54003c4ebace7d501dae04eb410518/3.10/windows/windowsservercore-ltsc2022/Dockerfile)
 -	[`3.10.4-windowsservercore-1809`, `3.10-windowsservercore-1809`, `3-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/python/blob/acf9b9003f54003c4ebace7d501dae04eb410518/3.10/windows/windowsservercore-1809/Dockerfile)
--	[`3.9.12-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/e3f954f284ab822e939d99bddb3bfb25574f585e/3.9/bullseye/Dockerfile)
--	[`3.9.12-slim-bullseye`, `3.9-slim-bullseye`, `3.9.12-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/e3f954f284ab822e939d99bddb3bfb25574f585e/3.9/slim-bullseye/Dockerfile)
--	[`3.9.12-buster`, `3.9-buster`](https://github.com/docker-library/python/blob/e3f954f284ab822e939d99bddb3bfb25574f585e/3.9/buster/Dockerfile)
--	[`3.9.12-slim-buster`, `3.9-slim-buster`](https://github.com/docker-library/python/blob/e3f954f284ab822e939d99bddb3bfb25574f585e/3.9/slim-buster/Dockerfile)
--	[`3.9.12-alpine3.15`, `3.9-alpine3.15`, `3.9.12-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/e3f954f284ab822e939d99bddb3bfb25574f585e/3.9/alpine3.15/Dockerfile)
--	[`3.9.12-alpine3.14`, `3.9-alpine3.14`](https://github.com/docker-library/python/blob/e3f954f284ab822e939d99bddb3bfb25574f585e/3.9/alpine3.14/Dockerfile)
+-	[`3.9.12-bullseye`, `3.9-bullseye`](https://github.com/docker-library/python/blob/0a9ee3e64588bb1144d6e4e413a0c5dd5cd48651/3.9/bullseye/Dockerfile)
+-	[`3.9.12-slim-bullseye`, `3.9-slim-bullseye`, `3.9.12-slim`, `3.9-slim`](https://github.com/docker-library/python/blob/0a9ee3e64588bb1144d6e4e413a0c5dd5cd48651/3.9/slim-bullseye/Dockerfile)
+-	[`3.9.12-buster`, `3.9-buster`](https://github.com/docker-library/python/blob/0a9ee3e64588bb1144d6e4e413a0c5dd5cd48651/3.9/buster/Dockerfile)
+-	[`3.9.12-slim-buster`, `3.9-slim-buster`](https://github.com/docker-library/python/blob/0a9ee3e64588bb1144d6e4e413a0c5dd5cd48651/3.9/slim-buster/Dockerfile)
+-	[`3.9.12-alpine3.15`, `3.9-alpine3.15`, `3.9.12-alpine`, `3.9-alpine`](https://github.com/docker-library/python/blob/0a9ee3e64588bb1144d6e4e413a0c5dd5cd48651/3.9/alpine3.15/Dockerfile)
+-	[`3.9.12-alpine3.14`, `3.9-alpine3.14`](https://github.com/docker-library/python/blob/0a9ee3e64588bb1144d6e4e413a0c5dd5cd48651/3.9/alpine3.14/Dockerfile)
 -	[`3.9.12-windowsservercore-ltsc2022`, `3.9-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/e3f954f284ab822e939d99bddb3bfb25574f585e/3.9/windows/windowsservercore-ltsc2022/Dockerfile)
 -	[`3.9.12-windowsservercore-1809`, `3.9-windowsservercore-1809`](https://github.com/docker-library/python/blob/e3f954f284ab822e939d99bddb3bfb25574f585e/3.9/windows/windowsservercore-1809/Dockerfile)
--	[`3.8.13-bullseye`, `3.8-bullseye`](https://github.com/docker-library/python/blob/6b9719086775ddce2dde10871da97cbeb87b81ad/3.8/bullseye/Dockerfile)
--	[`3.8.13-slim-bullseye`, `3.8-slim-bullseye`, `3.8.13-slim`, `3.8-slim`](https://github.com/docker-library/python/blob/6b9719086775ddce2dde10871da97cbeb87b81ad/3.8/slim-bullseye/Dockerfile)
--	[`3.8.13-buster`, `3.8-buster`](https://github.com/docker-library/python/blob/6b9719086775ddce2dde10871da97cbeb87b81ad/3.8/buster/Dockerfile)
--	[`3.8.13-slim-buster`, `3.8-slim-buster`](https://github.com/docker-library/python/blob/6b9719086775ddce2dde10871da97cbeb87b81ad/3.8/slim-buster/Dockerfile)
--	[`3.8.13-alpine3.15`, `3.8-alpine3.15`, `3.8.13-alpine`, `3.8-alpine`](https://github.com/docker-library/python/blob/6b9719086775ddce2dde10871da97cbeb87b81ad/3.8/alpine3.15/Dockerfile)
--	[`3.8.13-alpine3.14`, `3.8-alpine3.14`](https://github.com/docker-library/python/blob/6b9719086775ddce2dde10871da97cbeb87b81ad/3.8/alpine3.14/Dockerfile)
--	[`3.7.13-bullseye`, `3.7-bullseye`](https://github.com/docker-library/python/blob/a9815ead3ae016edf7039285cb267b14a5700169/3.7/bullseye/Dockerfile)
--	[`3.7.13-slim-bullseye`, `3.7-slim-bullseye`, `3.7.13-slim`, `3.7-slim`](https://github.com/docker-library/python/blob/a9815ead3ae016edf7039285cb267b14a5700169/3.7/slim-bullseye/Dockerfile)
--	[`3.7.13-buster`, `3.7-buster`](https://github.com/docker-library/python/blob/a9815ead3ae016edf7039285cb267b14a5700169/3.7/buster/Dockerfile)
--	[`3.7.13-slim-buster`, `3.7-slim-buster`](https://github.com/docker-library/python/blob/a9815ead3ae016edf7039285cb267b14a5700169/3.7/slim-buster/Dockerfile)
--	[`3.7.13-alpine3.15`, `3.7-alpine3.15`, `3.7.13-alpine`, `3.7-alpine`](https://github.com/docker-library/python/blob/a9815ead3ae016edf7039285cb267b14a5700169/3.7/alpine3.15/Dockerfile)
--	[`3.7.13-alpine3.14`, `3.7-alpine3.14`](https://github.com/docker-library/python/blob/a9815ead3ae016edf7039285cb267b14a5700169/3.7/alpine3.14/Dockerfile)
+-	[`3.8.13-bullseye`, `3.8-bullseye`](https://github.com/docker-library/python/blob/0a9ee3e64588bb1144d6e4e413a0c5dd5cd48651/3.8/bullseye/Dockerfile)
+-	[`3.8.13-slim-bullseye`, `3.8-slim-bullseye`, `3.8.13-slim`, `3.8-slim`](https://github.com/docker-library/python/blob/0a9ee3e64588bb1144d6e4e413a0c5dd5cd48651/3.8/slim-bullseye/Dockerfile)
+-	[`3.8.13-buster`, `3.8-buster`](https://github.com/docker-library/python/blob/0a9ee3e64588bb1144d6e4e413a0c5dd5cd48651/3.8/buster/Dockerfile)
+-	[`3.8.13-slim-buster`, `3.8-slim-buster`](https://github.com/docker-library/python/blob/0a9ee3e64588bb1144d6e4e413a0c5dd5cd48651/3.8/slim-buster/Dockerfile)
+-	[`3.8.13-alpine3.15`, `3.8-alpine3.15`, `3.8.13-alpine`, `3.8-alpine`](https://github.com/docker-library/python/blob/0a9ee3e64588bb1144d6e4e413a0c5dd5cd48651/3.8/alpine3.15/Dockerfile)
+-	[`3.8.13-alpine3.14`, `3.8-alpine3.14`](https://github.com/docker-library/python/blob/0a9ee3e64588bb1144d6e4e413a0c5dd5cd48651/3.8/alpine3.14/Dockerfile)
+-	[`3.7.13-bullseye`, `3.7-bullseye`](https://github.com/docker-library/python/blob/0a9ee3e64588bb1144d6e4e413a0c5dd5cd48651/3.7/bullseye/Dockerfile)
+-	[`3.7.13-slim-bullseye`, `3.7-slim-bullseye`, `3.7.13-slim`, `3.7-slim`](https://github.com/docker-library/python/blob/0a9ee3e64588bb1144d6e4e413a0c5dd5cd48651/3.7/slim-bullseye/Dockerfile)
+-	[`3.7.13-buster`, `3.7-buster`](https://github.com/docker-library/python/blob/0a9ee3e64588bb1144d6e4e413a0c5dd5cd48651/3.7/buster/Dockerfile)
+-	[`3.7.13-slim-buster`, `3.7-slim-buster`](https://github.com/docker-library/python/blob/0a9ee3e64588bb1144d6e4e413a0c5dd5cd48651/3.7/slim-buster/Dockerfile)
+-	[`3.7.13-alpine3.15`, `3.7-alpine3.15`, `3.7.13-alpine`, `3.7-alpine`](https://github.com/docker-library/python/blob/0a9ee3e64588bb1144d6e4e413a0c5dd5cd48651/3.7/alpine3.15/Dockerfile)
+-	[`3.7.13-alpine3.14`, `3.7-alpine3.14`](https://github.com/docker-library/python/blob/0a9ee3e64588bb1144d6e4e413a0c5dd5cd48651/3.7/alpine3.14/Dockerfile)
 
 ## Shared Tags
 
--	`3.11.0a6`, `3.11-rc`:
-	-	[`3.11.0a6-bullseye`](https://github.com/docker-library/python/blob/0047f00c0967161e731c9bab7d50fd95c7c09d46/3.11-rc/bullseye/Dockerfile)
-	-	[`3.11.0a6-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/0047f00c0967161e731c9bab7d50fd95c7c09d46/3.11-rc/windows/windowsservercore-ltsc2022/Dockerfile)
-	-	[`3.11.0a6-windowsservercore-1809`](https://github.com/docker-library/python/blob/0047f00c0967161e731c9bab7d50fd95c7c09d46/3.11-rc/windows/windowsservercore-1809/Dockerfile)
--	`3.11.0a6-windowsservercore`, `3.11-rc-windowsservercore`:
-	-	[`3.11.0a6-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/0047f00c0967161e731c9bab7d50fd95c7c09d46/3.11-rc/windows/windowsservercore-ltsc2022/Dockerfile)
-	-	[`3.11.0a6-windowsservercore-1809`](https://github.com/docker-library/python/blob/0047f00c0967161e731c9bab7d50fd95c7c09d46/3.11-rc/windows/windowsservercore-1809/Dockerfile)
+-	`3.11.0a7`, `3.11-rc`:
+	-	[`3.11.0a7-bullseye`](https://github.com/docker-library/python/blob/37e4721d30f5f6111015aa21061ec2961040fe8f/3.11-rc/bullseye/Dockerfile)
+	-	[`3.11.0a7-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/37e4721d30f5f6111015aa21061ec2961040fe8f/3.11-rc/windows/windowsservercore-ltsc2022/Dockerfile)
+	-	[`3.11.0a7-windowsservercore-1809`](https://github.com/docker-library/python/blob/37e4721d30f5f6111015aa21061ec2961040fe8f/3.11-rc/windows/windowsservercore-1809/Dockerfile)
+-	`3.11.0a7-windowsservercore`, `3.11-rc-windowsservercore`:
+	-	[`3.11.0a7-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/37e4721d30f5f6111015aa21061ec2961040fe8f/3.11-rc/windows/windowsservercore-ltsc2022/Dockerfile)
+	-	[`3.11.0a7-windowsservercore-1809`](https://github.com/docker-library/python/blob/37e4721d30f5f6111015aa21061ec2961040fe8f/3.11-rc/windows/windowsservercore-1809/Dockerfile)
 -	`3.10.4`, `3.10`, `3`, `latest`:
-	-	[`3.10.4-bullseye`](https://github.com/docker-library/python/blob/acf9b9003f54003c4ebace7d501dae04eb410518/3.10/bullseye/Dockerfile)
+	-	[`3.10.4-bullseye`](https://github.com/docker-library/python/blob/0a9ee3e64588bb1144d6e4e413a0c5dd5cd48651/3.10/bullseye/Dockerfile)
 	-	[`3.10.4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/acf9b9003f54003c4ebace7d501dae04eb410518/3.10/windows/windowsservercore-ltsc2022/Dockerfile)
 	-	[`3.10.4-windowsservercore-1809`](https://github.com/docker-library/python/blob/acf9b9003f54003c4ebace7d501dae04eb410518/3.10/windows/windowsservercore-1809/Dockerfile)
 -	`3.10.4-windowsservercore`, `3.10-windowsservercore`, `3-windowsservercore`, `windowsservercore`:
 	-	[`3.10.4-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/acf9b9003f54003c4ebace7d501dae04eb410518/3.10/windows/windowsservercore-ltsc2022/Dockerfile)
 	-	[`3.10.4-windowsservercore-1809`](https://github.com/docker-library/python/blob/acf9b9003f54003c4ebace7d501dae04eb410518/3.10/windows/windowsservercore-1809/Dockerfile)
 -	`3.9.12`, `3.9`:
-	-	[`3.9.12-bullseye`](https://github.com/docker-library/python/blob/e3f954f284ab822e939d99bddb3bfb25574f585e/3.9/bullseye/Dockerfile)
+	-	[`3.9.12-bullseye`](https://github.com/docker-library/python/blob/0a9ee3e64588bb1144d6e4e413a0c5dd5cd48651/3.9/bullseye/Dockerfile)
 	-	[`3.9.12-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/e3f954f284ab822e939d99bddb3bfb25574f585e/3.9/windows/windowsservercore-ltsc2022/Dockerfile)
 	-	[`3.9.12-windowsservercore-1809`](https://github.com/docker-library/python/blob/e3f954f284ab822e939d99bddb3bfb25574f585e/3.9/windows/windowsservercore-1809/Dockerfile)
 -	`3.9.12-windowsservercore`, `3.9-windowsservercore`:
 	-	[`3.9.12-windowsservercore-ltsc2022`](https://github.com/docker-library/python/blob/e3f954f284ab822e939d99bddb3bfb25574f585e/3.9/windows/windowsservercore-ltsc2022/Dockerfile)
 	-	[`3.9.12-windowsservercore-1809`](https://github.com/docker-library/python/blob/e3f954f284ab822e939d99bddb3bfb25574f585e/3.9/windows/windowsservercore-1809/Dockerfile)
 -	`3.8.13`, `3.8`:
-	-	[`3.8.13-bullseye`](https://github.com/docker-library/python/blob/6b9719086775ddce2dde10871da97cbeb87b81ad/3.8/bullseye/Dockerfile)
+	-	[`3.8.13-bullseye`](https://github.com/docker-library/python/blob/0a9ee3e64588bb1144d6e4e413a0c5dd5cd48651/3.8/bullseye/Dockerfile)
 -	`3.7.13`, `3.7`:
-	-	[`3.7.13-bullseye`](https://github.com/docker-library/python/blob/a9815ead3ae016edf7039285cb267b14a5700169/3.7/bullseye/Dockerfile)
+	-	[`3.7.13-bullseye`](https://github.com/docker-library/python/blob/0a9ee3e64588bb1144d6e4e413a0c5dd5cd48651/3.7/bullseye/Dockerfile)
 
 # Quick reference (cont.)
 

+ 2 - 2
redis/README.md

@@ -24,8 +24,8 @@ WARNING:
 
 # Supported tags and respective `Dockerfile` links
 
--	[`7.0-rc2`, `7.0-rc`, `7.0-rc2-bullseye`, `7.0-rc-bullseye`](https://github.com/docker-library/redis/blob/15ed0a0c1cb60c5193db45d8b59a8707507be307/7.0-rc/Dockerfile)
--	[`7.0-rc2-alpine`, `7.0-rc-alpine`, `7.0-rc2-alpine3.15`, `7.0-rc-alpine3.15`](https://github.com/docker-library/redis/blob/5da818a92261e46c0d1c1a075da5666d4b2a8a8b/7.0-rc/alpine/Dockerfile)
+-	[`7.0-rc3`, `7.0-rc`, `7.0-rc3-bullseye`, `7.0-rc-bullseye`](https://github.com/docker-library/redis/blob/f1ab94aed7a14a82ecd2d45b945695b5177cb1e6/7.0-rc/Dockerfile)
+-	[`7.0-rc3-alpine`, `7.0-rc-alpine`, `7.0-rc3-alpine3.15`, `7.0-rc-alpine3.15`](https://github.com/docker-library/redis/blob/f1ab94aed7a14a82ecd2d45b945695b5177cb1e6/7.0-rc/alpine/Dockerfile)
 -	[`6.2.6`, `6.2`, `6`, `latest`, `6.2.6-bullseye`, `6.2-bullseye`, `6-bullseye`, `bullseye`](https://github.com/docker-library/redis/blob/15ed0a0c1cb60c5193db45d8b59a8707507be307/6.2/Dockerfile)
 -	[`6.2.6-alpine`, `6.2-alpine`, `6-alpine`, `alpine`, `6.2.6-alpine3.15`, `6.2-alpine3.15`, `6-alpine3.15`, `alpine3.15`](https://github.com/docker-library/redis/blob/84c36a0967bcfa8a9c39cb899464785c5f2cf5ef/6.2/alpine/Dockerfile)
 -	[`6.0.16`, `6.0`, `6.0.16-bullseye`, `6.0-bullseye`](https://github.com/docker-library/redis/blob/15ed0a0c1cb60c5193db45d8b59a8707507be307/6.0/Dockerfile)

+ 9 - 18
wordpress/README.md

@@ -24,27 +24,18 @@ WARNING:
 
 # Supported tags and respective `Dockerfile` links
 
--	[`5.9.2-apache`, `5.9-apache`, `5-apache`, `apache`, `5.9.2`, `5.9`, `5`, `latest`, `5.9.2-php7.4-apache`, `5.9-php7.4-apache`, `5-php7.4-apache`, `php7.4-apache`, `5.9.2-php7.4`, `5.9-php7.4`, `5-php7.4`, `php7.4`](https://github.com/docker-library/wordpress/blob/a59112cc8738962784daf2ed9383d5148281c66f/latest/php7.4/apache/Dockerfile)
--	[`5.9.2-fpm`, `5.9-fpm`, `5-fpm`, `fpm`, `5.9.2-php7.4-fpm`, `5.9-php7.4-fpm`, `5-php7.4-fpm`, `php7.4-fpm`](https://github.com/docker-library/wordpress/blob/a59112cc8738962784daf2ed9383d5148281c66f/latest/php7.4/fpm/Dockerfile)
--	[`5.9.2-fpm-alpine`, `5.9-fpm-alpine`, `5-fpm-alpine`, `fpm-alpine`, `5.9.2-php7.4-fpm-alpine`, `5.9-php7.4-fpm-alpine`, `5-php7.4-fpm-alpine`, `php7.4-fpm-alpine`](https://github.com/docker-library/wordpress/blob/a59112cc8738962784daf2ed9383d5148281c66f/latest/php7.4/fpm-alpine/Dockerfile)
--	[`5.9.2-php8.0-apache`, `5.9-php8.0-apache`, `5-php8.0-apache`, `php8.0-apache`, `5.9.2-php8.0`, `5.9-php8.0`, `5-php8.0`, `php8.0`](https://github.com/docker-library/wordpress/blob/a59112cc8738962784daf2ed9383d5148281c66f/latest/php8.0/apache/Dockerfile)
--	[`5.9.2-php8.0-fpm`, `5.9-php8.0-fpm`, `5-php8.0-fpm`, `php8.0-fpm`](https://github.com/docker-library/wordpress/blob/a59112cc8738962784daf2ed9383d5148281c66f/latest/php8.0/fpm/Dockerfile)
--	[`5.9.2-php8.0-fpm-alpine`, `5.9-php8.0-fpm-alpine`, `5-php8.0-fpm-alpine`, `php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/a59112cc8738962784daf2ed9383d5148281c66f/latest/php8.0/fpm-alpine/Dockerfile)
--	[`5.9.2-php8.1-apache`, `5.9-php8.1-apache`, `5-php8.1-apache`, `php8.1-apache`, `5.9.2-php8.1`, `5.9-php8.1`, `5-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/a59112cc8738962784daf2ed9383d5148281c66f/latest/php8.1/apache/Dockerfile)
--	[`5.9.2-php8.1-fpm`, `5.9-php8.1-fpm`, `5-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/a59112cc8738962784daf2ed9383d5148281c66f/latest/php8.1/fpm/Dockerfile)
--	[`5.9.2-php8.1-fpm-alpine`, `5.9-php8.1-fpm-alpine`, `5-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/a59112cc8738962784daf2ed9383d5148281c66f/latest/php8.1/fpm-alpine/Dockerfile)
+-	[`5.9.3-apache`, `5.9-apache`, `5-apache`, `apache`, `5.9.3`, `5.9`, `5`, `latest`, `5.9.3-php7.4-apache`, `5.9-php7.4-apache`, `5-php7.4-apache`, `php7.4-apache`, `5.9.3-php7.4`, `5.9-php7.4`, `5-php7.4`, `php7.4`](https://github.com/docker-library/wordpress/blob/3b5c63b5673f298c14142c0c0e3e51edbdb17fd3/latest/php7.4/apache/Dockerfile)
+-	[`5.9.3-fpm`, `5.9-fpm`, `5-fpm`, `fpm`, `5.9.3-php7.4-fpm`, `5.9-php7.4-fpm`, `5-php7.4-fpm`, `php7.4-fpm`](https://github.com/docker-library/wordpress/blob/3b5c63b5673f298c14142c0c0e3e51edbdb17fd3/latest/php7.4/fpm/Dockerfile)
+-	[`5.9.3-fpm-alpine`, `5.9-fpm-alpine`, `5-fpm-alpine`, `fpm-alpine`, `5.9.3-php7.4-fpm-alpine`, `5.9-php7.4-fpm-alpine`, `5-php7.4-fpm-alpine`, `php7.4-fpm-alpine`](https://github.com/docker-library/wordpress/blob/3b5c63b5673f298c14142c0c0e3e51edbdb17fd3/latest/php7.4/fpm-alpine/Dockerfile)
+-	[`5.9.3-php8.0-apache`, `5.9-php8.0-apache`, `5-php8.0-apache`, `php8.0-apache`, `5.9.3-php8.0`, `5.9-php8.0`, `5-php8.0`, `php8.0`](https://github.com/docker-library/wordpress/blob/3b5c63b5673f298c14142c0c0e3e51edbdb17fd3/latest/php8.0/apache/Dockerfile)
+-	[`5.9.3-php8.0-fpm`, `5.9-php8.0-fpm`, `5-php8.0-fpm`, `php8.0-fpm`](https://github.com/docker-library/wordpress/blob/3b5c63b5673f298c14142c0c0e3e51edbdb17fd3/latest/php8.0/fpm/Dockerfile)
+-	[`5.9.3-php8.0-fpm-alpine`, `5.9-php8.0-fpm-alpine`, `5-php8.0-fpm-alpine`, `php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/3b5c63b5673f298c14142c0c0e3e51edbdb17fd3/latest/php8.0/fpm-alpine/Dockerfile)
+-	[`5.9.3-php8.1-apache`, `5.9-php8.1-apache`, `5-php8.1-apache`, `php8.1-apache`, `5.9.3-php8.1`, `5.9-php8.1`, `5-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/3b5c63b5673f298c14142c0c0e3e51edbdb17fd3/latest/php8.1/apache/Dockerfile)
+-	[`5.9.3-php8.1-fpm`, `5.9-php8.1-fpm`, `5-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/3b5c63b5673f298c14142c0c0e3e51edbdb17fd3/latest/php8.1/fpm/Dockerfile)
+-	[`5.9.3-php8.1-fpm-alpine`, `5.9-php8.1-fpm-alpine`, `5-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/3b5c63b5673f298c14142c0c0e3e51edbdb17fd3/latest/php8.1/fpm-alpine/Dockerfile)
 -	[`cli-2.6.0`, `cli-2.6`, `cli-2`, `cli`, `cli-2.6.0-php7.4`, `cli-2.6-php7.4`, `cli-2-php7.4`, `cli-php7.4`](https://github.com/docker-library/wordpress/blob/376f01affcaacac50d8416b5f7f4abb34d6b60d2/cli/php7.4/alpine/Dockerfile)
 -	[`cli-2.6.0-php8.0`, `cli-2.6-php8.0`, `cli-2-php8.0`, `cli-php8.0`](https://github.com/docker-library/wordpress/blob/376f01affcaacac50d8416b5f7f4abb34d6b60d2/cli/php8.0/alpine/Dockerfile)
 -	[`cli-2.6.0-php8.1`, `cli-2.6-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/376f01affcaacac50d8416b5f7f4abb34d6b60d2/cli/php8.1/alpine/Dockerfile)
--	[`beta-5.9.3-RC1-apache`, `beta-5.9.3-apache`, `beta-5.9-apache`, `beta-5-apache`, `beta-apache`, `beta-5.9.3-RC1`, `beta-5.9.3`, `beta-5.9`, `beta-5`, `beta`, `beta-5.9.3-RC1-php7.4-apache`, `beta-5.9.3-php7.4-apache`, `beta-5.9-php7.4-apache`, `beta-5-php7.4-apache`, `beta-php7.4-apache`, `beta-5.9.3-RC1-php7.4`, `beta-5.9.3-php7.4`, `beta-5.9-php7.4`, `beta-5-php7.4`, `beta-php7.4`](https://github.com/docker-library/wordpress/blob/8eb3692723bcb062813869361a156413eb4a6656/beta/php7.4/apache/Dockerfile)
--	[`beta-5.9.3-RC1-fpm`, `beta-5.9.3-fpm`, `beta-5.9-fpm`, `beta-5-fpm`, `beta-fpm`, `beta-5.9.3-RC1-php7.4-fpm`, `beta-5.9.3-php7.4-fpm`, `beta-5.9-php7.4-fpm`, `beta-5-php7.4-fpm`, `beta-php7.4-fpm`](https://github.com/docker-library/wordpress/blob/8eb3692723bcb062813869361a156413eb4a6656/beta/php7.4/fpm/Dockerfile)
--	[`beta-5.9.3-RC1-fpm-alpine`, `beta-5.9.3-fpm-alpine`, `beta-5.9-fpm-alpine`, `beta-5-fpm-alpine`, `beta-fpm-alpine`, `beta-5.9.3-RC1-php7.4-fpm-alpine`, `beta-5.9.3-php7.4-fpm-alpine`, `beta-5.9-php7.4-fpm-alpine`, `beta-5-php7.4-fpm-alpine`, `beta-php7.4-fpm-alpine`](https://github.com/docker-library/wordpress/blob/8eb3692723bcb062813869361a156413eb4a6656/beta/php7.4/fpm-alpine/Dockerfile)
--	[`beta-5.9.3-RC1-php8.0-apache`, `beta-5.9.3-php8.0-apache`, `beta-5.9-php8.0-apache`, `beta-5-php8.0-apache`, `beta-php8.0-apache`, `beta-5.9.3-RC1-php8.0`, `beta-5.9.3-php8.0`, `beta-5.9-php8.0`, `beta-5-php8.0`, `beta-php8.0`](https://github.com/docker-library/wordpress/blob/8eb3692723bcb062813869361a156413eb4a6656/beta/php8.0/apache/Dockerfile)
--	[`beta-5.9.3-RC1-php8.0-fpm`, `beta-5.9.3-php8.0-fpm`, `beta-5.9-php8.0-fpm`, `beta-5-php8.0-fpm`, `beta-php8.0-fpm`](https://github.com/docker-library/wordpress/blob/8eb3692723bcb062813869361a156413eb4a6656/beta/php8.0/fpm/Dockerfile)
--	[`beta-5.9.3-RC1-php8.0-fpm-alpine`, `beta-5.9.3-php8.0-fpm-alpine`, `beta-5.9-php8.0-fpm-alpine`, `beta-5-php8.0-fpm-alpine`, `beta-php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/8eb3692723bcb062813869361a156413eb4a6656/beta/php8.0/fpm-alpine/Dockerfile)
--	[`beta-5.9.3-RC1-php8.1-apache`, `beta-5.9.3-php8.1-apache`, `beta-5.9-php8.1-apache`, `beta-5-php8.1-apache`, `beta-php8.1-apache`, `beta-5.9.3-RC1-php8.1`, `beta-5.9.3-php8.1`, `beta-5.9-php8.1`, `beta-5-php8.1`, `beta-php8.1`](https://github.com/docker-library/wordpress/blob/8eb3692723bcb062813869361a156413eb4a6656/beta/php8.1/apache/Dockerfile)
--	[`beta-5.9.3-RC1-php8.1-fpm`, `beta-5.9.3-php8.1-fpm`, `beta-5.9-php8.1-fpm`, `beta-5-php8.1-fpm`, `beta-php8.1-fpm`](https://github.com/docker-library/wordpress/blob/8eb3692723bcb062813869361a156413eb4a6656/beta/php8.1/fpm/Dockerfile)
--	[`beta-5.9.3-RC1-php8.1-fpm-alpine`, `beta-5.9.3-php8.1-fpm-alpine`, `beta-5.9-php8.1-fpm-alpine`, `beta-5-php8.1-fpm-alpine`, `beta-php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/8eb3692723bcb062813869361a156413eb4a6656/beta/php8.1/fpm-alpine/Dockerfile)
 
 # Quick reference (cont.)