Run update.sh

This commit is contained in:
Docker Library Bot 2021-02-17 19:11:58 +00:00
parent c67e05e9ca
commit df1d583bdf
5 changed files with 30 additions and 22 deletions

View File

@ -24,10 +24,10 @@ WARNING:
# Supported tags and respective `Dockerfile` links
- [`1.19.6`, `mainline`, `1`, `1.19`, `latest`](https://github.com/nginxinc/docker-nginx/blob/41156d8a36bd03b2fb36353ba31f16ada08d9e48/mainline/debian/Dockerfile)
- [`1.19.6-perl`, `mainline-perl`, `1-perl`, `1.19-perl`, `perl`](https://github.com/nginxinc/docker-nginx/blob/41156d8a36bd03b2fb36353ba31f16ada08d9e48/mainline/debian-perl/Dockerfile)
- [`1.19.6-alpine`, `mainline-alpine`, `1-alpine`, `1.19-alpine`, `alpine`](https://github.com/nginxinc/docker-nginx/blob/41156d8a36bd03b2fb36353ba31f16ada08d9e48/mainline/alpine/Dockerfile)
- [`1.19.6-alpine-perl`, `mainline-alpine-perl`, `1-alpine-perl`, `1.19-alpine-perl`, `alpine-perl`](https://github.com/nginxinc/docker-nginx/blob/41156d8a36bd03b2fb36353ba31f16ada08d9e48/mainline/alpine-perl/Dockerfile)
- [`1.19.7`, `mainline`, `1`, `1.19`, `latest`](https://github.com/nginxinc/docker-nginx/blob/fa2213a76da35137a5aee565cef5095a209aeb3d/mainline/debian/Dockerfile)
- [`1.19.7-perl`, `mainline-perl`, `1-perl`, `1.19-perl`, `perl`](https://github.com/nginxinc/docker-nginx/blob/fa2213a76da35137a5aee565cef5095a209aeb3d/mainline/debian-perl/Dockerfile)
- [`1.19.7-alpine`, `mainline-alpine`, `1-alpine`, `1.19-alpine`, `alpine`](https://github.com/nginxinc/docker-nginx/blob/fa2213a76da35137a5aee565cef5095a209aeb3d/mainline/alpine/Dockerfile)
- [`1.19.7-alpine-perl`, `mainline-alpine-perl`, `1-alpine-perl`, `1.19-alpine-perl`, `alpine-perl`](https://github.com/nginxinc/docker-nginx/blob/fa2213a76da35137a5aee565cef5095a209aeb3d/mainline/alpine-perl/Dockerfile)
- [`1.18.0`, `stable`, `1.18`](https://github.com/nginxinc/docker-nginx/blob/3fb70ddd7094c1fdd50cc83d432643dc10ab6243/stable/debian/Dockerfile)
- [`1.18.0-perl`, `stable-perl`, `1.18-perl`](https://github.com/nginxinc/docker-nginx/blob/3fb70ddd7094c1fdd50cc83d432643dc10ab6243/stable/debian-perl/Dockerfile)
- [`1.18.0-alpine`, `stable-alpine`, `1.18-alpine`](https://github.com/nginxinc/docker-nginx/blob/3fb70ddd7094c1fdd50cc83d432643dc10ab6243/stable/alpine/Dockerfile)

View File

@ -24,9 +24,9 @@ WARNING:
# Supported tags and respective `Dockerfile` links
- [`14.0`, `14`, `latest`](https://github.com/odoo/docker/blob/6fb83876d016fcdcae40853c8e0d405dac7feaef/14.0/Dockerfile)
- [`13.0`, `13`](https://github.com/odoo/docker/blob/6fb83876d016fcdcae40853c8e0d405dac7feaef/13.0/Dockerfile)
- [`12.0`, `12`](https://github.com/odoo/docker/blob/6fb83876d016fcdcae40853c8e0d405dac7feaef/12.0/Dockerfile)
- [`14.0`, `14`, `latest`](https://github.com/odoo/docker/blob/f8212600f6478a15fac9ff3e7d8a926f78435860/14.0/Dockerfile)
- [`13.0`, `13`](https://github.com/odoo/docker/blob/f8212600f6478a15fac9ff3e7d8a926f78435860/13.0/Dockerfile)
- [`12.0`, `12`](https://github.com/odoo/docker/blob/f8212600f6478a15fac9ff3e7d8a926f78435860/12.0/Dockerfile)
# Quick reference (cont.)

View File

@ -111,12 +111,20 @@ Please note that this pattern will duplicate the docker layers for those artifac
There are multiple tags available in this repository.
The `kernel` image contains just the Liberty kernel and no additional runtime features. This image is the recommended basis for custom built images, so that they can contain only the features required for a specific application. For example, the following Dockerfile starts with this image, copies in the `server.xml` that lists the features required by the application, and then uses the `configure.sh` script to download those features from the online repository.
The `kernel-slim` image contains just the Liberty kernel and no additional runtime features. This image is the recommended basis for custom built images, so that they can contain only the features required for a specific application. For example, the following Dockerfile starts with this image, copies in the `server.xml` that lists the features required by the application, and then uses the `features.sh` script to download those features from the online repository.
```dockerfile
FROM open-liberty:kernel
COPY --chown=1001:0 Sample1.war /config/dropins/
FROM open-liberty:kernel-slim
# Add server configuration
COPY --chown=1001:0 server.xml /config/
# This script will add the requested XML snippets to enable Liberty features and grow image to be fit-for-purpose using featureUtility.
# Only available in 'kernel-slim'. The 'full' tag already includes all features for convenience.
RUN features.sh
# Add the application
COPY --chown=1001:0 Sample1.war /config/dropins/
# This script will add the requested server configurations, apply any interim fixes and populate caches to optimize runtime.
RUN configure.sh
```

View File

@ -24,9 +24,9 @@ WARNING:
# Supported tags and respective `Dockerfile` links
- [`3.3.5-apache`, `3.3-apache`, `3-apache`, `apache`, `3.3.5`, `3.3`, `3`, `latest`](https://github.com/postfixadmin/docker/blob/8c28d073b877e5f88e72fdfee5432cecefec45d3/apache/Dockerfile)
- [`3.3.5-fpm`, `3.3-fpm`, `3-fpm`, `fpm`](https://github.com/postfixadmin/docker/blob/8c28d073b877e5f88e72fdfee5432cecefec45d3/fpm/Dockerfile)
- [`3.3.5-fpm-alpine`, `3.3-fpm-alpine`, `3-fpm-alpine`, `fpm-alpine`](https://github.com/postfixadmin/docker/blob/8c28d073b877e5f88e72fdfee5432cecefec45d3/fpm-alpine/Dockerfile)
- [`3.3.6-apache`, `3.3-apache`, `3-apache`, `apache`, `3.3.6`, `3.3`, `3`, `latest`](https://github.com/postfixadmin/docker/blob/1bf306d0747aec808a39fce09d4151bc643b770a/apache/Dockerfile)
- [`3.3.6-fpm`, `3.3-fpm`, `3-fpm`, `fpm`](https://github.com/postfixadmin/docker/blob/1bf306d0747aec808a39fce09d4151bc643b770a/fpm/Dockerfile)
- [`3.3.6-fpm-alpine`, `3.3-fpm-alpine`, `3-fpm-alpine`, `fpm-alpine`](https://github.com/postfixadmin/docker/blob/1bf306d0747aec808a39fce09d4151bc643b770a/fpm-alpine/Dockerfile)
# Quick reference (cont.)

View File

@ -36,15 +36,15 @@ WARNING:
- [`cli-2.4.0`, `cli-2.4`, `cli-2`, `cli`, `cli-2.4.0-php7.4`, `cli-2.4-php7.4`, `cli-2-php7.4`, `cli-php7.4`](https://github.com/docker-library/wordpress/blob/fe3078d7544bd0bd77e30e1121988234f426dff9/cli/php7.4/alpine/Dockerfile)
- [`cli-2.4.0-php7.3`, `cli-2.4-php7.3`, `cli-2-php7.3`, `cli-php7.3`](https://github.com/docker-library/wordpress/blob/fe3078d7544bd0bd77e30e1121988234f426dff9/cli/php7.3/alpine/Dockerfile)
- [`cli-2.4.0-php8.0`, `cli-2.4-php8.0`, `cli-2-php8.0`, `cli-php8.0`](https://github.com/docker-library/wordpress/blob/ee3c59f90e29e2cf0087053a1d016c8186cab6ab/cli/php8.0/alpine/Dockerfile)
- [`beta-5.7-beta2-apache`, `beta-5.7-apache`, `beta-5-apache`, `beta-apache`, `beta-5.7-beta2`, `beta-5.7`, `beta-5`, `beta`, `beta-5.7-beta2-php7.4-apache`, `beta-5.7-php7.4-apache`, `beta-5-php7.4-apache`, `beta-php7.4-apache`, `beta-5.7-beta2-php7.4`, `beta-5.7-php7.4`, `beta-5-php7.4`, `beta-php7.4`](https://github.com/docker-library/wordpress/blob/ae88f4e4b5f9fe0d2a8234e2cb0f7a267370217c/beta/php7.4/apache/Dockerfile)
- [`beta-5.7-beta2-fpm`, `beta-5.7-fpm`, `beta-5-fpm`, `beta-fpm`, `beta-5.7-beta2-php7.4-fpm`, `beta-5.7-php7.4-fpm`, `beta-5-php7.4-fpm`, `beta-php7.4-fpm`](https://github.com/docker-library/wordpress/blob/ae88f4e4b5f9fe0d2a8234e2cb0f7a267370217c/beta/php7.4/fpm/Dockerfile)
- [`beta-5.7-beta2-fpm-alpine`, `beta-5.7-fpm-alpine`, `beta-5-fpm-alpine`, `beta-fpm-alpine`, `beta-5.7-beta2-php7.4-fpm-alpine`, `beta-5.7-php7.4-fpm-alpine`, `beta-5-php7.4-fpm-alpine`, `beta-php7.4-fpm-alpine`](https://github.com/docker-library/wordpress/blob/ae88f4e4b5f9fe0d2a8234e2cb0f7a267370217c/beta/php7.4/fpm-alpine/Dockerfile)
- [`beta-5.7-beta2-php7.3-apache`, `beta-5.7-php7.3-apache`, `beta-5-php7.3-apache`, `beta-php7.3-apache`, `beta-5.7-beta2-php7.3`, `beta-5.7-php7.3`, `beta-5-php7.3`, `beta-php7.3`](https://github.com/docker-library/wordpress/blob/ae88f4e4b5f9fe0d2a8234e2cb0f7a267370217c/beta/php7.3/apache/Dockerfile)
- [`beta-5.7-beta2-php7.3-fpm`, `beta-5.7-php7.3-fpm`, `beta-5-php7.3-fpm`, `beta-php7.3-fpm`](https://github.com/docker-library/wordpress/blob/ae88f4e4b5f9fe0d2a8234e2cb0f7a267370217c/beta/php7.3/fpm/Dockerfile)
- [`beta-5.7-beta2-php7.3-fpm-alpine`, `beta-5.7-php7.3-fpm-alpine`, `beta-5-php7.3-fpm-alpine`, `beta-php7.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/ae88f4e4b5f9fe0d2a8234e2cb0f7a267370217c/beta/php7.3/fpm-alpine/Dockerfile)
- [`beta-5.7-beta2-php8.0-apache`, `beta-5.7-php8.0-apache`, `beta-5-php8.0-apache`, `beta-php8.0-apache`, `beta-5.7-beta2-php8.0`, `beta-5.7-php8.0`, `beta-5-php8.0`, `beta-php8.0`](https://github.com/docker-library/wordpress/blob/ae88f4e4b5f9fe0d2a8234e2cb0f7a267370217c/beta/php8.0/apache/Dockerfile)
- [`beta-5.7-beta2-php8.0-fpm`, `beta-5.7-php8.0-fpm`, `beta-5-php8.0-fpm`, `beta-php8.0-fpm`](https://github.com/docker-library/wordpress/blob/ae88f4e4b5f9fe0d2a8234e2cb0f7a267370217c/beta/php8.0/fpm/Dockerfile)
- [`beta-5.7-beta2-php8.0-fpm-alpine`, `beta-5.7-php8.0-fpm-alpine`, `beta-5-php8.0-fpm-alpine`, `beta-php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/ae88f4e4b5f9fe0d2a8234e2cb0f7a267370217c/beta/php8.0/fpm-alpine/Dockerfile)
- [`beta-5.7-beta3-apache`, `beta-5.7-apache`, `beta-5-apache`, `beta-apache`, `beta-5.7-beta3`, `beta-5.7`, `beta-5`, `beta`, `beta-5.7-beta3-php7.4-apache`, `beta-5.7-php7.4-apache`, `beta-5-php7.4-apache`, `beta-php7.4-apache`, `beta-5.7-beta3-php7.4`, `beta-5.7-php7.4`, `beta-5-php7.4`, `beta-php7.4`](https://github.com/docker-library/wordpress/blob/44d43ba7218589a4478b8742b4c1a8ea0c4d120f/beta/php7.4/apache/Dockerfile)
- [`beta-5.7-beta3-fpm`, `beta-5.7-fpm`, `beta-5-fpm`, `beta-fpm`, `beta-5.7-beta3-php7.4-fpm`, `beta-5.7-php7.4-fpm`, `beta-5-php7.4-fpm`, `beta-php7.4-fpm`](https://github.com/docker-library/wordpress/blob/44d43ba7218589a4478b8742b4c1a8ea0c4d120f/beta/php7.4/fpm/Dockerfile)
- [`beta-5.7-beta3-fpm-alpine`, `beta-5.7-fpm-alpine`, `beta-5-fpm-alpine`, `beta-fpm-alpine`, `beta-5.7-beta3-php7.4-fpm-alpine`, `beta-5.7-php7.4-fpm-alpine`, `beta-5-php7.4-fpm-alpine`, `beta-php7.4-fpm-alpine`](https://github.com/docker-library/wordpress/blob/44d43ba7218589a4478b8742b4c1a8ea0c4d120f/beta/php7.4/fpm-alpine/Dockerfile)
- [`beta-5.7-beta3-php7.3-apache`, `beta-5.7-php7.3-apache`, `beta-5-php7.3-apache`, `beta-php7.3-apache`, `beta-5.7-beta3-php7.3`, `beta-5.7-php7.3`, `beta-5-php7.3`, `beta-php7.3`](https://github.com/docker-library/wordpress/blob/44d43ba7218589a4478b8742b4c1a8ea0c4d120f/beta/php7.3/apache/Dockerfile)
- [`beta-5.7-beta3-php7.3-fpm`, `beta-5.7-php7.3-fpm`, `beta-5-php7.3-fpm`, `beta-php7.3-fpm`](https://github.com/docker-library/wordpress/blob/44d43ba7218589a4478b8742b4c1a8ea0c4d120f/beta/php7.3/fpm/Dockerfile)
- [`beta-5.7-beta3-php7.3-fpm-alpine`, `beta-5.7-php7.3-fpm-alpine`, `beta-5-php7.3-fpm-alpine`, `beta-php7.3-fpm-alpine`](https://github.com/docker-library/wordpress/blob/44d43ba7218589a4478b8742b4c1a8ea0c4d120f/beta/php7.3/fpm-alpine/Dockerfile)
- [`beta-5.7-beta3-php8.0-apache`, `beta-5.7-php8.0-apache`, `beta-5-php8.0-apache`, `beta-php8.0-apache`, `beta-5.7-beta3-php8.0`, `beta-5.7-php8.0`, `beta-5-php8.0`, `beta-php8.0`](https://github.com/docker-library/wordpress/blob/44d43ba7218589a4478b8742b4c1a8ea0c4d120f/beta/php8.0/apache/Dockerfile)
- [`beta-5.7-beta3-php8.0-fpm`, `beta-5.7-php8.0-fpm`, `beta-5-php8.0-fpm`, `beta-php8.0-fpm`](https://github.com/docker-library/wordpress/blob/44d43ba7218589a4478b8742b4c1a8ea0c4d120f/beta/php8.0/fpm/Dockerfile)
- [`beta-5.7-beta3-php8.0-fpm-alpine`, `beta-5.7-php8.0-fpm-alpine`, `beta-5-php8.0-fpm-alpine`, `beta-php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/44d43ba7218589a4478b8742b4c1a8ea0c4d120f/beta/php8.0/fpm-alpine/Dockerfile)
# Quick reference (cont.)