Browse Source

Run update.sh

Docker Library Bot 5 years ago
parent
commit
fa28720da8
6 changed files with 51 additions and 67 deletions
  1. 2 2
      consul/README.md
  2. 4 3
      fedora/README.md
  3. 1 18
      influxdb/README.md
  4. 3 3
      kong/README.md
  5. 38 38
      php/README.md
  6. 3 3
      traefik/README.md

+ 2 - 2
consul/README.md

@@ -16,8 +16,8 @@ WARNING:
 
 # Supported tags and respective `Dockerfile` links
 
--	[`1.7.0`, `1.7`, `latest`](https://github.com/hashicorp/docker-consul/blob/20add33b31a54c8de514a72255618058727f0227/0.X/Dockerfile)
--	[`1.6.3`, `1.6`](https://github.com/hashicorp/docker-consul/blob/a6a7e327b27b148110e9bde6efbac6ea15bac7fa/0.X/Dockerfile)
+-	[`1.7.1`, `1.7`, `latest`](https://github.com/hashicorp/docker-consul/blob/6de10a87fa9bc8b881047d543a5c6567e0c7ec5c/0.X/Dockerfile)
+-	[`1.6.4`, `1.6`](https://github.com/hashicorp/docker-consul/blob/59bdf0ae8863e3166aadc81e18f8781a52a07136/0.X/Dockerfile)
 -	[`1.5.3`, `1.5`](https://github.com/hashicorp/docker-consul/blob/9d0aaa3caf747a7022969bcaaff3399fe34efc9c/0.X/Dockerfile)
 -	[`1.4.5`, `1.4`](https://github.com/hashicorp/docker-consul/blob/6294b73920ab700f9b38104f4de0ffe083e462e5/0.X/Dockerfile)
 -	[`1.3.1`, `1.3`](https://github.com/hashicorp/docker-consul/blob/9591d8392246c015dfee642f2634237ff791354a/0.X/Dockerfile)

+ 4 - 3
fedora/README.md

@@ -20,9 +20,10 @@ WARNING:
 -	[`27`](https://github.com/fedora-cloud/docker-brew-fedora/blob/e1796b2753d5a5731de5915661e4639c4342b950/x86_64/Dockerfile)
 -	[`28`](https://github.com/fedora-cloud/docker-brew-fedora/blob/aa106da2be30656a7ccb32b96f6788031ce8656f/x86_64/Dockerfile)
 -	[`29`](https://github.com/fedora-cloud/docker-brew-fedora/blob/4dbc2ccd3b4d52258981eaf12043025054d53023/x86_64/Dockerfile)
--	[`30`](https://github.com/fedora-cloud/docker-brew-fedora/blob/14e0023deca67bb8b1be7803949f804f490b7d1a/x86_64/Dockerfile)
--	[`latest`, `31`](https://github.com/fedora-cloud/docker-brew-fedora/blob/a531762a988cc17d88aa823350ba64596aadf721/x86_64/Dockerfile)
--	[`rawhide`, `32`](https://github.com/fedora-cloud/docker-brew-fedora/blob/0e2f9f74eaac694ba913812d9e1f889e45638a2b/x86_64/Dockerfile)
+-	[`30`](https://github.com/fedora-cloud/docker-brew-fedora/blob/ec092e1e4679f955d142b91f85ecd30a4f14a6ed/x86_64/Dockerfile)
+-	[`latest`, `31`](https://github.com/fedora-cloud/docker-brew-fedora/blob/799f0b09293e641b22bd4218cadf03013a82c9dd/x86_64/Dockerfile)
+-	[`32`](https://github.com/fedora-cloud/docker-brew-fedora/blob/2aa2af95cdeac2baf3f97aab0082448d1cd305cd/x86_64/Dockerfile)
+-	[`rawhide`, `33`](https://github.com/fedora-cloud/docker-brew-fedora/blob/80ea58e013ec6e8fe60dc79ded363f45df17e23e/x86_64/Dockerfile)
 
 # Quick reference
 

+ 1 - 18
influxdb/README.md

@@ -95,15 +95,10 @@ $ docker run -p 8086:8086 \
 The following ports are important and are used by InfluxDB.
 
 -	8086 HTTP API port
--	8083 Administrator interface port, if it is enabled
 -	2003 Graphite support, if it is enabled
 
 The HTTP API port will be automatically exposed when using `docker run -P`.
 
-The administrator interface is not automatically exposed when using `docker run -P` and is disabled by default. The adminstrator interface requires that the web browser have access to InfluxDB on the same port in the container as from the web browser. Since `-P` exposes the HTTP port to the host on a random port, the administrator interface is not compatible with this setting.
-
-The administrator interface is deprecated as of 1.1.0 and will be removed in 1.3.0.
-
 Find more about API Endpoints & Ports [here](https://docs.influxdata.com/influxdb/latest/concepts/api/).
 
 ### Configuration
@@ -150,18 +145,6 @@ docker run -p 8086:8086 -p 2003:2003 \
 
 See the [README on GitHub](https://github.com/influxdata/influxdb/blob/master/services/graphite/README.md) for more detailed documentation to set up the Graphite service. In order to take advantage of graphite templates, you should use a configuration file by outputting a default configuration file using the steps above and modifying the `[[graphite]]` section.
 
-### Administrator Interface
-
-The administrator interface is deprecated as of 1.1.0 and will be removed in 1.3.0. It is disabled by default. If needed, it can still be enabled by setting an environment variable like below:
-
-```console
-docker run -p 8086:8086 -p 8083:8083 \
-    -e INFLUXDB_ADMIN_ENABLED=true \
-    influxdb
-```
-
-To use the administrator interface, both the HTTP API and the administrator interface API's must be forwarded to the same port.
-
 ### HTTP API
 
 Creating a DB named mydb:
@@ -258,7 +241,7 @@ To manually initialize the database and exit, the `/init-influxdb.sh` script can
 
 ```console
 $ docker run --rm \
-      -e INFLUXDB_DB=db0 -e INFLUXDB_ADMIN_ENABLED=true \
+      -e INFLUXDB_DB=db0 \
       -e INFLUXDB_ADMIN_USER=admin -e INFLUXDB_ADMIN_PASSWORD=supersecretpassword \
       -e INFLUXDB_USER=telegraf -e INFLUXDB_USER_PASSWORD=secretpassword \
       -v $PWD:/var/lib/influxdb \

+ 3 - 3
kong/README.md

@@ -19,9 +19,9 @@ WARNING:
 -	[`2.0.1-alpine`, `2.0.1`, `2.0`, `latest`, `alpine`](https://github.com/Kong/docker-kong/blob/7c6281ca1906b05080af23c94fafa2ff08d05856/alpine/Dockerfile)
 -	[`2.0.1-ubuntu`, `2.0-ubuntu`, `ubuntu`](https://github.com/Kong/docker-kong/blob/7c6281ca1906b05080af23c94fafa2ff08d05856/ubuntu/Dockerfile)
 -	[`2.0.1-centos`, `2.0-centos`, `centos`](https://github.com/Kong/docker-kong/blob/7c6281ca1906b05080af23c94fafa2ff08d05856/centos/Dockerfile)
--	[`1.5.0-alpine`, `1.5.0`, `1.5`](https://github.com/Kong/docker-kong/blob/ec0c67d478157c48a4fdec616f88968e1613717a/alpine/Dockerfile)
--	[`1.5.0-ubuntu`, `1.5-ubuntu`](https://github.com/Kong/docker-kong/blob/ec0c67d478157c48a4fdec616f88968e1613717a/ubuntu/Dockerfile)
--	[`1.5.0-centos`, `1.5-centos`](https://github.com/Kong/docker-kong/blob/ec0c67d478157c48a4fdec616f88968e1613717a/centos/Dockerfile)
+-	[`1.5.1-alpine`, `1.5.1`, `1.5`](https://github.com/Kong/docker-kong/blob/610aa77c9d81b4e5fac2c8c8231b7054f3adc20d/alpine/Dockerfile)
+-	[`1.5.1-ubuntu`, `1.5-ubuntu`](https://github.com/Kong/docker-kong/blob/610aa77c9d81b4e5fac2c8c8231b7054f3adc20d/ubuntu/Dockerfile)
+-	[`1.5.1-centos`, `1.5-centos`](https://github.com/Kong/docker-kong/blob/610aa77c9d81b4e5fac2c8c8231b7054f3adc20d/centos/Dockerfile)
 -	[`1.4.3-alpine`, `1.4.3`, `1.4`](https://github.com/Kong/docker-kong/blob/d2884ee222e72c3edb9abd48d4062991e41ea7bc/alpine/Dockerfile)
 -	[`1.4.3-ubuntu`, `1.4-ubuntu`](https://github.com/Kong/docker-kong/blob/d2884ee222e72c3edb9abd48d4062991e41ea7bc/ubuntu/Dockerfile)
 -	[`1.4.3-centos`, `1.4-centos`](https://github.com/Kong/docker-kong/blob/d2884ee222e72c3edb9abd48d4062991e41ea7bc/centos/Dockerfile)

+ 38 - 38
php/README.md

@@ -16,44 +16,44 @@ WARNING:
 
 # Supported tags and respective `Dockerfile` links
 
--	[`7.4.2-cli-buster`, `7.4-cli-buster`, `7-cli-buster`, `cli-buster`, `7.4.2-buster`, `7.4-buster`, `7-buster`, `buster`, `7.4.2-cli`, `7.4-cli`, `7-cli`, `cli`, `7.4.2`, `7.4`, `7`, `latest`](https://github.com/docker-library/php/blob/703a3d0a4e4c149bfd62fc3e7b71645f9496b178/7.4/buster/cli/Dockerfile)
--	[`7.4.2-apache-buster`, `7.4-apache-buster`, `7-apache-buster`, `apache-buster`, `7.4.2-apache`, `7.4-apache`, `7-apache`, `apache`](https://github.com/docker-library/php/blob/703a3d0a4e4c149bfd62fc3e7b71645f9496b178/7.4/buster/apache/Dockerfile)
--	[`7.4.2-fpm-buster`, `7.4-fpm-buster`, `7-fpm-buster`, `fpm-buster`, `7.4.2-fpm`, `7.4-fpm`, `7-fpm`, `fpm`](https://github.com/docker-library/php/blob/703a3d0a4e4c149bfd62fc3e7b71645f9496b178/7.4/buster/fpm/Dockerfile)
--	[`7.4.2-zts-buster`, `7.4-zts-buster`, `7-zts-buster`, `zts-buster`, `7.4.2-zts`, `7.4-zts`, `7-zts`, `zts`](https://github.com/docker-library/php/blob/703a3d0a4e4c149bfd62fc3e7b71645f9496b178/7.4/buster/zts/Dockerfile)
--	[`7.4.2-cli-alpine3.11`, `7.4-cli-alpine3.11`, `7-cli-alpine3.11`, `cli-alpine3.11`, `7.4.2-alpine3.11`, `7.4-alpine3.11`, `7-alpine3.11`, `alpine3.11`, `7.4.2-cli-alpine`, `7.4-cli-alpine`, `7-cli-alpine`, `cli-alpine`, `7.4.2-alpine`, `7.4-alpine`, `7-alpine`, `alpine`](https://github.com/docker-library/php/blob/703a3d0a4e4c149bfd62fc3e7b71645f9496b178/7.4/alpine3.11/cli/Dockerfile)
--	[`7.4.2-fpm-alpine3.11`, `7.4-fpm-alpine3.11`, `7-fpm-alpine3.11`, `fpm-alpine3.11`, `7.4.2-fpm-alpine`, `7.4-fpm-alpine`, `7-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/703a3d0a4e4c149bfd62fc3e7b71645f9496b178/7.4/alpine3.11/fpm/Dockerfile)
--	[`7.4.2-zts-alpine3.11`, `7.4-zts-alpine3.11`, `7-zts-alpine3.11`, `zts-alpine3.11`, `7.4.2-zts-alpine`, `7.4-zts-alpine`, `7-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/703a3d0a4e4c149bfd62fc3e7b71645f9496b178/7.4/alpine3.11/zts/Dockerfile)
--	[`7.4.2-cli-alpine3.10`, `7.4-cli-alpine3.10`, `7-cli-alpine3.10`, `cli-alpine3.10`, `7.4.2-alpine3.10`, `7.4-alpine3.10`, `7-alpine3.10`, `alpine3.10`](https://github.com/docker-library/php/blob/703a3d0a4e4c149bfd62fc3e7b71645f9496b178/7.4/alpine3.10/cli/Dockerfile)
--	[`7.4.2-fpm-alpine3.10`, `7.4-fpm-alpine3.10`, `7-fpm-alpine3.10`, `fpm-alpine3.10`](https://github.com/docker-library/php/blob/703a3d0a4e4c149bfd62fc3e7b71645f9496b178/7.4/alpine3.10/fpm/Dockerfile)
--	[`7.4.2-zts-alpine3.10`, `7.4-zts-alpine3.10`, `7-zts-alpine3.10`, `zts-alpine3.10`](https://github.com/docker-library/php/blob/703a3d0a4e4c149bfd62fc3e7b71645f9496b178/7.4/alpine3.10/zts/Dockerfile)
--	[`7.3.14-cli-buster`, `7.3-cli-buster`, `7.3.14-buster`, `7.3-buster`, `7.3.14-cli`, `7.3-cli`, `7.3.14`, `7.3`](https://github.com/docker-library/php/blob/affbdaf1386876560e287cd7708fafe2a4d246eb/7.3/buster/cli/Dockerfile)
--	[`7.3.14-apache-buster`, `7.3-apache-buster`, `7.3.14-apache`, `7.3-apache`](https://github.com/docker-library/php/blob/affbdaf1386876560e287cd7708fafe2a4d246eb/7.3/buster/apache/Dockerfile)
--	[`7.3.14-fpm-buster`, `7.3-fpm-buster`, `7.3.14-fpm`, `7.3-fpm`](https://github.com/docker-library/php/blob/affbdaf1386876560e287cd7708fafe2a4d246eb/7.3/buster/fpm/Dockerfile)
--	[`7.3.14-zts-buster`, `7.3-zts-buster`, `7.3.14-zts`, `7.3-zts`](https://github.com/docker-library/php/blob/affbdaf1386876560e287cd7708fafe2a4d246eb/7.3/buster/zts/Dockerfile)
--	[`7.3.14-cli-stretch`, `7.3-cli-stretch`, `7.3.14-stretch`, `7.3-stretch`](https://github.com/docker-library/php/blob/affbdaf1386876560e287cd7708fafe2a4d246eb/7.3/stretch/cli/Dockerfile)
--	[`7.3.14-apache-stretch`, `7.3-apache-stretch`](https://github.com/docker-library/php/blob/affbdaf1386876560e287cd7708fafe2a4d246eb/7.3/stretch/apache/Dockerfile)
--	[`7.3.14-fpm-stretch`, `7.3-fpm-stretch`](https://github.com/docker-library/php/blob/affbdaf1386876560e287cd7708fafe2a4d246eb/7.3/stretch/fpm/Dockerfile)
--	[`7.3.14-zts-stretch`, `7.3-zts-stretch`](https://github.com/docker-library/php/blob/affbdaf1386876560e287cd7708fafe2a4d246eb/7.3/stretch/zts/Dockerfile)
--	[`7.3.14-cli-alpine3.11`, `7.3-cli-alpine3.11`, `7.3.14-alpine3.11`, `7.3-alpine3.11`, `7.3.14-cli-alpine`, `7.3-cli-alpine`, `7.3.14-alpine`, `7.3-alpine`](https://github.com/docker-library/php/blob/affbdaf1386876560e287cd7708fafe2a4d246eb/7.3/alpine3.11/cli/Dockerfile)
--	[`7.3.14-fpm-alpine3.11`, `7.3-fpm-alpine3.11`, `7.3.14-fpm-alpine`, `7.3-fpm-alpine`](https://github.com/docker-library/php/blob/affbdaf1386876560e287cd7708fafe2a4d246eb/7.3/alpine3.11/fpm/Dockerfile)
--	[`7.3.14-zts-alpine3.11`, `7.3-zts-alpine3.11`, `7.3.14-zts-alpine`, `7.3-zts-alpine`](https://github.com/docker-library/php/blob/affbdaf1386876560e287cd7708fafe2a4d246eb/7.3/alpine3.11/zts/Dockerfile)
--	[`7.3.14-cli-alpine3.10`, `7.3-cli-alpine3.10`, `7.3.14-alpine3.10`, `7.3-alpine3.10`](https://github.com/docker-library/php/blob/affbdaf1386876560e287cd7708fafe2a4d246eb/7.3/alpine3.10/cli/Dockerfile)
--	[`7.3.14-fpm-alpine3.10`, `7.3-fpm-alpine3.10`](https://github.com/docker-library/php/blob/affbdaf1386876560e287cd7708fafe2a4d246eb/7.3/alpine3.10/fpm/Dockerfile)
--	[`7.3.14-zts-alpine3.10`, `7.3-zts-alpine3.10`](https://github.com/docker-library/php/blob/affbdaf1386876560e287cd7708fafe2a4d246eb/7.3/alpine3.10/zts/Dockerfile)
--	[`7.2.27-cli-buster`, `7.2-cli-buster`, `7.2.27-buster`, `7.2-buster`, `7.2.27-cli`, `7.2-cli`, `7.2.27`, `7.2`](https://github.com/docker-library/php/blob/bac7b0ca07ab28de2a3b3e8d9a052084ca98937d/7.2/buster/cli/Dockerfile)
--	[`7.2.27-apache-buster`, `7.2-apache-buster`, `7.2.27-apache`, `7.2-apache`](https://github.com/docker-library/php/blob/bac7b0ca07ab28de2a3b3e8d9a052084ca98937d/7.2/buster/apache/Dockerfile)
--	[`7.2.27-fpm-buster`, `7.2-fpm-buster`, `7.2.27-fpm`, `7.2-fpm`](https://github.com/docker-library/php/blob/bac7b0ca07ab28de2a3b3e8d9a052084ca98937d/7.2/buster/fpm/Dockerfile)
--	[`7.2.27-zts-buster`, `7.2-zts-buster`, `7.2.27-zts`, `7.2-zts`](https://github.com/docker-library/php/blob/bac7b0ca07ab28de2a3b3e8d9a052084ca98937d/7.2/buster/zts/Dockerfile)
--	[`7.2.27-cli-stretch`, `7.2-cli-stretch`, `7.2.27-stretch`, `7.2-stretch`](https://github.com/docker-library/php/blob/bac7b0ca07ab28de2a3b3e8d9a052084ca98937d/7.2/stretch/cli/Dockerfile)
--	[`7.2.27-apache-stretch`, `7.2-apache-stretch`](https://github.com/docker-library/php/blob/bac7b0ca07ab28de2a3b3e8d9a052084ca98937d/7.2/stretch/apache/Dockerfile)
--	[`7.2.27-fpm-stretch`, `7.2-fpm-stretch`](https://github.com/docker-library/php/blob/bac7b0ca07ab28de2a3b3e8d9a052084ca98937d/7.2/stretch/fpm/Dockerfile)
--	[`7.2.27-zts-stretch`, `7.2-zts-stretch`](https://github.com/docker-library/php/blob/bac7b0ca07ab28de2a3b3e8d9a052084ca98937d/7.2/stretch/zts/Dockerfile)
--	[`7.2.27-cli-alpine3.11`, `7.2-cli-alpine3.11`, `7.2.27-alpine3.11`, `7.2-alpine3.11`, `7.2.27-cli-alpine`, `7.2-cli-alpine`, `7.2.27-alpine`, `7.2-alpine`](https://github.com/docker-library/php/blob/bac7b0ca07ab28de2a3b3e8d9a052084ca98937d/7.2/alpine3.11/cli/Dockerfile)
--	[`7.2.27-fpm-alpine3.11`, `7.2-fpm-alpine3.11`, `7.2.27-fpm-alpine`, `7.2-fpm-alpine`](https://github.com/docker-library/php/blob/bac7b0ca07ab28de2a3b3e8d9a052084ca98937d/7.2/alpine3.11/fpm/Dockerfile)
--	[`7.2.27-zts-alpine3.11`, `7.2-zts-alpine3.11`, `7.2.27-zts-alpine`, `7.2-zts-alpine`](https://github.com/docker-library/php/blob/bac7b0ca07ab28de2a3b3e8d9a052084ca98937d/7.2/alpine3.11/zts/Dockerfile)
--	[`7.2.27-cli-alpine3.10`, `7.2-cli-alpine3.10`, `7.2.27-alpine3.10`, `7.2-alpine3.10`](https://github.com/docker-library/php/blob/bac7b0ca07ab28de2a3b3e8d9a052084ca98937d/7.2/alpine3.10/cli/Dockerfile)
--	[`7.2.27-fpm-alpine3.10`, `7.2-fpm-alpine3.10`](https://github.com/docker-library/php/blob/bac7b0ca07ab28de2a3b3e8d9a052084ca98937d/7.2/alpine3.10/fpm/Dockerfile)
--	[`7.2.27-zts-alpine3.10`, `7.2-zts-alpine3.10`](https://github.com/docker-library/php/blob/bac7b0ca07ab28de2a3b3e8d9a052084ca98937d/7.2/alpine3.10/zts/Dockerfile)
+-	[`7.4.3-cli-buster`, `7.4-cli-buster`, `7-cli-buster`, `cli-buster`, `7.4.3-buster`, `7.4-buster`, `7-buster`, `buster`, `7.4.3-cli`, `7.4-cli`, `7-cli`, `cli`, `7.4.3`, `7.4`, `7`, `latest`](https://github.com/docker-library/php/blob/4b7da48c965c32148d028919e224d19cb14898db/7.4/buster/cli/Dockerfile)
+-	[`7.4.3-apache-buster`, `7.4-apache-buster`, `7-apache-buster`, `apache-buster`, `7.4.3-apache`, `7.4-apache`, `7-apache`, `apache`](https://github.com/docker-library/php/blob/4b7da48c965c32148d028919e224d19cb14898db/7.4/buster/apache/Dockerfile)
+-	[`7.4.3-fpm-buster`, `7.4-fpm-buster`, `7-fpm-buster`, `fpm-buster`, `7.4.3-fpm`, `7.4-fpm`, `7-fpm`, `fpm`](https://github.com/docker-library/php/blob/4b7da48c965c32148d028919e224d19cb14898db/7.4/buster/fpm/Dockerfile)
+-	[`7.4.3-zts-buster`, `7.4-zts-buster`, `7-zts-buster`, `zts-buster`, `7.4.3-zts`, `7.4-zts`, `7-zts`, `zts`](https://github.com/docker-library/php/blob/4b7da48c965c32148d028919e224d19cb14898db/7.4/buster/zts/Dockerfile)
+-	[`7.4.3-cli-alpine3.11`, `7.4-cli-alpine3.11`, `7-cli-alpine3.11`, `cli-alpine3.11`, `7.4.3-alpine3.11`, `7.4-alpine3.11`, `7-alpine3.11`, `alpine3.11`, `7.4.3-cli-alpine`, `7.4-cli-alpine`, `7-cli-alpine`, `cli-alpine`, `7.4.3-alpine`, `7.4-alpine`, `7-alpine`, `alpine`](https://github.com/docker-library/php/blob/4b7da48c965c32148d028919e224d19cb14898db/7.4/alpine3.11/cli/Dockerfile)
+-	[`7.4.3-fpm-alpine3.11`, `7.4-fpm-alpine3.11`, `7-fpm-alpine3.11`, `fpm-alpine3.11`, `7.4.3-fpm-alpine`, `7.4-fpm-alpine`, `7-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/php/blob/4b7da48c965c32148d028919e224d19cb14898db/7.4/alpine3.11/fpm/Dockerfile)
+-	[`7.4.3-zts-alpine3.11`, `7.4-zts-alpine3.11`, `7-zts-alpine3.11`, `zts-alpine3.11`, `7.4.3-zts-alpine`, `7.4-zts-alpine`, `7-zts-alpine`, `zts-alpine`](https://github.com/docker-library/php/blob/4b7da48c965c32148d028919e224d19cb14898db/7.4/alpine3.11/zts/Dockerfile)
+-	[`7.4.3-cli-alpine3.10`, `7.4-cli-alpine3.10`, `7-cli-alpine3.10`, `cli-alpine3.10`, `7.4.3-alpine3.10`, `7.4-alpine3.10`, `7-alpine3.10`, `alpine3.10`](https://github.com/docker-library/php/blob/4b7da48c965c32148d028919e224d19cb14898db/7.4/alpine3.10/cli/Dockerfile)
+-	[`7.4.3-fpm-alpine3.10`, `7.4-fpm-alpine3.10`, `7-fpm-alpine3.10`, `fpm-alpine3.10`](https://github.com/docker-library/php/blob/4b7da48c965c32148d028919e224d19cb14898db/7.4/alpine3.10/fpm/Dockerfile)
+-	[`7.4.3-zts-alpine3.10`, `7.4-zts-alpine3.10`, `7-zts-alpine3.10`, `zts-alpine3.10`](https://github.com/docker-library/php/blob/4b7da48c965c32148d028919e224d19cb14898db/7.4/alpine3.10/zts/Dockerfile)
+-	[`7.3.15-cli-buster`, `7.3-cli-buster`, `7.3.15-buster`, `7.3-buster`, `7.3.15-cli`, `7.3-cli`, `7.3.15`, `7.3`](https://github.com/docker-library/php/blob/a80762e229981b94c9fe6c381637350e9104096a/7.3/buster/cli/Dockerfile)
+-	[`7.3.15-apache-buster`, `7.3-apache-buster`, `7.3.15-apache`, `7.3-apache`](https://github.com/docker-library/php/blob/a80762e229981b94c9fe6c381637350e9104096a/7.3/buster/apache/Dockerfile)
+-	[`7.3.15-fpm-buster`, `7.3-fpm-buster`, `7.3.15-fpm`, `7.3-fpm`](https://github.com/docker-library/php/blob/a80762e229981b94c9fe6c381637350e9104096a/7.3/buster/fpm/Dockerfile)
+-	[`7.3.15-zts-buster`, `7.3-zts-buster`, `7.3.15-zts`, `7.3-zts`](https://github.com/docker-library/php/blob/a80762e229981b94c9fe6c381637350e9104096a/7.3/buster/zts/Dockerfile)
+-	[`7.3.15-cli-stretch`, `7.3-cli-stretch`, `7.3.15-stretch`, `7.3-stretch`](https://github.com/docker-library/php/blob/a80762e229981b94c9fe6c381637350e9104096a/7.3/stretch/cli/Dockerfile)
+-	[`7.3.15-apache-stretch`, `7.3-apache-stretch`](https://github.com/docker-library/php/blob/a80762e229981b94c9fe6c381637350e9104096a/7.3/stretch/apache/Dockerfile)
+-	[`7.3.15-fpm-stretch`, `7.3-fpm-stretch`](https://github.com/docker-library/php/blob/a80762e229981b94c9fe6c381637350e9104096a/7.3/stretch/fpm/Dockerfile)
+-	[`7.3.15-zts-stretch`, `7.3-zts-stretch`](https://github.com/docker-library/php/blob/a80762e229981b94c9fe6c381637350e9104096a/7.3/stretch/zts/Dockerfile)
+-	[`7.3.15-cli-alpine3.11`, `7.3-cli-alpine3.11`, `7.3.15-alpine3.11`, `7.3-alpine3.11`, `7.3.15-cli-alpine`, `7.3-cli-alpine`, `7.3.15-alpine`, `7.3-alpine`](https://github.com/docker-library/php/blob/a80762e229981b94c9fe6c381637350e9104096a/7.3/alpine3.11/cli/Dockerfile)
+-	[`7.3.15-fpm-alpine3.11`, `7.3-fpm-alpine3.11`, `7.3.15-fpm-alpine`, `7.3-fpm-alpine`](https://github.com/docker-library/php/blob/a80762e229981b94c9fe6c381637350e9104096a/7.3/alpine3.11/fpm/Dockerfile)
+-	[`7.3.15-zts-alpine3.11`, `7.3-zts-alpine3.11`, `7.3.15-zts-alpine`, `7.3-zts-alpine`](https://github.com/docker-library/php/blob/a80762e229981b94c9fe6c381637350e9104096a/7.3/alpine3.11/zts/Dockerfile)
+-	[`7.3.15-cli-alpine3.10`, `7.3-cli-alpine3.10`, `7.3.15-alpine3.10`, `7.3-alpine3.10`](https://github.com/docker-library/php/blob/a80762e229981b94c9fe6c381637350e9104096a/7.3/alpine3.10/cli/Dockerfile)
+-	[`7.3.15-fpm-alpine3.10`, `7.3-fpm-alpine3.10`](https://github.com/docker-library/php/blob/a80762e229981b94c9fe6c381637350e9104096a/7.3/alpine3.10/fpm/Dockerfile)
+-	[`7.3.15-zts-alpine3.10`, `7.3-zts-alpine3.10`](https://github.com/docker-library/php/blob/a80762e229981b94c9fe6c381637350e9104096a/7.3/alpine3.10/zts/Dockerfile)
+-	[`7.2.28-cli-buster`, `7.2-cli-buster`, `7.2.28-buster`, `7.2-buster`, `7.2.28-cli`, `7.2-cli`, `7.2.28`, `7.2`](https://github.com/docker-library/php/blob/23ac7b5e0d0e4ce78fef2f1e4b46d1c633ce77bd/7.2/buster/cli/Dockerfile)
+-	[`7.2.28-apache-buster`, `7.2-apache-buster`, `7.2.28-apache`, `7.2-apache`](https://github.com/docker-library/php/blob/23ac7b5e0d0e4ce78fef2f1e4b46d1c633ce77bd/7.2/buster/apache/Dockerfile)
+-	[`7.2.28-fpm-buster`, `7.2-fpm-buster`, `7.2.28-fpm`, `7.2-fpm`](https://github.com/docker-library/php/blob/23ac7b5e0d0e4ce78fef2f1e4b46d1c633ce77bd/7.2/buster/fpm/Dockerfile)
+-	[`7.2.28-zts-buster`, `7.2-zts-buster`, `7.2.28-zts`, `7.2-zts`](https://github.com/docker-library/php/blob/23ac7b5e0d0e4ce78fef2f1e4b46d1c633ce77bd/7.2/buster/zts/Dockerfile)
+-	[`7.2.28-cli-stretch`, `7.2-cli-stretch`, `7.2.28-stretch`, `7.2-stretch`](https://github.com/docker-library/php/blob/23ac7b5e0d0e4ce78fef2f1e4b46d1c633ce77bd/7.2/stretch/cli/Dockerfile)
+-	[`7.2.28-apache-stretch`, `7.2-apache-stretch`](https://github.com/docker-library/php/blob/23ac7b5e0d0e4ce78fef2f1e4b46d1c633ce77bd/7.2/stretch/apache/Dockerfile)
+-	[`7.2.28-fpm-stretch`, `7.2-fpm-stretch`](https://github.com/docker-library/php/blob/23ac7b5e0d0e4ce78fef2f1e4b46d1c633ce77bd/7.2/stretch/fpm/Dockerfile)
+-	[`7.2.28-zts-stretch`, `7.2-zts-stretch`](https://github.com/docker-library/php/blob/23ac7b5e0d0e4ce78fef2f1e4b46d1c633ce77bd/7.2/stretch/zts/Dockerfile)
+-	[`7.2.28-cli-alpine3.11`, `7.2-cli-alpine3.11`, `7.2.28-alpine3.11`, `7.2-alpine3.11`, `7.2.28-cli-alpine`, `7.2-cli-alpine`, `7.2.28-alpine`, `7.2-alpine`](https://github.com/docker-library/php/blob/23ac7b5e0d0e4ce78fef2f1e4b46d1c633ce77bd/7.2/alpine3.11/cli/Dockerfile)
+-	[`7.2.28-fpm-alpine3.11`, `7.2-fpm-alpine3.11`, `7.2.28-fpm-alpine`, `7.2-fpm-alpine`](https://github.com/docker-library/php/blob/23ac7b5e0d0e4ce78fef2f1e4b46d1c633ce77bd/7.2/alpine3.11/fpm/Dockerfile)
+-	[`7.2.28-zts-alpine3.11`, `7.2-zts-alpine3.11`, `7.2.28-zts-alpine`, `7.2-zts-alpine`](https://github.com/docker-library/php/blob/23ac7b5e0d0e4ce78fef2f1e4b46d1c633ce77bd/7.2/alpine3.11/zts/Dockerfile)
+-	[`7.2.28-cli-alpine3.10`, `7.2-cli-alpine3.10`, `7.2.28-alpine3.10`, `7.2-alpine3.10`](https://github.com/docker-library/php/blob/23ac7b5e0d0e4ce78fef2f1e4b46d1c633ce77bd/7.2/alpine3.10/cli/Dockerfile)
+-	[`7.2.28-fpm-alpine3.10`, `7.2-fpm-alpine3.10`](https://github.com/docker-library/php/blob/23ac7b5e0d0e4ce78fef2f1e4b46d1c633ce77bd/7.2/alpine3.10/fpm/Dockerfile)
+-	[`7.2.28-zts-alpine3.10`, `7.2-zts-alpine3.10`](https://github.com/docker-library/php/blob/23ac7b5e0d0e4ce78fef2f1e4b46d1c633ce77bd/7.2/alpine3.10/zts/Dockerfile)
 
 # Quick reference
 

+ 3 - 3
traefik/README.md

@@ -18,9 +18,9 @@ WARNING:
 
 -	[`v2.1.4-windowsservercore-1809`, `2.1.4-windowsservercore-1809`, `v2.1-windowsservercore-1809`, `2.1-windowsservercore-1809`, `cantal-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/containous/traefik-library-image/blob/cca10154857dd0f4c71bf0973dbe9821f2e17a2d/windows/1809/Dockerfile)
 -	[`v2.1.4`, `2.1.4`, `v2.1`, `2.1`, `cantal`, `latest`](https://github.com/containous/traefik-library-image/blob/cca10154857dd0f4c71bf0973dbe9821f2e17a2d/alpine/Dockerfile)
--	[`v1.7.20-windowsservercore-1809`, `1.7.20-windowsservercore-1809`, `v1.7-windowsservercore-1809`, `1.7-windowsservercore-1809`, `maroilles-windowsservercore-1809`](https://github.com/containous/traefik-library-image/blob/30e030d20c1da320d8817304e618f8d27157c79d/windows/1809/Dockerfile)
--	[`v1.7.20-alpine`, `1.7.20-alpine`, `v1.7-alpine`, `1.7-alpine`, `maroilles-alpine`](https://github.com/containous/traefik-library-image/blob/30e030d20c1da320d8817304e618f8d27157c79d/alpine/Dockerfile)
--	[`v1.7.20`, `1.7.20`, `v1.7`, `1.7`, `maroilles`](https://github.com/containous/traefik-library-image/blob/30e030d20c1da320d8817304e618f8d27157c79d/scratch/Dockerfile)
+-	[`v1.7.21-windowsservercore-1809`, `1.7.21-windowsservercore-1809`, `v1.7-windowsservercore-1809`, `1.7-windowsservercore-1809`, `maroilles-windowsservercore-1809`](https://github.com/containous/traefik-library-image/blob/0b074fb72cea580612c99f057e5c1b218183bad3/windows/1809/Dockerfile)
+-	[`v1.7.21-alpine`, `1.7.21-alpine`, `v1.7-alpine`, `1.7-alpine`, `maroilles-alpine`](https://github.com/containous/traefik-library-image/blob/0b074fb72cea580612c99f057e5c1b218183bad3/alpine/Dockerfile)
+-	[`v1.7.21`, `1.7.21`, `v1.7`, `1.7`, `maroilles`](https://github.com/containous/traefik-library-image/blob/0b074fb72cea580612c99f057e5c1b218183bad3/scratch/Dockerfile)
 
 # Quick reference