Browse Source

Run update.sh

Docker Library Bot 5 years ago
parent
commit
1f20ceb114
8 changed files with 113 additions and 129 deletions
  1. 22 6
      drupal/README.md
  2. 4 4
      flink/README.md
  3. 30 34
      hylang/README.md
  4. 3 3
      mariadb/README.md
  5. 44 78
      open-liberty/README.md
  6. 6 0
      rapidoid/README.md
  7. 2 2
      traefik/README.md
  8. 2 2
      xwiki/README.md

+ 22 - 6
drupal/README.md

@@ -81,23 +81,39 @@ When first accessing the webserver provided by this image, it will go through a
 
 ## MySQL
 
+For using Drupal with a MySQL database you'll want to run a [MySQL](https://hub.docker.com/_/mysql/) container and configure it using environment variables for `MYSQL_DATABASE`, `MYSQL_USER`, `MYSQL_PASSWORD`, and `MYSQL_ROOT_PASSWORD`
+
 ```console
-$ docker run --name some-drupal --network some-network -d drupal
+$ docker run -d --name some-mysql --network some-network \
+	-e MYSQL_DATABASE=drupal \
+	-e MYSQL_USER=user \
+	-e MYSQL_PASSWORD=password \
+	-e MYSQL_ROOT_PASSWORD=password \
+mysql:5.7
 ```
 
--	Database type: `MySQL, MariaDB, or equivalent`
+In Drupal's "set up database" step on the web installation walkthrough enter the values for the environment variables you provided
+
 -	Database name/username/password: `<details for accessing your MySQL instance>` (`MYSQL_USER`, `MYSQL_PASSWORD`, `MYSQL_DATABASE`; see environment variables in the description for [`mysql`](https://hub.docker.com/_/mysql/))
--	ADVANCED OPTIONS; Database host: `some-mysql` (for using the DNS entry added by `--network` to access the MySQL container)
+-	ADVANCED OPTIONS; Database host: `some-mysql` (Containers on the same [docker-network](https://docs.docker.com/v17.09/engine/userguide/networking/) are routable by their container-name)
 
 ## PostgreSQL
 
+For using Drupal with a PostgreSQL database you'll want to run a [Postgres](https://hub.docker.com/_/postgres) container and configure it using environment variables for `POSTGRES_DB`, `POSTGRES_USER`, and `POSTGRES_PASSWORD`
+
 ```console
-$ docker run --name some-drupal --network some-network -d drupal
+$ docker run -d --name some-postgres --network some-network \
+	-e POSTGRES_DB=drupal \
+	-e POSTGRES_USER=user \
+	-e POSTGRES_PASSWORD=pass \
+postgres:11
 ```
 
+In Drupal's "set up database" step on the web installation walkthrough enter the values for the environment variables you provided
+
 -	Database type: `PostgreSQL`
--	Database name/username/password: `<details for accessing your PostgreSQL instance>` (`POSTGRES_USER`, `POSTGRES_PASSWORD`; see environment variables in the description for [`postgres`](https://hub.docker.com/_/postgres/))
--	ADVANCED OPTIONS; Database host: `some-postgres` (for using the DNS entry added by `--network` to access the PostgreSQL container)
+-	Database name/username/password: `<details for accessing your PostgreSQL instance>` (`POSTGRES_USER`, `POSTGRES_PASSWORD`, `POSTGRES_DB`; see environment variables in the description for [`postgres`](https://hub.docker.com/_/postgres/))
+-	ADVANCED OPTIONS; Database host: `some-postgres` (Containers on the same [docker-network](https://docs.docker.com/v17.09/engine/userguide/networking/) are routable by their container-name)
 
 ## Volumes
 

+ 4 - 4
flink/README.md

@@ -16,10 +16,10 @@ WARNING:
 
 # Supported tags and respective `Dockerfile` links
 
--	[`1.8.2-scala_2.11`, `1.8-scala_2.11`](https://github.com/docker-flink/docker-flink/blob/a1c7fec05760b20a48ace3861874f90b6df9f396/1.8/scala_2.11-debian/Dockerfile)
--	[`1.8.2-scala_2.12`, `1.8-scala_2.12`, `1.8.2`, `1.8`](https://github.com/docker-flink/docker-flink/blob/a1c7fec05760b20a48ace3861874f90b6df9f396/1.8/scala_2.12-debian/Dockerfile)
--	[`1.9.1-scala_2.11`, `1.9-scala_2.11`, `scala_2.11`](https://github.com/docker-flink/docker-flink/blob/a1c7fec05760b20a48ace3861874f90b6df9f396/1.9/scala_2.11-debian/Dockerfile)
--	[`1.9.1-scala_2.12`, `1.9-scala_2.12`, `scala_2.12`, `1.9.1`, `1.9`, `latest`](https://github.com/docker-flink/docker-flink/blob/a1c7fec05760b20a48ace3861874f90b6df9f396/1.9/scala_2.12-debian/Dockerfile)
+-	[`1.8.3-scala_2.11`, `1.8-scala_2.11`](https://github.com/docker-flink/docker-flink/blob/4d85b71b7cf9fa4a38f8682ed13aa0f55445e32e/1.8/scala_2.11-debian/Dockerfile)
+-	[`1.8.3-scala_2.12`, `1.8-scala_2.12`, `1.8.3`, `1.8`](https://github.com/docker-flink/docker-flink/blob/4d85b71b7cf9fa4a38f8682ed13aa0f55445e32e/1.8/scala_2.12-debian/Dockerfile)
+-	[`1.9.1-scala_2.11`, `1.9-scala_2.11`, `scala_2.11`](https://github.com/docker-flink/docker-flink/blob/8cd66b6f89c13134270a4e865a40c2e5e72cfa21/1.9/scala_2.11-debian/Dockerfile)
+-	[`1.9.1-scala_2.12`, `1.9-scala_2.12`, `scala_2.12`, `1.9.1`, `1.9`, `latest`](https://github.com/docker-flink/docker-flink/blob/8cd66b6f89c13134270a4e865a40c2e5e72cfa21/1.9/scala_2.12-debian/Dockerfile)
 
 # Quick reference
 

+ 30 - 34
hylang/README.md

@@ -20,47 +20,43 @@ WARNING:
 
 ## Simple Tags
 
--	[`0.17.0-python3.7-buster`, `0.17-python3.7-buster`, `0-python3.7-buster`, `python3.7-buster`, `0.17.0-buster`, `0.17-buster`, `0-buster`, `buster`](https://github.com/hylang/docker-hylang/blob/3306ec49a8c629f4fc9e6287c39c01d2dea8bda9/dockerfiles-generated/Dockerfile.python3.7-buster)
--	[`0.17.0-python3.7-stretch`, `0.17-python3.7-stretch`, `0-python3.7-stretch`, `python3.7-stretch`, `0.17.0-stretch`, `0.17-stretch`, `0-stretch`, `stretch`](https://github.com/hylang/docker-hylang/blob/3306ec49a8c629f4fc9e6287c39c01d2dea8bda9/dockerfiles-generated/Dockerfile.python3.7-stretch)
--	[`0.17.0-python3.7-alpine3.10`, `0.17-python3.7-alpine3.10`, `0-python3.7-alpine3.10`, `python3.7-alpine3.10`, `0.17.0-alpine3.10`, `0.17-alpine3.10`, `0-alpine3.10`, `alpine3.10`, `0.17.0-python3.7-alpine`, `0.17-python3.7-alpine`, `0-python3.7-alpine`, `python3.7-alpine`, `0.17.0-alpine`, `0.17-alpine`, `0-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/3306ec49a8c629f4fc9e6287c39c01d2dea8bda9/dockerfiles-generated/Dockerfile.python3.7-alpine3.10)
--	[`0.17.0-python3.7-alpine3.9`, `0.17-python3.7-alpine3.9`, `0-python3.7-alpine3.9`, `python3.7-alpine3.9`, `0.17.0-alpine3.9`, `0.17-alpine3.9`, `0-alpine3.9`, `alpine3.9`](https://github.com/hylang/docker-hylang/blob/3306ec49a8c629f4fc9e6287c39c01d2dea8bda9/dockerfiles-generated/Dockerfile.python3.7-alpine3.9)
--	[`0.17.0-python3.7-windowsservercore-1809`, `0.17-python3.7-windowsservercore-1809`, `0-python3.7-windowsservercore-1809`, `python3.7-windowsservercore-1809`, `0.17.0-windowsservercore-1809`, `0.17-windowsservercore-1809`, `0-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/3306ec49a8c629f4fc9e6287c39c01d2dea8bda9/dockerfiles-generated/Dockerfile.python3.7-windowsservercore-1809)
--	[`0.17.0-python3.7-windowsservercore-1803`, `0.17-python3.7-windowsservercore-1803`, `0-python3.7-windowsservercore-1803`, `python3.7-windowsservercore-1803`, `0.17.0-windowsservercore-1803`, `0.17-windowsservercore-1803`, `0-windowsservercore-1803`, `windowsservercore-1803`](https://github.com/hylang/docker-hylang/blob/3306ec49a8c629f4fc9e6287c39c01d2dea8bda9/dockerfiles-generated/Dockerfile.python3.7-windowsservercore-1803)
--	[`0.17.0-python3.7-windowsservercore-ltsc2016`, `0.17-python3.7-windowsservercore-ltsc2016`, `0-python3.7-windowsservercore-ltsc2016`, `python3.7-windowsservercore-ltsc2016`, `0.17.0-windowsservercore-ltsc2016`, `0.17-windowsservercore-ltsc2016`, `0-windowsservercore-ltsc2016`, `windowsservercore-ltsc2016`](https://github.com/hylang/docker-hylang/blob/3306ec49a8c629f4fc9e6287c39c01d2dea8bda9/dockerfiles-generated/Dockerfile.python3.7-windowsservercore-ltsc2016)
--	[`0.17.0-python3.6-buster`, `0.17-python3.6-buster`, `0-python3.6-buster`, `python3.6-buster`](https://github.com/hylang/docker-hylang/blob/3306ec49a8c629f4fc9e6287c39c01d2dea8bda9/dockerfiles-generated/Dockerfile.python3.6-buster)
--	[`0.17.0-python3.6-stretch`, `0.17-python3.6-stretch`, `0-python3.6-stretch`, `python3.6-stretch`](https://github.com/hylang/docker-hylang/blob/3306ec49a8c629f4fc9e6287c39c01d2dea8bda9/dockerfiles-generated/Dockerfile.python3.6-stretch)
--	[`0.17.0-python3.6-alpine3.10`, `0.17-python3.6-alpine3.10`, `0-python3.6-alpine3.10`, `python3.6-alpine3.10`, `0.17.0-python3.6-alpine`, `0.17-python3.6-alpine`, `0-python3.6-alpine`, `python3.6-alpine`](https://github.com/hylang/docker-hylang/blob/3306ec49a8c629f4fc9e6287c39c01d2dea8bda9/dockerfiles-generated/Dockerfile.python3.6-alpine3.10)
--	[`0.17.0-python3.6-alpine3.9`, `0.17-python3.6-alpine3.9`, `0-python3.6-alpine3.9`, `python3.6-alpine3.9`](https://github.com/hylang/docker-hylang/blob/3306ec49a8c629f4fc9e6287c39c01d2dea8bda9/dockerfiles-generated/Dockerfile.python3.6-alpine3.9)
--	[`0.17.0-python3.5-buster`, `0.17-python3.5-buster`, `0-python3.5-buster`, `python3.5-buster`](https://github.com/hylang/docker-hylang/blob/3306ec49a8c629f4fc9e6287c39c01d2dea8bda9/dockerfiles-generated/Dockerfile.python3.5-buster)
--	[`0.17.0-python3.5-stretch`, `0.17-python3.5-stretch`, `0-python3.5-stretch`, `python3.5-stretch`](https://github.com/hylang/docker-hylang/blob/3306ec49a8c629f4fc9e6287c39c01d2dea8bda9/dockerfiles-generated/Dockerfile.python3.5-stretch)
--	[`0.17.0-python3.5-alpine3.10`, `0.17-python3.5-alpine3.10`, `0-python3.5-alpine3.10`, `python3.5-alpine3.10`, `0.17.0-python3.5-alpine`, `0.17-python3.5-alpine`, `0-python3.5-alpine`, `python3.5-alpine`](https://github.com/hylang/docker-hylang/blob/3306ec49a8c629f4fc9e6287c39c01d2dea8bda9/dockerfiles-generated/Dockerfile.python3.5-alpine3.10)
--	[`0.17.0-python3.5-alpine3.9`, `0.17-python3.5-alpine3.9`, `0-python3.5-alpine3.9`, `python3.5-alpine3.9`](https://github.com/hylang/docker-hylang/blob/3306ec49a8c629f4fc9e6287c39c01d2dea8bda9/dockerfiles-generated/Dockerfile.python3.5-alpine3.9)
--	[`0.17.0-python2.7-buster`, `0.17-python2.7-buster`, `0-python2.7-buster`, `python2.7-buster`](https://github.com/hylang/docker-hylang/blob/3306ec49a8c629f4fc9e6287c39c01d2dea8bda9/dockerfiles-generated/Dockerfile.python2.7-buster)
--	[`0.17.0-python2.7-stretch`, `0.17-python2.7-stretch`, `0-python2.7-stretch`, `python2.7-stretch`](https://github.com/hylang/docker-hylang/blob/3306ec49a8c629f4fc9e6287c39c01d2dea8bda9/dockerfiles-generated/Dockerfile.python2.7-stretch)
--	[`0.17.0-python2.7-alpine3.10`, `0.17-python2.7-alpine3.10`, `0-python2.7-alpine3.10`, `python2.7-alpine3.10`, `0.17.0-python2.7-alpine`, `0.17-python2.7-alpine`, `0-python2.7-alpine`, `python2.7-alpine`](https://github.com/hylang/docker-hylang/blob/3306ec49a8c629f4fc9e6287c39c01d2dea8bda9/dockerfiles-generated/Dockerfile.python2.7-alpine3.10)
--	[`0.17.0-python2.7-alpine3.9`, `0.17-python2.7-alpine3.9`, `0-python2.7-alpine3.9`, `python2.7-alpine3.9`](https://github.com/hylang/docker-hylang/blob/3306ec49a8c629f4fc9e6287c39c01d2dea8bda9/dockerfiles-generated/Dockerfile.python2.7-alpine3.9)
--	[`0.17.0-python2.7-windowsservercore-1809`, `0.17-python2.7-windowsservercore-1809`, `0-python2.7-windowsservercore-1809`, `python2.7-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/3306ec49a8c629f4fc9e6287c39c01d2dea8bda9/dockerfiles-generated/Dockerfile.python2.7-windowsservercore-1809)
--	[`0.17.0-python2.7-windowsservercore-1803`, `0.17-python2.7-windowsservercore-1803`, `0-python2.7-windowsservercore-1803`, `python2.7-windowsservercore-1803`](https://github.com/hylang/docker-hylang/blob/3306ec49a8c629f4fc9e6287c39c01d2dea8bda9/dockerfiles-generated/Dockerfile.python2.7-windowsservercore-1803)
--	[`0.17.0-python2.7-windowsservercore-ltsc2016`, `0.17-python2.7-windowsservercore-ltsc2016`, `0-python2.7-windowsservercore-ltsc2016`, `python2.7-windowsservercore-ltsc2016`](https://github.com/hylang/docker-hylang/blob/3306ec49a8c629f4fc9e6287c39c01d2dea8bda9/dockerfiles-generated/Dockerfile.python2.7-windowsservercore-ltsc2016)
--	[`0.17.0-pypy3.6-stretch`, `0.17-pypy3.6-stretch`, `0-pypy3.6-stretch`, `pypy3.6-stretch`, `0.17.0-pypy-stretch`, `0.17-pypy-stretch`, `0-pypy-stretch`, `pypy-stretch`](https://github.com/hylang/docker-hylang/blob/3306ec49a8c629f4fc9e6287c39c01d2dea8bda9/dockerfiles-generated/Dockerfile.pypy3.6-stretch)
--	[`0.17.0-pypy2.7-jessie`, `0.17-pypy2.7-jessie`, `0-pypy2.7-jessie`, `pypy2.7-jessie`](https://github.com/hylang/docker-hylang/blob/3306ec49a8c629f4fc9e6287c39c01d2dea8bda9/dockerfiles-generated/Dockerfile.pypy2.7-jessie)
+-	[`0.17.0-python3.7-buster`, `0.17-python3.7-buster`, `0-python3.7-buster`, `python3.7-buster`, `0.17.0-buster`, `0.17-buster`, `0-buster`, `buster`](https://github.com/hylang/docker-hylang/blob/7637a2ea0c4b00734c1979613529be060fad5120/dockerfiles-generated/Dockerfile.python3.7-buster)
+-	[`0.17.0-python3.7-stretch`, `0.17-python3.7-stretch`, `0-python3.7-stretch`, `python3.7-stretch`, `0.17.0-stretch`, `0.17-stretch`, `0-stretch`, `stretch`](https://github.com/hylang/docker-hylang/blob/7637a2ea0c4b00734c1979613529be060fad5120/dockerfiles-generated/Dockerfile.python3.7-stretch)
+-	[`0.17.0-python3.7-alpine3.10`, `0.17-python3.7-alpine3.10`, `0-python3.7-alpine3.10`, `python3.7-alpine3.10`, `0.17.0-alpine3.10`, `0.17-alpine3.10`, `0-alpine3.10`, `alpine3.10`, `0.17.0-python3.7-alpine`, `0.17-python3.7-alpine`, `0-python3.7-alpine`, `python3.7-alpine`, `0.17.0-alpine`, `0.17-alpine`, `0-alpine`, `alpine`](https://github.com/hylang/docker-hylang/blob/7637a2ea0c4b00734c1979613529be060fad5120/dockerfiles-generated/Dockerfile.python3.7-alpine3.10)
+-	[`0.17.0-python3.7-alpine3.9`, `0.17-python3.7-alpine3.9`, `0-python3.7-alpine3.9`, `python3.7-alpine3.9`, `0.17.0-alpine3.9`, `0.17-alpine3.9`, `0-alpine3.9`, `alpine3.9`](https://github.com/hylang/docker-hylang/blob/7637a2ea0c4b00734c1979613529be060fad5120/dockerfiles-generated/Dockerfile.python3.7-alpine3.9)
+-	[`0.17.0-python3.7-windowsservercore-1809`, `0.17-python3.7-windowsservercore-1809`, `0-python3.7-windowsservercore-1809`, `python3.7-windowsservercore-1809`, `0.17.0-windowsservercore-1809`, `0.17-windowsservercore-1809`, `0-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/7637a2ea0c4b00734c1979613529be060fad5120/dockerfiles-generated/Dockerfile.python3.7-windowsservercore-1809)
+-	[`0.17.0-python3.7-windowsservercore-ltsc2016`, `0.17-python3.7-windowsservercore-ltsc2016`, `0-python3.7-windowsservercore-ltsc2016`, `python3.7-windowsservercore-ltsc2016`, `0.17.0-windowsservercore-ltsc2016`, `0.17-windowsservercore-ltsc2016`, `0-windowsservercore-ltsc2016`, `windowsservercore-ltsc2016`](https://github.com/hylang/docker-hylang/blob/7637a2ea0c4b00734c1979613529be060fad5120/dockerfiles-generated/Dockerfile.python3.7-windowsservercore-ltsc2016)
+-	[`0.17.0-python3.6-buster`, `0.17-python3.6-buster`, `0-python3.6-buster`, `python3.6-buster`](https://github.com/hylang/docker-hylang/blob/7637a2ea0c4b00734c1979613529be060fad5120/dockerfiles-generated/Dockerfile.python3.6-buster)
+-	[`0.17.0-python3.6-stretch`, `0.17-python3.6-stretch`, `0-python3.6-stretch`, `python3.6-stretch`](https://github.com/hylang/docker-hylang/blob/7637a2ea0c4b00734c1979613529be060fad5120/dockerfiles-generated/Dockerfile.python3.6-stretch)
+-	[`0.17.0-python3.6-alpine3.10`, `0.17-python3.6-alpine3.10`, `0-python3.6-alpine3.10`, `python3.6-alpine3.10`, `0.17.0-python3.6-alpine`, `0.17-python3.6-alpine`, `0-python3.6-alpine`, `python3.6-alpine`](https://github.com/hylang/docker-hylang/blob/7637a2ea0c4b00734c1979613529be060fad5120/dockerfiles-generated/Dockerfile.python3.6-alpine3.10)
+-	[`0.17.0-python3.6-alpine3.9`, `0.17-python3.6-alpine3.9`, `0-python3.6-alpine3.9`, `python3.6-alpine3.9`](https://github.com/hylang/docker-hylang/blob/7637a2ea0c4b00734c1979613529be060fad5120/dockerfiles-generated/Dockerfile.python3.6-alpine3.9)
+-	[`0.17.0-python3.5-buster`, `0.17-python3.5-buster`, `0-python3.5-buster`, `python3.5-buster`](https://github.com/hylang/docker-hylang/blob/7637a2ea0c4b00734c1979613529be060fad5120/dockerfiles-generated/Dockerfile.python3.5-buster)
+-	[`0.17.0-python3.5-stretch`, `0.17-python3.5-stretch`, `0-python3.5-stretch`, `python3.5-stretch`](https://github.com/hylang/docker-hylang/blob/7637a2ea0c4b00734c1979613529be060fad5120/dockerfiles-generated/Dockerfile.python3.5-stretch)
+-	[`0.17.0-python3.5-alpine3.10`, `0.17-python3.5-alpine3.10`, `0-python3.5-alpine3.10`, `python3.5-alpine3.10`, `0.17.0-python3.5-alpine`, `0.17-python3.5-alpine`, `0-python3.5-alpine`, `python3.5-alpine`](https://github.com/hylang/docker-hylang/blob/7637a2ea0c4b00734c1979613529be060fad5120/dockerfiles-generated/Dockerfile.python3.5-alpine3.10)
+-	[`0.17.0-python3.5-alpine3.9`, `0.17-python3.5-alpine3.9`, `0-python3.5-alpine3.9`, `python3.5-alpine3.9`](https://github.com/hylang/docker-hylang/blob/7637a2ea0c4b00734c1979613529be060fad5120/dockerfiles-generated/Dockerfile.python3.5-alpine3.9)
+-	[`0.17.0-python2.7-buster`, `0.17-python2.7-buster`, `0-python2.7-buster`, `python2.7-buster`](https://github.com/hylang/docker-hylang/blob/7637a2ea0c4b00734c1979613529be060fad5120/dockerfiles-generated/Dockerfile.python2.7-buster)
+-	[`0.17.0-python2.7-stretch`, `0.17-python2.7-stretch`, `0-python2.7-stretch`, `python2.7-stretch`](https://github.com/hylang/docker-hylang/blob/7637a2ea0c4b00734c1979613529be060fad5120/dockerfiles-generated/Dockerfile.python2.7-stretch)
+-	[`0.17.0-python2.7-alpine3.10`, `0.17-python2.7-alpine3.10`, `0-python2.7-alpine3.10`, `python2.7-alpine3.10`, `0.17.0-python2.7-alpine`, `0.17-python2.7-alpine`, `0-python2.7-alpine`, `python2.7-alpine`](https://github.com/hylang/docker-hylang/blob/7637a2ea0c4b00734c1979613529be060fad5120/dockerfiles-generated/Dockerfile.python2.7-alpine3.10)
+-	[`0.17.0-python2.7-alpine3.9`, `0.17-python2.7-alpine3.9`, `0-python2.7-alpine3.9`, `python2.7-alpine3.9`](https://github.com/hylang/docker-hylang/blob/7637a2ea0c4b00734c1979613529be060fad5120/dockerfiles-generated/Dockerfile.python2.7-alpine3.9)
+-	[`0.17.0-python2.7-windowsservercore-1809`, `0.17-python2.7-windowsservercore-1809`, `0-python2.7-windowsservercore-1809`, `python2.7-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/7637a2ea0c4b00734c1979613529be060fad5120/dockerfiles-generated/Dockerfile.python2.7-windowsservercore-1809)
+-	[`0.17.0-python2.7-windowsservercore-ltsc2016`, `0.17-python2.7-windowsservercore-ltsc2016`, `0-python2.7-windowsservercore-ltsc2016`, `python2.7-windowsservercore-ltsc2016`](https://github.com/hylang/docker-hylang/blob/7637a2ea0c4b00734c1979613529be060fad5120/dockerfiles-generated/Dockerfile.python2.7-windowsservercore-ltsc2016)
+-	[`0.17.0-pypy3.6-stretch`, `0.17-pypy3.6-stretch`, `0-pypy3.6-stretch`, `pypy3.6-stretch`, `0.17.0-pypy-stretch`, `0.17-pypy-stretch`, `0-pypy-stretch`, `pypy-stretch`](https://github.com/hylang/docker-hylang/blob/7637a2ea0c4b00734c1979613529be060fad5120/dockerfiles-generated/Dockerfile.pypy3.6-stretch)
+-	[`0.17.0-pypy2.7-jessie`, `0.17-pypy2.7-jessie`, `0-pypy2.7-jessie`, `pypy2.7-jessie`](https://github.com/hylang/docker-hylang/blob/7637a2ea0c4b00734c1979613529be060fad5120/dockerfiles-generated/Dockerfile.pypy2.7-jessie)
 
 ## Shared Tags
 
 -	`0.17.0-python3.7`, `0.17-python3.7`, `0-python3.7`, `python3.7`, `0.17.0`, `0.17`, `0`, `latest`:
-	-	[`0.17.0-python3.7-buster`](https://github.com/hylang/docker-hylang/blob/3306ec49a8c629f4fc9e6287c39c01d2dea8bda9/dockerfiles-generated/Dockerfile.python3.7-buster)
-	-	[`0.17.0-python3.7-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/3306ec49a8c629f4fc9e6287c39c01d2dea8bda9/dockerfiles-generated/Dockerfile.python3.7-windowsservercore-1809)
-	-	[`0.17.0-python3.7-windowsservercore-1803`](https://github.com/hylang/docker-hylang/blob/3306ec49a8c629f4fc9e6287c39c01d2dea8bda9/dockerfiles-generated/Dockerfile.python3.7-windowsservercore-1803)
-	-	[`0.17.0-python3.7-windowsservercore-ltsc2016`](https://github.com/hylang/docker-hylang/blob/3306ec49a8c629f4fc9e6287c39c01d2dea8bda9/dockerfiles-generated/Dockerfile.python3.7-windowsservercore-ltsc2016)
+	-	[`0.17.0-python3.7-buster`](https://github.com/hylang/docker-hylang/blob/7637a2ea0c4b00734c1979613529be060fad5120/dockerfiles-generated/Dockerfile.python3.7-buster)
+	-	[`0.17.0-python3.7-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/7637a2ea0c4b00734c1979613529be060fad5120/dockerfiles-generated/Dockerfile.python3.7-windowsservercore-1809)
+	-	[`0.17.0-python3.7-windowsservercore-ltsc2016`](https://github.com/hylang/docker-hylang/blob/7637a2ea0c4b00734c1979613529be060fad5120/dockerfiles-generated/Dockerfile.python3.7-windowsservercore-ltsc2016)
 -	`0.17.0-python3.6`, `0.17-python3.6`, `0-python3.6`, `python3.6`:
-	-	[`0.17.0-python3.6-buster`](https://github.com/hylang/docker-hylang/blob/3306ec49a8c629f4fc9e6287c39c01d2dea8bda9/dockerfiles-generated/Dockerfile.python3.6-buster)
+	-	[`0.17.0-python3.6-buster`](https://github.com/hylang/docker-hylang/blob/7637a2ea0c4b00734c1979613529be060fad5120/dockerfiles-generated/Dockerfile.python3.6-buster)
 -	`0.17.0-python3.5`, `0.17-python3.5`, `0-python3.5`, `python3.5`:
-	-	[`0.17.0-python3.5-buster`](https://github.com/hylang/docker-hylang/blob/3306ec49a8c629f4fc9e6287c39c01d2dea8bda9/dockerfiles-generated/Dockerfile.python3.5-buster)
+	-	[`0.17.0-python3.5-buster`](https://github.com/hylang/docker-hylang/blob/7637a2ea0c4b00734c1979613529be060fad5120/dockerfiles-generated/Dockerfile.python3.5-buster)
 -	`0.17.0-python2.7`, `0.17-python2.7`, `0-python2.7`, `python2.7`:
-	-	[`0.17.0-python2.7-buster`](https://github.com/hylang/docker-hylang/blob/3306ec49a8c629f4fc9e6287c39c01d2dea8bda9/dockerfiles-generated/Dockerfile.python2.7-buster)
-	-	[`0.17.0-python2.7-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/3306ec49a8c629f4fc9e6287c39c01d2dea8bda9/dockerfiles-generated/Dockerfile.python2.7-windowsservercore-1809)
-	-	[`0.17.0-python2.7-windowsservercore-1803`](https://github.com/hylang/docker-hylang/blob/3306ec49a8c629f4fc9e6287c39c01d2dea8bda9/dockerfiles-generated/Dockerfile.python2.7-windowsservercore-1803)
-	-	[`0.17.0-python2.7-windowsservercore-ltsc2016`](https://github.com/hylang/docker-hylang/blob/3306ec49a8c629f4fc9e6287c39c01d2dea8bda9/dockerfiles-generated/Dockerfile.python2.7-windowsservercore-ltsc2016)
+	-	[`0.17.0-python2.7-buster`](https://github.com/hylang/docker-hylang/blob/7637a2ea0c4b00734c1979613529be060fad5120/dockerfiles-generated/Dockerfile.python2.7-buster)
+	-	[`0.17.0-python2.7-windowsservercore-1809`](https://github.com/hylang/docker-hylang/blob/7637a2ea0c4b00734c1979613529be060fad5120/dockerfiles-generated/Dockerfile.python2.7-windowsservercore-1809)
+	-	[`0.17.0-python2.7-windowsservercore-ltsc2016`](https://github.com/hylang/docker-hylang/blob/7637a2ea0c4b00734c1979613529be060fad5120/dockerfiles-generated/Dockerfile.python2.7-windowsservercore-ltsc2016)
 
 # Quick reference
 

+ 3 - 3
mariadb/README.md

@@ -16,9 +16,9 @@ WARNING:
 
 # Supported tags and respective `Dockerfile` links
 
--	[`10.4.10-bionic`, `10.4-bionic`, `10-bionic`, `bionic`, `10.4.10`, `10.4`, `10`, `latest`](https://github.com/docker-library/mariadb/blob/ad6b97a27e6c09b81fb8d1e091b276b8ca5fff76/10.4/Dockerfile)
--	[`10.3.20-bionic`, `10.3-bionic`, `10.3.20`, `10.3`](https://github.com/docker-library/mariadb/blob/ad6b97a27e6c09b81fb8d1e091b276b8ca5fff76/10.3/Dockerfile)
--	[`10.2.29-bionic`, `10.2-bionic`, `10.2.29`, `10.2`](https://github.com/docker-library/mariadb/blob/ad6b97a27e6c09b81fb8d1e091b276b8ca5fff76/10.2/Dockerfile)
+-	[`10.4.11-bionic`, `10.4-bionic`, `10-bionic`, `bionic`, `10.4.11`, `10.4`, `10`, `latest`](https://github.com/docker-library/mariadb/blob/2345e98dc89edae8f11c35ad838887f45859de75/10.4/Dockerfile)
+-	[`10.3.21-bionic`, `10.3-bionic`, `10.3.21`, `10.3`](https://github.com/docker-library/mariadb/blob/9ddcc2b4b0422a83dafc52e5574474dafc2fa9ca/10.3/Dockerfile)
+-	[`10.2.30-bionic`, `10.2-bionic`, `10.2.30`, `10.2`](https://github.com/docker-library/mariadb/blob/f03a74b3d8fe11a1da89a6f09dcac734f30dfd50/10.2/Dockerfile)
 -	[`10.1.43-bionic`, `10.1-bionic`, `10.1.43`, `10.1`](https://github.com/docker-library/mariadb/blob/ad6b97a27e6c09b81fb8d1e091b276b8ca5fff76/10.1/Dockerfile)
 
 # Quick reference

+ 44 - 78
open-liberty/README.md

@@ -16,84 +16,50 @@ WARNING:
 
 # Supported tags and respective `Dockerfile` links
 
--	[`kernel`, `kernel-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/latest/kernel/Dockerfile.ubuntu.adoptopenjdk8)
--	[`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/latest/full/Dockerfile.ubuntu.adoptopenjdk8)
--	[`19.0.0.9-kernel`, `19.0.0.9-kernel-java8-ibm`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.9/kernel/Dockerfile.ubuntu.ibmjava8)
--	[`19.0.0.9-kernel-java8-ibmsfj`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.9/kernel/Dockerfile.alpine.ibmsfj8)
--	[`19.0.0.9-kernel-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.9/kernel/Dockerfile.ubuntu.adoptopenjdk8)
--	[`19.0.0.9-kernel-java11`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.9/kernel/Dockerfile.ubuntu.adoptopenjdk11)
--	[`19.0.0.9-webProfile8`, `19.0.0.9-webProfile8-java8-ibm`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.9/webProfile8/Dockerfile.ubuntu.ibmjava8)
--	[`19.0.0.9-webProfile8-java8-ibmsfj`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.9/webProfile8/Dockerfile.alpine.ibmsfj8)
--	[`19.0.0.9-webProfile8-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.9/webProfile8/Dockerfile.ubuntu.adoptopenjdk8)
--	[`19.0.0.9-webProfile8-java11`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.9/webProfile8/Dockerfile.ubuntu.adoptopenjdk11)
--	[`19.0.0.9-javaee8`, `19.0.0.9-javaee8-java8-ibm`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.9/javaee8/Dockerfile.ubuntu.ibmjava8)
--	[`19.0.0.9-javaee8-java8-ibmsfj`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.9/javaee8/Dockerfile.alpine.ibmsfj8)
--	[`19.0.0.9-javaee8-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.9/javaee8/Dockerfile.ubuntu.adoptopenjdk8)
--	[`19.0.0.9-javaee8-java11`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.9/javaee8/Dockerfile.ubuntu.adoptopenjdk11)
--	[`19.0.0.9-microProfile1`, `19.0.0.9-microProfile1-java8-ibm`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.9/microProfile1/Dockerfile.ubuntu.ibmjava8)
--	[`19.0.0.9-microProfile1-java8-ibmsfj`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.9/microProfile1/Dockerfile.alpine.ibmsfj8)
--	[`19.0.0.9-microProfile1-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.9/microProfile1/Dockerfile.ubuntu.adoptopenjdk8)
--	[`19.0.0.9-microProfile1-java11`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.9/microProfile1/Dockerfile.ubuntu.adoptopenjdk11)
--	[`19.0.0.9-microProfile2`, `19.0.0.9-microProfile2-java8-ibm`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.9/microProfile2/Dockerfile.ubuntu.ibmjava8)
--	[`19.0.0.9-microProfile2-java8-ibmsfj`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.9/microProfile2/Dockerfile.alpine.ibmsfj8)
--	[`19.0.0.9-microProfile2-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.9/microProfile2/Dockerfile.ubuntu.adoptopenjdk8)
--	[`19.0.0.9-microProfile2-java11`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.9/microProfile2/Dockerfile.ubuntu.adoptopenjdk11)
--	[`19.0.0.9-microProfile3`, `19.0.0.9-microProfile3-java8-ibm`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.9/microProfile3/Dockerfile.ubuntu.ibmjava8)
--	[`19.0.0.9-microProfile3-java8-ibmsfj`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.9/microProfile3/Dockerfile.alpine.ibmsfj8)
--	[`19.0.0.9-microProfile3-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.9/microProfile3/Dockerfile.ubuntu.adoptopenjdk8)
--	[`19.0.0.9-microProfile3-java11`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.9/microProfile3/Dockerfile.ubuntu.adoptopenjdk11)
--	[`19.0.0.9-springBoot2`, `19.0.0.9-springBoot2-java8-ibm`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.9/springBoot2/Dockerfile.ubuntu.ibmjava8)
--	[`19.0.0.9-springBoot2-java8-ibmsfj`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.9/springBoot2/Dockerfile.alpine.ibmsfj8)
--	[`19.0.0.9-springBoot2-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.9/springBoot2/Dockerfile.ubuntu.adoptopenjdk8)
--	[`19.0.0.9-springBoot2-java11`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.9/springBoot2/Dockerfile.ubuntu.adoptopenjdk11)
--	[`19.0.0.9-webProfile7`, `19.0.0.9-webProfile7-java8-ibm`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.9/webProfile7/Dockerfile.ubuntu.ibmjava8)
--	[`19.0.0.9-webProfile7-java8-ibmsfj`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.9/webProfile7/Dockerfile.alpine.ibmsfj8)
--	[`19.0.0.9-webProfile7-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.9/webProfile7/Dockerfile.ubuntu.adoptopenjdk8)
--	[`19.0.0.9-webProfile7-java11`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.9/webProfile7/Dockerfile.ubuntu.adoptopenjdk11)
--	[`19.0.0.9-javaee7`, `19.0.0.9-javaee7-java8-ibm`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.9/javaee7/Dockerfile.ubuntu.ibmjava8)
--	[`19.0.0.9-javaee7-java8-ibmsfj`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.9/javaee7/Dockerfile.alpine.ibmsfj8)
--	[`19.0.0.9-javaee7-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.9/javaee7/Dockerfile.ubuntu.adoptopenjdk8)
--	[`19.0.0.9-javaee7-java11`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.9/javaee7/Dockerfile.ubuntu.adoptopenjdk11)
--	[`19.0.0.9-springBoot1`, `19.0.0.9-springBoot1-java8-ibm`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.9/springBoot1/Dockerfile.ubuntu.ibmjava8)
--	[`19.0.0.9-springBoot1-java8-ibmsfj`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.9/springBoot1/Dockerfile.alpine.ibmsfj8)
--	[`19.0.0.9-springBoot1-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.9/springBoot1/Dockerfile.ubuntu.adoptopenjdk8)
--	[`19.0.0.9-springBoot1-java11`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.9/springBoot1/Dockerfile.ubuntu.adoptopenjdk11)
--	[`19.0.0.6-kernel`, `19.0.0.6-kernel-java8-ibm`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.6/kernel/Dockerfile.ubuntu.ibmjava8)
--	[`19.0.0.6-kernel-java8-ibmsfj`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.6/kernel/Dockerfile.alpine.ibmsfj8)
--	[`19.0.0.6-kernel-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.6/kernel/Dockerfile.ubuntu.adoptopenjdk8)
--	[`19.0.0.6-kernel-java11`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.6/kernel/Dockerfile.ubuntu.adoptopenjdk11)
--	[`19.0.0.6-webProfile8`, `19.0.0.6-webProfile8-java8-ibm`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.6/webProfile8/Dockerfile.ubuntu.ibmjava8)
--	[`19.0.0.6-webProfile8-java8-ibmsfj`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.6/webProfile8/Dockerfile.alpine.ibmsfj8)
--	[`19.0.0.6-webProfile8-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.6/webProfile8/Dockerfile.ubuntu.adoptopenjdk8)
--	[`19.0.0.6-webProfile8-java11`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.6/webProfile8/Dockerfile.ubuntu.adoptopenjdk11)
--	[`19.0.0.6-javaee8`, `19.0.0.6-javaee8-java8-ibm`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.6/javaee8/Dockerfile.ubuntu.ibmjava8)
--	[`19.0.0.6-javaee8-java8-ibmsfj`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.6/javaee8/Dockerfile.alpine.ibmsfj8)
--	[`19.0.0.6-javaee8-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.6/javaee8/Dockerfile.ubuntu.adoptopenjdk8)
--	[`19.0.0.6-javaee8-java11`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.6/javaee8/Dockerfile.ubuntu.adoptopenjdk11)
--	[`19.0.0.6-microProfile1`, `19.0.0.6-microProfile1-java8-ibm`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.6/microProfile1/Dockerfile.ubuntu.ibmjava8)
--	[`19.0.0.6-microProfile1-java8-ibmsfj`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.6/microProfile1/Dockerfile.alpine.ibmsfj8)
--	[`19.0.0.6-microProfile1-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.6/microProfile1/Dockerfile.ubuntu.adoptopenjdk8)
--	[`19.0.0.6-microProfile1-java11`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.6/microProfile1/Dockerfile.ubuntu.adoptopenjdk11)
--	[`19.0.0.6-microProfile2`, `19.0.0.6-microProfile2-java8-ibm`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.6/microProfile2/Dockerfile.ubuntu.ibmjava8)
--	[`19.0.0.6-microProfile2-java8-ibmsfj`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.6/microProfile2/Dockerfile.alpine.ibmsfj8)
--	[`19.0.0.6-microProfile2-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.6/microProfile2/Dockerfile.ubuntu.adoptopenjdk8)
--	[`19.0.0.6-microProfile2-java11`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.6/microProfile2/Dockerfile.ubuntu.adoptopenjdk11)
--	[`19.0.0.6-springBoot2`, `19.0.0.6-springBoot2-java8-ibm`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.6/springBoot2/Dockerfile.ubuntu.ibmjava8)
--	[`19.0.0.6-springBoot2-java8-ibmsfj`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.6/springBoot2/Dockerfile.alpine.ibmsfj8)
--	[`19.0.0.6-springBoot2-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.6/springBoot2/Dockerfile.ubuntu.adoptopenjdk8)
--	[`19.0.0.6-springBoot2-java11`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.6/springBoot2/Dockerfile.ubuntu.adoptopenjdk11)
--	[`19.0.0.6-webProfile7`, `19.0.0.6-webProfile7-java8-ibm`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.6/webProfile7/Dockerfile.ubuntu.ibmjava8)
--	[`19.0.0.6-webProfile7-java8-ibmsfj`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.6/webProfile7/Dockerfile.alpine.ibmsfj8)
--	[`19.0.0.6-webProfile7-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.6/webProfile7/Dockerfile.ubuntu.adoptopenjdk8)
--	[`19.0.0.6-webProfile7-java11`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.6/webProfile7/Dockerfile.ubuntu.adoptopenjdk11)
--	[`19.0.0.6-javaee7`, `19.0.0.6-javaee7-java8-ibm`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.6/javaee7/Dockerfile.ubuntu.ibmjava8)
--	[`19.0.0.6-javaee7-java8-ibmsfj`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.6/javaee7/Dockerfile.alpine.ibmsfj8)
--	[`19.0.0.6-javaee7-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.6/javaee7/Dockerfile.ubuntu.adoptopenjdk8)
--	[`19.0.0.6-javaee7-java11`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.6/javaee7/Dockerfile.ubuntu.adoptopenjdk11)
--	[`19.0.0.6-springBoot1`, `19.0.0.6-springBoot1-java8-ibm`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.6/springBoot1/Dockerfile.ubuntu.ibmjava8)
--	[`19.0.0.6-springBoot1-java8-ibmsfj`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.6/springBoot1/Dockerfile.alpine.ibmsfj8)
--	[`19.0.0.6-springBoot1-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.6/springBoot1/Dockerfile.ubuntu.adoptopenjdk8)
--	[`19.0.0.6-springBoot1-java11`](https://github.com/OpenLiberty/ci.docker/blob/504fdf26e680b1f71de82ac4099044cb55e8e2d8/releases/19.0.0.6/springBoot1/Dockerfile.ubuntu.adoptopenjdk11)
+-	[`kernel`, `kernel-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/43bf4e06d9d58f757582d1189fe74d905327a27d/releases/latest/kernel/Dockerfile.ubuntu.adoptopenjdk8)
+-	[`full`, `full-java8-openj9`, `latest`](https://github.com/OpenLiberty/ci.docker/blob/43bf4e06d9d58f757582d1189fe74d905327a27d/releases/latest/full/Dockerfile.ubuntu.adoptopenjdk8)
+-	[`19.0.0.12-kernel-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/43bf4e06d9d58f757582d1189fe74d905327a27d/releases/19.0.0.12/kernel/Dockerfile.ubuntu.adoptopenjdk8)
+-	[`19.0.0.12-full-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/43bf4e06d9d58f757582d1189fe74d905327a27d/releases/19.0.0.12/full/Dockerfile.ubuntu.adoptopenjdk8)
+-	[`19.0.0.9-kernel`, `19.0.0.9-kernel-java8-ibm`](https://github.com/OpenLiberty/ci.docker/blob/43bf4e06d9d58f757582d1189fe74d905327a27d/releases/19.0.0.9/kernel/Dockerfile.ubuntu.ibmjava8)
+-	[`19.0.0.9-kernel-java8-ibmsfj`](https://github.com/OpenLiberty/ci.docker/blob/43bf4e06d9d58f757582d1189fe74d905327a27d/releases/19.0.0.9/kernel/Dockerfile.alpine.ibmsfj8)
+-	[`19.0.0.9-kernel-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/43bf4e06d9d58f757582d1189fe74d905327a27d/releases/19.0.0.9/kernel/Dockerfile.ubuntu.adoptopenjdk8)
+-	[`19.0.0.9-kernel-java11`](https://github.com/OpenLiberty/ci.docker/blob/43bf4e06d9d58f757582d1189fe74d905327a27d/releases/19.0.0.9/kernel/Dockerfile.ubuntu.adoptopenjdk11)
+-	[`19.0.0.9-webProfile8`, `19.0.0.9-webProfile8-java8-ibm`](https://github.com/OpenLiberty/ci.docker/blob/43bf4e06d9d58f757582d1189fe74d905327a27d/releases/19.0.0.9/webProfile8/Dockerfile.ubuntu.ibmjava8)
+-	[`19.0.0.9-webProfile8-java8-ibmsfj`](https://github.com/OpenLiberty/ci.docker/blob/43bf4e06d9d58f757582d1189fe74d905327a27d/releases/19.0.0.9/webProfile8/Dockerfile.alpine.ibmsfj8)
+-	[`19.0.0.9-webProfile8-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/43bf4e06d9d58f757582d1189fe74d905327a27d/releases/19.0.0.9/webProfile8/Dockerfile.ubuntu.adoptopenjdk8)
+-	[`19.0.0.9-webProfile8-java11`](https://github.com/OpenLiberty/ci.docker/blob/43bf4e06d9d58f757582d1189fe74d905327a27d/releases/19.0.0.9/webProfile8/Dockerfile.ubuntu.adoptopenjdk11)
+-	[`19.0.0.9-javaee8`, `19.0.0.9-javaee8-java8-ibm`](https://github.com/OpenLiberty/ci.docker/blob/43bf4e06d9d58f757582d1189fe74d905327a27d/releases/19.0.0.9/javaee8/Dockerfile.ubuntu.ibmjava8)
+-	[`19.0.0.9-javaee8-java8-ibmsfj`](https://github.com/OpenLiberty/ci.docker/blob/43bf4e06d9d58f757582d1189fe74d905327a27d/releases/19.0.0.9/javaee8/Dockerfile.alpine.ibmsfj8)
+-	[`19.0.0.9-javaee8-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/43bf4e06d9d58f757582d1189fe74d905327a27d/releases/19.0.0.9/javaee8/Dockerfile.ubuntu.adoptopenjdk8)
+-	[`19.0.0.9-javaee8-java11`](https://github.com/OpenLiberty/ci.docker/blob/43bf4e06d9d58f757582d1189fe74d905327a27d/releases/19.0.0.9/javaee8/Dockerfile.ubuntu.adoptopenjdk11)
+-	[`19.0.0.9-microProfile1`, `19.0.0.9-microProfile1-java8-ibm`](https://github.com/OpenLiberty/ci.docker/blob/43bf4e06d9d58f757582d1189fe74d905327a27d/releases/19.0.0.9/microProfile1/Dockerfile.ubuntu.ibmjava8)
+-	[`19.0.0.9-microProfile1-java8-ibmsfj`](https://github.com/OpenLiberty/ci.docker/blob/43bf4e06d9d58f757582d1189fe74d905327a27d/releases/19.0.0.9/microProfile1/Dockerfile.alpine.ibmsfj8)
+-	[`19.0.0.9-microProfile1-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/43bf4e06d9d58f757582d1189fe74d905327a27d/releases/19.0.0.9/microProfile1/Dockerfile.ubuntu.adoptopenjdk8)
+-	[`19.0.0.9-microProfile1-java11`](https://github.com/OpenLiberty/ci.docker/blob/43bf4e06d9d58f757582d1189fe74d905327a27d/releases/19.0.0.9/microProfile1/Dockerfile.ubuntu.adoptopenjdk11)
+-	[`19.0.0.9-microProfile2`, `19.0.0.9-microProfile2-java8-ibm`](https://github.com/OpenLiberty/ci.docker/blob/43bf4e06d9d58f757582d1189fe74d905327a27d/releases/19.0.0.9/microProfile2/Dockerfile.ubuntu.ibmjava8)
+-	[`19.0.0.9-microProfile2-java8-ibmsfj`](https://github.com/OpenLiberty/ci.docker/blob/43bf4e06d9d58f757582d1189fe74d905327a27d/releases/19.0.0.9/microProfile2/Dockerfile.alpine.ibmsfj8)
+-	[`19.0.0.9-microProfile2-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/43bf4e06d9d58f757582d1189fe74d905327a27d/releases/19.0.0.9/microProfile2/Dockerfile.ubuntu.adoptopenjdk8)
+-	[`19.0.0.9-microProfile2-java11`](https://github.com/OpenLiberty/ci.docker/blob/43bf4e06d9d58f757582d1189fe74d905327a27d/releases/19.0.0.9/microProfile2/Dockerfile.ubuntu.adoptopenjdk11)
+-	[`19.0.0.9-microProfile3`, `19.0.0.9-microProfile3-java8-ibm`](https://github.com/OpenLiberty/ci.docker/blob/43bf4e06d9d58f757582d1189fe74d905327a27d/releases/19.0.0.9/microProfile3/Dockerfile.ubuntu.ibmjava8)
+-	[`19.0.0.9-microProfile3-java8-ibmsfj`](https://github.com/OpenLiberty/ci.docker/blob/43bf4e06d9d58f757582d1189fe74d905327a27d/releases/19.0.0.9/microProfile3/Dockerfile.alpine.ibmsfj8)
+-	[`19.0.0.9-microProfile3-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/43bf4e06d9d58f757582d1189fe74d905327a27d/releases/19.0.0.9/microProfile3/Dockerfile.ubuntu.adoptopenjdk8)
+-	[`19.0.0.9-microProfile3-java11`](https://github.com/OpenLiberty/ci.docker/blob/43bf4e06d9d58f757582d1189fe74d905327a27d/releases/19.0.0.9/microProfile3/Dockerfile.ubuntu.adoptopenjdk11)
+-	[`19.0.0.9-springBoot2`, `19.0.0.9-springBoot2-java8-ibm`](https://github.com/OpenLiberty/ci.docker/blob/43bf4e06d9d58f757582d1189fe74d905327a27d/releases/19.0.0.9/springBoot2/Dockerfile.ubuntu.ibmjava8)
+-	[`19.0.0.9-springBoot2-java8-ibmsfj`](https://github.com/OpenLiberty/ci.docker/blob/43bf4e06d9d58f757582d1189fe74d905327a27d/releases/19.0.0.9/springBoot2/Dockerfile.alpine.ibmsfj8)
+-	[`19.0.0.9-springBoot2-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/43bf4e06d9d58f757582d1189fe74d905327a27d/releases/19.0.0.9/springBoot2/Dockerfile.ubuntu.adoptopenjdk8)
+-	[`19.0.0.9-springBoot2-java11`](https://github.com/OpenLiberty/ci.docker/blob/43bf4e06d9d58f757582d1189fe74d905327a27d/releases/19.0.0.9/springBoot2/Dockerfile.ubuntu.adoptopenjdk11)
+-	[`19.0.0.9-webProfile7`, `19.0.0.9-webProfile7-java8-ibm`](https://github.com/OpenLiberty/ci.docker/blob/43bf4e06d9d58f757582d1189fe74d905327a27d/releases/19.0.0.9/webProfile7/Dockerfile.ubuntu.ibmjava8)
+-	[`19.0.0.9-webProfile7-java8-ibmsfj`](https://github.com/OpenLiberty/ci.docker/blob/43bf4e06d9d58f757582d1189fe74d905327a27d/releases/19.0.0.9/webProfile7/Dockerfile.alpine.ibmsfj8)
+-	[`19.0.0.9-webProfile7-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/43bf4e06d9d58f757582d1189fe74d905327a27d/releases/19.0.0.9/webProfile7/Dockerfile.ubuntu.adoptopenjdk8)
+-	[`19.0.0.9-webProfile7-java11`](https://github.com/OpenLiberty/ci.docker/blob/43bf4e06d9d58f757582d1189fe74d905327a27d/releases/19.0.0.9/webProfile7/Dockerfile.ubuntu.adoptopenjdk11)
+-	[`19.0.0.9-javaee7`, `19.0.0.9-javaee7-java8-ibm`](https://github.com/OpenLiberty/ci.docker/blob/43bf4e06d9d58f757582d1189fe74d905327a27d/releases/19.0.0.9/javaee7/Dockerfile.ubuntu.ibmjava8)
+-	[`19.0.0.9-javaee7-java8-ibmsfj`](https://github.com/OpenLiberty/ci.docker/blob/43bf4e06d9d58f757582d1189fe74d905327a27d/releases/19.0.0.9/javaee7/Dockerfile.alpine.ibmsfj8)
+-	[`19.0.0.9-javaee7-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/43bf4e06d9d58f757582d1189fe74d905327a27d/releases/19.0.0.9/javaee7/Dockerfile.ubuntu.adoptopenjdk8)
+-	[`19.0.0.9-javaee7-java11`](https://github.com/OpenLiberty/ci.docker/blob/43bf4e06d9d58f757582d1189fe74d905327a27d/releases/19.0.0.9/javaee7/Dockerfile.ubuntu.adoptopenjdk11)
+-	[`19.0.0.9-springBoot1`, `19.0.0.9-springBoot1-java8-ibm`](https://github.com/OpenLiberty/ci.docker/blob/43bf4e06d9d58f757582d1189fe74d905327a27d/releases/19.0.0.9/springBoot1/Dockerfile.ubuntu.ibmjava8)
+-	[`19.0.0.9-springBoot1-java8-ibmsfj`](https://github.com/OpenLiberty/ci.docker/blob/43bf4e06d9d58f757582d1189fe74d905327a27d/releases/19.0.0.9/springBoot1/Dockerfile.alpine.ibmsfj8)
+-	[`19.0.0.9-springBoot1-java8-openj9`](https://github.com/OpenLiberty/ci.docker/blob/43bf4e06d9d58f757582d1189fe74d905327a27d/releases/19.0.0.9/springBoot1/Dockerfile.ubuntu.adoptopenjdk8)
+-	[`19.0.0.9-springBoot1-java11`](https://github.com/OpenLiberty/ci.docker/blob/43bf4e06d9d58f757582d1189fe74d905327a27d/releases/19.0.0.9/springBoot1/Dockerfile.ubuntu.adoptopenjdk11)
 
 # Quick reference
 

+ 6 - 0
rapidoid/README.md

@@ -14,6 +14,12 @@ WARNING:
 
 -->
 
+# **DEPRECATION NOTICE**
+
+This image is deprecated due to inactivity (last updated Aug 2018; [docker-library/official-images#4667](https://github.com/docker-library/official-images/pull/4667)).
+
+As noted in [docker-library/official-images#4667 (comment)](https://github.com/docker-library/official-images/pull/4667#issuecomment-565220107), it will likely see updates again when Rapidoid 6 is released.
+
 # Supported tags and respective `Dockerfile` links
 
 -	[`5.4.6`, `5.4`, `5`, `latest`](https://github.com/rapidoid/docker-rapidoid/blob/8fbb45c706fec5b0a015a37c24862127180ae9e9/Dockerfile)

+ 2 - 2
traefik/README.md

@@ -16,8 +16,8 @@ WARNING:
 
 # Supported tags and respective `Dockerfile` links
 
--	[`v2.1.0-windowsservercore-1809`, `2.1.0-windowsservercore-1809`, `v2.1-windowsservercore-1809`, `2.1-windowsservercore-1809`, `cantal-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/containous/traefik-library-image/blob/29e15e35329937ca87fe38a28155e172faca769d/windows/1809/Dockerfile)
--	[`v2.1.0`, `2.1.0`, `v2.1`, `2.1`, `cantal`, `latest`](https://github.com/containous/traefik-library-image/blob/29e15e35329937ca87fe38a28155e172faca769d/alpine/Dockerfile)
+-	[`v2.1.1-windowsservercore-1809`, `2.1.1-windowsservercore-1809`, `v2.1-windowsservercore-1809`, `2.1-windowsservercore-1809`, `cantal-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/containous/traefik-library-image/blob/b8287957384e1f425f810ad05aaa87d0e77b3268/windows/1809/Dockerfile)
+-	[`v2.1.1`, `2.1.1`, `v2.1`, `2.1`, `cantal`, `latest`](https://github.com/containous/traefik-library-image/blob/b8287957384e1f425f810ad05aaa87d0e77b3268/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)

+ 2 - 2
xwiki/README.md

@@ -18,8 +18,8 @@ WARNING:
 
 -	[`10`, `10.11`, `10.11.10`, `10-mysql-tomcat`, `mysql-tomcat`, `lts-mysql-tomcat`, `lts-mysql`, `lts`](https://github.com/xwiki-contrib/docker-xwiki/blob/633cc1bbd533a45b6dafe205f817b8afb45d5a9a/10/mysql-tomcat/Dockerfile)
 -	[`10-postgres-tomcat`, `10.11-postgres-tomcat`, `10.11.10-postgres-tomcat`, `postgres-tomcat`, `lts-postgres-tomcat`, `lts-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/633cc1bbd533a45b6dafe205f817b8afb45d5a9a/10/postgres-tomcat/Dockerfile)
--	[`11`, `11.10`, `11-mysql-tomcat`, `11.10-mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/633cc1bbd533a45b6dafe205f817b8afb45d5a9a/11/mysql-tomcat/Dockerfile)
--	[`11-postgres-tomcat`, `11.10-postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/633cc1bbd533a45b6dafe205f817b8afb45d5a9a/11/postgres-tomcat/Dockerfile)
+-	[`11`, `11.10`, `11.10.1`, `11-mysql-tomcat`, `11.10-mysql-tomcat`, `11.10.1-mysql-tomcat`, `stable-mysql-tomcat`, `stable-mysql`, `stable`, `latest`](https://github.com/xwiki-contrib/docker-xwiki/blob/1c0f65c352ade5100683f1877d86ff53ef48ef5b/11/mysql-tomcat/Dockerfile)
+-	[`11-postgres-tomcat`, `11.10-postgres-tomcat`, `11.10.1-postgres-tomcat`, `stable-postgres-tomcat`, `stable-postgres`](https://github.com/xwiki-contrib/docker-xwiki/blob/1c0f65c352ade5100683f1877d86ff53ef48ef5b/11/postgres-tomcat/Dockerfile)
 
 # Quick reference