From aa5a307692da5ba714d83d252bfc44f23794e957 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Tue, 18 Jun 2019 22:23:53 +0000 Subject: [PATCH] Run update.sh --- bonita/README.md | 70 +++++++++++++++++++++++++++------------- buildpack-deps/README.md | 3 -- erlang/README.md | 12 +++---- haproxy/README.md | 24 +++++++------- openjdk/README.md | 26 +++++++-------- orientdb/README.md | 4 +-- rocket.chat/README.md | 2 +- ubuntu/README.md | 11 +++---- 8 files changed, 87 insertions(+), 65 deletions(-) diff --git a/bonita/README.md b/bonita/README.md index b56c008c7..233ae6eaf 100644 --- a/bonita/README.md +++ b/bonita/README.md @@ -63,7 +63,7 @@ Bonita (called Bonita BPM till 7.5) is an open-source business process managemen $ docker run --name bonita -d -p 8080:8080 bonita ``` -This will start a container running the [Tomcat Bundle](https://documentation.bonitasoft.com/bonita/7.8/tomcat-bundle) with Bonita Engine + Bonita Portal. With no environment variables specified, it's as like if you have launched the bundle on your host using startup.{sh|bat} (with security hardening on REST and HTTP APIs, cf Security part). Bonita uses a H2 database here. +This will start a container running the [Tomcat Bundle](https://documentation.bonitasoft.com/bonita/7.9/tomcat-bundle) with Bonita Engine + Bonita Portal. With no environment variables specified, it's as like if you have launched the bundle on your host using startup.{sh|bat} (with security hardening on REST and HTTP APIs, cf Security part). Bonita uses a H2 database here. You can access the Bonita Portal on http://localhost:8080/bonita and login using the default credentials: install / install @@ -73,7 +73,7 @@ You can access the Bonita Portal on http://localhost:8080/bonita and login using PostgreSQL is the recommanded database. -[Set max_prepared_transactions to 100](https://documentation.bonitasoft.com/bonita/7.8/database-configuration#toc5): +[Set max_prepared_transactions to 100](https://documentation.bonitasoft.com/bonita/7.9/database-configuration#toc5): ```console $ mkdir -p custom_postgres @@ -98,7 +98,7 @@ $ docker run --name bonita_postgres --link mydbpostgres:postgres -d -p 8080:8080 There are known issues with the management of XA transactions by MySQL engine and driver: see MySQL bugs [17343](http://bugs.mysql.com/bug.php?id=17343) and [12161](http://bugs.mysql.com/bug.php?id=12161) for more details. Thus, using MySQL database in a production environment is not recommended. -[Increase the packet size](https://documentation.bonitasoft.com/bonita/7.8/database-configuration#toc5) which is set by default to 1M: +[Increase the packet size](https://documentation.bonitasoft.com/bonita/7.9/database-configuration#toc5) which is set by default to 1M: ```console $ mkdir -p custom_mysql @@ -186,7 +186,7 @@ Run `docker stack deploy -c stack.yml bonita` (or `docker-compose -f stack.yml u ## Where to store data -Most of the data are stored in a database and can be stored outside the Bonita container as described above using the PostgreSQL or MySQL container. However, some data remains inside the Bonita bundle. Bonita Home is a folder, called `bonita`, which contains configuration, working, and temporary folders and files. There are also log files inside the `logs` folder. +Most of the data are stored in a database and can be stored outside the Bonita container as described above using the PostgreSQL or MySQL container. However, some data remains inside the Bonita bundle. Bonita Home is a folder, called `bonita`, which contains configuration, working, and temporary folders and files. There are also log files inside the `logs` folder till Bonita 7.8. Important note: There are several ways to store data used by applications that run in Docker containers. We encourage users of the `bonita` images to familiarize themselves with the options available, including: @@ -268,9 +268,9 @@ The `-v /my/own/datadir:/opt/bonita` part of the command mounts the `/my/own/dat ```console cd bonita_migration - wget https://release.ow2.org/bonita/bonita-migration-distrib-2.40.0.zip + wget https://release.ow2.org/bonita/bonita-migration-distrib-2.41.0.zip wget https://download.forge.ow2.org/bonita/BonitaBPMCommunity-7.2.4-Tomcat-7.0.67.zip - unzip bonita-migration-distrib-2.40.0.zip + unzip bonita-migration-distrib-2.41.0.zip unzip BonitaBPMCommunity-7.2.4-Tomcat-7.0.67.zip ``` @@ -285,14 +285,14 @@ The `-v /my/own/datadir:/opt/bonita` part of the command mounts the `/my/own/dat ```console cd bonita_migration - wget https://release.ow2.org/bonita/bonita-migration-distrib-2.40.0.zip - unzip bonita-migration-distrib-2.40.0.zip + wget https://release.ow2.org/bonita/bonita-migration-distrib-2.41.0.zip + unzip bonita-migration-distrib-2.41.0.zip ``` - Configure the migration tool ```console - $ cd bonita-migration-distrib-2.40.0 + $ cd bonita-migration-distrib-2.41.0 ``` edit the migration tool config to point towards the copy of bonita home and db @@ -329,17 +329,17 @@ The `-v /my/own/datadir:/opt/bonita` part of the command mounts the `/my/own/dat - If >= 7.3.0 ```console - $ docker run --name=bonita_7.8.4_postgres --link mydbpostgres:postgres -e "DB_NAME=newbonitadb" -e "DB_USER=newbonitauser" -e "DB_PASS=newbonitapass" -d -p 8081:8080 bonita:7.8.4 + $ docker run --name=bonita_7.9.0_postgres --link mydbpostgres:postgres -e "DB_NAME=newbonitadb" -e "DB_USER=newbonitauser" -e "DB_PASS=newbonitapass" -d -p 8081:8080 bonita:7.9.0 ``` - Reapply specific configuration if needed, for example with a version >= 7.3.0 : ```console - $ docker exec -ti bonita_7.8.4_postgres /bin/bash + $ docker exec -ti bonita_7.9.0_postgres /bin/bash ``` ```console - $ cd /opt/bonita/BonitaCommunity-7.8.4-Tomcat-8.5.34/setup + $ cd /opt/bonita/BonitaCommunity-7.9.0-tomcat/setup $ ./setup.sh pull $ TENANT_LOGIN=tech_user $ TENANT_PASSWORD=secret @@ -359,10 +359,14 @@ The `-v /my/own/datadir:/opt/bonita` part of the command mounts the `/my/own/dat ``` ```console - $ docker restart bonita_7.8.4_postgres + $ docker restart bonita_7.9.0_postgres ``` -For more details regarding Bonita migration, see the [documentation](https://documentation.bonitasoft.com/bonita/7.8/migrate-from-an-earlier-version-of-bonita-bpm). +- Specific consideration regarding migration to Java 11 in Bonita 7.9 + + Bonita 7.9 docker image runs with Java 11. If you are migrating from an earlier version which runs Java 8, you should validate on a test environment that your custom code is compatible. Aside from just code incompatibility, special attention has to be given to the dependencies of the custom code, as they might not work in Java 11. + +For more details regarding Bonita migration, see the [documentation](https://documentation.bonitasoft.com/bonita/7.9/migrate-from-an-earlier-version-of-bonita-bpm). ## Security @@ -370,11 +374,11 @@ This Docker image activates both static and dynamic authorization checks by defa - REST API authorization - - [Static authorization checking](https://documentation.bonitasoft.com/bonita/7.8/rest-api-authorization#toc1) + - [Static authorization checking](https://documentation.bonitasoft.com/bonita/7.9/rest-api-authorization#toc1) - - [Dynamic authorization checking](https://documentation.bonitasoft.com/bonita/7.8/rest-api-authorization#toc2) + - [Dynamic authorization checking](https://documentation.bonitasoft.com/bonita/7.9/rest-api-authorization#toc2) -- [HTTP API](https://documentation.bonitasoft.com/bonita/7.8/rest-api-authorization#toc10) +- [HTTP API](https://documentation.bonitasoft.com/bonita/7.9/rest-api-authorization#toc10) For specific needs you can override this behavior by setting HTTP_API to true and REST_API_DYN_AUTH_CHECKS to false: @@ -388,7 +392,7 @@ When you start the `bonita` image, you can adjust the configuration of the Bonit ### `PLATFORM_PASSWORD` -This environment variable [is recommended](https://documentation.bonitasoft.com/bonita/7.8/tomcat-bundle#toc3) for you to use the Bonita image. It sets the platform administrator password for Bonita. If it is not specified, the default password `platform` will be used. +This environment variable [is recommended](https://documentation.bonitasoft.com/bonita/7.9/tomcat-bundle#toc3) for you to use the Bonita image. It sets the platform administrator password for Bonita. If it is not specified, the default password `platform` will be used. ### `PLATFORM_LOGIN` @@ -396,7 +400,7 @@ This optional environment variable is used in conjunction with `PLATFORM_PASSWOR ### `TENANT_PASSWORD` -This environment variable [is recommended](https://documentation.bonitasoft.com/bonita/7.8/tomcat-bundle#toc3) for you to use the Bonita image. It sets the tenant administrator password for Bonita. If it is not specified, the default password `install` will be used. +This environment variable [is recommended](https://documentation.bonitasoft.com/bonita/7.9/tomcat-bundle#toc3) for you to use the Bonita image. It sets the tenant administrator password for Bonita. If it is not specified, the default password `install` will be used. ### `TENANT_LOGIN` @@ -404,7 +408,7 @@ This optional environment variable is used in conjunction with `TENANT_PASSWORD` ### `REST_API_DYN_AUTH_CHECKS` -This optional environment variable is used to enable/disable [dynamic authorization checking](https://documentation.bonitasoft.com/bonita/7.8/rest-api-authorization#toc2) on Bonita REST API. The default value is `true`, which will activate dynamic authorization checking. +This optional environment variable is used to enable/disable [dynamic authorization checking](https://documentation.bonitasoft.com/bonita/7.9/rest-api-authorization#toc2) on Bonita REST API. The default value is `true`, which will activate dynamic authorization checking. ### `HTTP_API` @@ -438,7 +442,7 @@ These variables are used in conjunction to create a new user, set that user's pa ### `BIZ_DB_NAME`, `BIZ_DB_USER`, `BIZ_DB_PASS` -These variables are used in conjunction to create a new user, set that user's password and create the `bonita` [business database](https://documentation.bonitasoft.com/bonita/7.8/define-and-deploy-the-bdm#toc1). +These variables are used in conjunction to create a new user, set that user's password and create the `bonita` [business database](https://documentation.bonitasoft.com/bonita/7.9/define-and-deploy-the-bdm#toc1). `BIZ_DB_NAME` default value is `businessdb`. @@ -462,6 +466,14 @@ These variables are optional, and used in conjunction to create users and databa `BIZ_DB_DROP_EXISTING` default value is `N`. +### `BONITA_SERVER_LOGGING_FILE`, `BONITA_SETUP_LOGGING_FILE` + +Since Bonita 7.9 `BONITA_SERVER_LOGGING_FILE` and `BONITA_SETUP_LOGGING_FILE` can be used to update logging configuration. + +`BONITA_SERVER_LOGGING_FILE` default value is `/opt/bonita/BonitaSubscription-${BONITA_VERSION}-tomcat/server/conf/logging.properties`. + +`BONITA_SETUP_LOGGING_FILE` default value is `/opt/bonita/BonitaSubscription-${BONITA_VERSION}-tomcat/setup/logback.xml`. + # How to extend this image If you would like to do additional initialization, you can add a `*.sh` script under `/opt/custom-init.d`. The `startup.sh` file will source any `*.sh` script found in this directory to do further initialization before starting the service. @@ -477,13 +489,27 @@ $ chmod +x custom_bonita/bonita.sh $ docker run --name bonita_custom -v "$PWD"/custom_bonita/:/opt/custom-init.d -d -p 8080:8080 bonita ``` -Note: There are several ways to check the `bonita` logs. One of them is +Since Bonita 7.9 you can also apply a custom `logging.properties` file like this : + +```console +docker run --name bonita \ + -v /path/to/logging.properties:/etc/logging.properties -e BONITA_SERVER_LOGGING_FILE=/etc/logging.properties \ + -d -p 8080:8080 bonita +``` + +Note: There are several ways to check the `bonita` logs. Till Bonita 7.8, one of them is ```console $ docker exec -ti bonita_custom /bin/bash tail -f /opt/bonita/BonitaCommunity-7.8.4-Tomcat-8.5.34/server/logs/bonita.`date +%Y-%m-%d`.log ``` +Since Bonita 7.9 bonita logs are redirected towards standard output and directly accessible using + +```console +$ docker logs -f bonita +``` + # License Bonita image includes two parts : diff --git a/buildpack-deps/README.md b/buildpack-deps/README.md index c48051cd9..34f2f580a 100644 --- a/buildpack-deps/README.md +++ b/buildpack-deps/README.md @@ -37,9 +37,6 @@ WARNING: - [`stretch-curl`, `stable-curl`, `curl`](https://github.com/docker-library/buildpack-deps/blob/b0fc01aa5e3aed6820d8fed6f3301e0542fbeb36/stretch/curl/Dockerfile) - [`stretch-scm`, `stable-scm`, `scm`](https://github.com/docker-library/buildpack-deps/blob/1845b3f918f69b4c97912b0d4d68a5658458e84f/stretch/scm/Dockerfile) - [`stretch`, `stable`, `latest`](https://github.com/docker-library/buildpack-deps/blob/ff09b5c5288f4643056bd7938268d749e9f8a2db/stretch/Dockerfile) -- [`trusty-curl`, `14.04-curl`](https://github.com/docker-library/buildpack-deps/blob/b0fc01aa5e3aed6820d8fed6f3301e0542fbeb36/trusty/curl/Dockerfile) -- [`trusty-scm`, `14.04-scm`](https://github.com/docker-library/buildpack-deps/blob/1845b3f918f69b4c97912b0d4d68a5658458e84f/trusty/scm/Dockerfile) -- [`trusty`, `14.04`](https://github.com/docker-library/buildpack-deps/blob/ff09b5c5288f4643056bd7938268d749e9f8a2db/trusty/Dockerfile) - [`xenial-curl`, `16.04-curl`](https://github.com/docker-library/buildpack-deps/blob/b0fc01aa5e3aed6820d8fed6f3301e0542fbeb36/xenial/curl/Dockerfile) - [`xenial-scm`, `16.04-scm`](https://github.com/docker-library/buildpack-deps/blob/2da658b9a1b91fa61d63ffad2ea52685cac6c702/xenial/scm/Dockerfile) - [`xenial`, `16.04`](https://github.com/docker-library/buildpack-deps/blob/ff09b5c5288f4643056bd7938268d749e9f8a2db/xenial/Dockerfile) diff --git a/erlang/README.md b/erlang/README.md index 59db0e26f..1ab1557ec 100644 --- a/erlang/README.md +++ b/erlang/README.md @@ -16,12 +16,12 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`22.0.3`, `22.0`, `22`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/18ea6d8cb51c956362871383b58ecee8ec687401/22/Dockerfile) -- [`22.0.3-slim`, `22.0-slim`, `22-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/18ea6d8cb51c956362871383b58ecee8ec687401/22/slim/Dockerfile) -- [`22.0.3-alpine`, `22.0-alpine`, `22-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/18ea6d8cb51c956362871383b58ecee8ec687401/22/alpine/Dockerfile) -- [`21.3.8.3`, `21.3.8`, `21.3`, `21`](https://github.com/erlang/docker-erlang-otp/blob/dfff016d92a76d6d846d8060f0ec629d693dd4b2/21/Dockerfile) -- [`21.3.8.3-slim`, `21.3.8-slim`, `21.3-slim`, `21-slim`](https://github.com/erlang/docker-erlang-otp/blob/dfff016d92a76d6d846d8060f0ec629d693dd4b2/21/slim/Dockerfile) -- [`21.3.8.3-alpine`, `21.3.8-alpine`, `21.3-alpine`, `21-alpine`](https://github.com/erlang/docker-erlang-otp/blob/dfff016d92a76d6d846d8060f0ec629d693dd4b2/21/alpine/Dockerfile) +- [`22.0.4`, `22.0`, `22`, `latest`](https://github.com/erlang/docker-erlang-otp/blob/6a5aecea0a1ce5e62c47bae72f6a3199908fdc55/22/Dockerfile) +- [`22.0.4-slim`, `22.0-slim`, `22-slim`, `slim`](https://github.com/erlang/docker-erlang-otp/blob/6a5aecea0a1ce5e62c47bae72f6a3199908fdc55/22/slim/Dockerfile) +- [`22.0.4-alpine`, `22.0-alpine`, `22-alpine`, `alpine`](https://github.com/erlang/docker-erlang-otp/blob/6a5aecea0a1ce5e62c47bae72f6a3199908fdc55/22/alpine/Dockerfile) +- [`21.3.8.4`, `21.3.8`, `21.3`, `21`](https://github.com/erlang/docker-erlang-otp/blob/6a5aecea0a1ce5e62c47bae72f6a3199908fdc55/21/Dockerfile) +- [`21.3.8.4-slim`, `21.3.8-slim`, `21.3-slim`, `21-slim`](https://github.com/erlang/docker-erlang-otp/blob/6a5aecea0a1ce5e62c47bae72f6a3199908fdc55/21/slim/Dockerfile) +- [`21.3.8.4-alpine`, `21.3.8-alpine`, `21.3-alpine`, `21-alpine`](https://github.com/erlang/docker-erlang-otp/blob/6a5aecea0a1ce5e62c47bae72f6a3199908fdc55/21/alpine/Dockerfile) - [`20.3.8.22`, `20.3.8`, `20.3`, `20`](https://github.com/erlang/docker-erlang-otp/blob/299fa43909e0d67d0be22fba6e0ead5532ff73d6/20/Dockerfile) - [`20.3.8.22-slim`, `20.3.8-slim`, `20.3-slim`, `20-slim`](https://github.com/erlang/docker-erlang-otp/blob/299fa43909e0d67d0be22fba6e0ead5532ff73d6/20/slim/Dockerfile) - [`20.3.8.22-alpine`, `20.3.8-alpine`, `20.3-alpine`, `20-alpine`](https://github.com/erlang/docker-erlang-otp/blob/299fa43909e0d67d0be22fba6e0ead5532ff73d6/20/alpine/Dockerfile) diff --git a/haproxy/README.md b/haproxy/README.md index d940fb275..1e88a2b9b 100644 --- a/haproxy/README.md +++ b/haproxy/README.md @@ -16,18 +16,18 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`2.0.0`, `2.0`, `latest`](https://github.com/docker-library/haproxy/blob/609bd629b73b3a37202308451a4aa71740984144/2.0/Dockerfile) -- [`2.0.0-alpine`, `2.0-alpine`, `alpine`](https://github.com/docker-library/haproxy/blob/609bd629b73b3a37202308451a4aa71740984144/2.0/alpine/Dockerfile) -- [`1.9.8`, `1.9`, `1`](https://github.com/docker-library/haproxy/blob/2c49aafa4925bf68402c003542f3f82c94cb2c0f/1.9/Dockerfile) -- [`1.9.8-alpine`, `1.9-alpine`, `1-alpine`](https://github.com/docker-library/haproxy/blob/2c49aafa4925bf68402c003542f3f82c94cb2c0f/1.9/alpine/Dockerfile) -- [`1.8.20`, `1.8`](https://github.com/docker-library/haproxy/blob/2c49aafa4925bf68402c003542f3f82c94cb2c0f/1.8/Dockerfile) -- [`1.8.20-alpine`, `1.8-alpine`](https://github.com/docker-library/haproxy/blob/2c49aafa4925bf68402c003542f3f82c94cb2c0f/1.8/alpine/Dockerfile) -- [`1.7.11`, `1.7`](https://github.com/docker-library/haproxy/blob/2c49aafa4925bf68402c003542f3f82c94cb2c0f/1.7/Dockerfile) -- [`1.7.11-alpine`, `1.7-alpine`](https://github.com/docker-library/haproxy/blob/2c49aafa4925bf68402c003542f3f82c94cb2c0f/1.7/alpine/Dockerfile) -- [`1.6.14`, `1.6`](https://github.com/docker-library/haproxy/blob/2c49aafa4925bf68402c003542f3f82c94cb2c0f/1.6/Dockerfile) -- [`1.6.14-alpine`, `1.6-alpine`](https://github.com/docker-library/haproxy/blob/2c49aafa4925bf68402c003542f3f82c94cb2c0f/1.6/alpine/Dockerfile) -- [`1.5.19`, `1.5`](https://github.com/docker-library/haproxy/blob/2c49aafa4925bf68402c003542f3f82c94cb2c0f/1.5/Dockerfile) -- [`1.5.19-alpine`, `1.5-alpine`](https://github.com/docker-library/haproxy/blob/2c49aafa4925bf68402c003542f3f82c94cb2c0f/1.5/alpine/Dockerfile) +- [`2.0.0`, `2.0`, `latest`](https://github.com/docker-library/haproxy/blob/ad0f0b3b0b2c95e3fabd63113fd94084dbee73a4/2.0/Dockerfile) +- [`2.0.0-alpine`, `2.0-alpine`, `alpine`](https://github.com/docker-library/haproxy/blob/ad0f0b3b0b2c95e3fabd63113fd94084dbee73a4/2.0/alpine/Dockerfile) +- [`1.9.8`, `1.9`, `1`](https://github.com/docker-library/haproxy/blob/ad0f0b3b0b2c95e3fabd63113fd94084dbee73a4/1.9/Dockerfile) +- [`1.9.8-alpine`, `1.9-alpine`, `1-alpine`](https://github.com/docker-library/haproxy/blob/ad0f0b3b0b2c95e3fabd63113fd94084dbee73a4/1.9/alpine/Dockerfile) +- [`1.8.20`, `1.8`](https://github.com/docker-library/haproxy/blob/ad0f0b3b0b2c95e3fabd63113fd94084dbee73a4/1.8/Dockerfile) +- [`1.8.20-alpine`, `1.8-alpine`](https://github.com/docker-library/haproxy/blob/ad0f0b3b0b2c95e3fabd63113fd94084dbee73a4/1.8/alpine/Dockerfile) +- [`1.7.11`, `1.7`](https://github.com/docker-library/haproxy/blob/ad0f0b3b0b2c95e3fabd63113fd94084dbee73a4/1.7/Dockerfile) +- [`1.7.11-alpine`, `1.7-alpine`](https://github.com/docker-library/haproxy/blob/ad0f0b3b0b2c95e3fabd63113fd94084dbee73a4/1.7/alpine/Dockerfile) +- [`1.6.14`, `1.6`](https://github.com/docker-library/haproxy/blob/ad0f0b3b0b2c95e3fabd63113fd94084dbee73a4/1.6/Dockerfile) +- [`1.6.14-alpine`, `1.6-alpine`](https://github.com/docker-library/haproxy/blob/ad0f0b3b0b2c95e3fabd63113fd94084dbee73a4/1.6/alpine/Dockerfile) +- [`1.5.19`, `1.5`](https://github.com/docker-library/haproxy/blob/ad0f0b3b0b2c95e3fabd63113fd94084dbee73a4/1.5/Dockerfile) +- [`1.5.19-alpine`, `1.5-alpine`](https://github.com/docker-library/haproxy/blob/ad0f0b3b0b2c95e3fabd63113fd94084dbee73a4/1.5/alpine/Dockerfile) # Quick reference diff --git a/openjdk/README.md b/openjdk/README.md index da2be367d..2267afa17 100644 --- a/openjdk/README.md +++ b/openjdk/README.md @@ -18,11 +18,11 @@ WARNING: ## Simple Tags -- [`13-ea-24-jdk-oraclelinux7`, `13-ea-24-oraclelinux7`, `13-ea-jdk-oraclelinux7`, `13-ea-oraclelinux7`, `13-jdk-oraclelinux7`, `13-oraclelinux7`, `13-ea-24-jdk-oracle`, `13-ea-24-oracle`, `13-ea-jdk-oracle`, `13-ea-oracle`, `13-jdk-oracle`, `13-oracle`](https://github.com/docker-library/openjdk/blob/64b1b15fdbd44e81e4e2dd6184685c02b73735ee/13/jdk/oracle/Dockerfile) +- [`13-ea-25-jdk-oraclelinux7`, `13-ea-25-oraclelinux7`, `13-ea-jdk-oraclelinux7`, `13-ea-oraclelinux7`, `13-jdk-oraclelinux7`, `13-oraclelinux7`, `13-ea-25-jdk-oracle`, `13-ea-25-oracle`, `13-ea-jdk-oracle`, `13-ea-oracle`, `13-jdk-oracle`, `13-oracle`](https://github.com/docker-library/openjdk/blob/a233b9f3054c3e625cc7e94ef50c4866195b25e5/13/jdk/oracle/Dockerfile) - [`13-ea-19-jdk-alpine3.9`, `13-ea-19-alpine3.9`, `13-ea-jdk-alpine3.9`, `13-ea-alpine3.9`, `13-jdk-alpine3.9`, `13-alpine3.9`, `13-ea-19-jdk-alpine`, `13-ea-19-alpine`, `13-ea-jdk-alpine`, `13-ea-alpine`, `13-jdk-alpine`, `13-alpine`](https://github.com/docker-library/openjdk/blob/1398299a268f339254a94b606113d1627dec342e/13/jdk/alpine/Dockerfile) -- [`13-ea-24-jdk-windowsservercore-1809`, `13-ea-24-windowsservercore-1809`, `13-ea-jdk-windowsservercore-1809`, `13-ea-windowsservercore-1809`, `13-jdk-windowsservercore-1809`, `13-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/64b1b15fdbd44e81e4e2dd6184685c02b73735ee/13/jdk/windows/windowsservercore-1809/Dockerfile) -- [`13-ea-24-jdk-windowsservercore-1803`, `13-ea-24-windowsservercore-1803`, `13-ea-jdk-windowsservercore-1803`, `13-ea-windowsservercore-1803`, `13-jdk-windowsservercore-1803`, `13-windowsservercore-1803`](https://github.com/docker-library/openjdk/blob/64b1b15fdbd44e81e4e2dd6184685c02b73735ee/13/jdk/windows/windowsservercore-1803/Dockerfile) -- [`13-ea-24-jdk-windowsservercore-ltsc2016`, `13-ea-24-windowsservercore-ltsc2016`, `13-ea-jdk-windowsservercore-ltsc2016`, `13-ea-windowsservercore-ltsc2016`, `13-jdk-windowsservercore-ltsc2016`, `13-windowsservercore-ltsc2016`](https://github.com/docker-library/openjdk/blob/64b1b15fdbd44e81e4e2dd6184685c02b73735ee/13/jdk/windows/windowsservercore-ltsc2016/Dockerfile) +- [`13-ea-25-jdk-windowsservercore-1809`, `13-ea-25-windowsservercore-1809`, `13-ea-jdk-windowsservercore-1809`, `13-ea-windowsservercore-1809`, `13-jdk-windowsservercore-1809`, `13-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/a233b9f3054c3e625cc7e94ef50c4866195b25e5/13/jdk/windows/windowsservercore-1809/Dockerfile) +- [`13-ea-25-jdk-windowsservercore-1803`, `13-ea-25-windowsservercore-1803`, `13-ea-jdk-windowsservercore-1803`, `13-ea-windowsservercore-1803`, `13-jdk-windowsservercore-1803`, `13-windowsservercore-1803`](https://github.com/docker-library/openjdk/blob/a233b9f3054c3e625cc7e94ef50c4866195b25e5/13/jdk/windows/windowsservercore-1803/Dockerfile) +- [`13-ea-25-jdk-windowsservercore-ltsc2016`, `13-ea-25-windowsservercore-ltsc2016`, `13-ea-jdk-windowsservercore-ltsc2016`, `13-ea-windowsservercore-ltsc2016`, `13-jdk-windowsservercore-ltsc2016`, `13-windowsservercore-ltsc2016`](https://github.com/docker-library/openjdk/blob/a233b9f3054c3e625cc7e94ef50c4866195b25e5/13/jdk/windows/windowsservercore-ltsc2016/Dockerfile) - [`12.0.1-jdk-oraclelinux7`, `12.0.1-oraclelinux7`, `12.0-jdk-oraclelinux7`, `12.0-oraclelinux7`, `12-jdk-oraclelinux7`, `12-oraclelinux7`, `jdk-oraclelinux7`, `oraclelinux7`, `12.0.1-jdk-oracle`, `12.0.1-oracle`, `12.0-jdk-oracle`, `12.0-oracle`, `12-jdk-oracle`, `12-oracle`, `jdk-oracle`, `oracle`](https://github.com/docker-library/openjdk/blob/554ff38a160f896ddd7f0fdca1cd34817e253a56/12/jdk/oracle/Dockerfile) - [`12.0.1-jdk-windowsservercore-1809`, `12.0.1-windowsservercore-1809`, `12.0-jdk-windowsservercore-1809`, `12.0-windowsservercore-1809`, `12-jdk-windowsservercore-1809`, `12-windowsservercore-1809`, `jdk-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/07af3ffded3216b44d69b4f14309fc5a2967e623/12/jdk/windows/windowsservercore-1809/Dockerfile) - [`12.0.1-jdk-windowsservercore-1803`, `12.0.1-windowsservercore-1803`, `12.0-jdk-windowsservercore-1803`, `12.0-windowsservercore-1803`, `12-jdk-windowsservercore-1803`, `12-windowsservercore-1803`, `jdk-windowsservercore-1803`, `windowsservercore-1803`](https://github.com/docker-library/openjdk/blob/07af3ffded3216b44d69b4f14309fc5a2967e623/12/jdk/windows/windowsservercore-1803/Dockerfile) @@ -45,15 +45,15 @@ WARNING: ## Shared Tags -- `13-ea-24-jdk`, `13-ea-24`, `13-ea-jdk`, `13-ea`, `13-jdk`, `13`: - - [`13-ea-24-jdk-oraclelinux7`](https://github.com/docker-library/openjdk/blob/64b1b15fdbd44e81e4e2dd6184685c02b73735ee/13/jdk/oracle/Dockerfile) - - [`13-ea-24-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/64b1b15fdbd44e81e4e2dd6184685c02b73735ee/13/jdk/windows/windowsservercore-1809/Dockerfile) - - [`13-ea-24-jdk-windowsservercore-1803`](https://github.com/docker-library/openjdk/blob/64b1b15fdbd44e81e4e2dd6184685c02b73735ee/13/jdk/windows/windowsservercore-1803/Dockerfile) - - [`13-ea-24-jdk-windowsservercore-ltsc2016`](https://github.com/docker-library/openjdk/blob/64b1b15fdbd44e81e4e2dd6184685c02b73735ee/13/jdk/windows/windowsservercore-ltsc2016/Dockerfile) -- `13-ea-24-jdk-windowsservercore`, `13-ea-24-windowsservercore`, `13-ea-jdk-windowsservercore`, `13-ea-windowsservercore`, `13-jdk-windowsservercore`, `13-windowsservercore`: - - [`13-ea-24-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/64b1b15fdbd44e81e4e2dd6184685c02b73735ee/13/jdk/windows/windowsservercore-1809/Dockerfile) - - [`13-ea-24-jdk-windowsservercore-1803`](https://github.com/docker-library/openjdk/blob/64b1b15fdbd44e81e4e2dd6184685c02b73735ee/13/jdk/windows/windowsservercore-1803/Dockerfile) - - [`13-ea-24-jdk-windowsservercore-ltsc2016`](https://github.com/docker-library/openjdk/blob/64b1b15fdbd44e81e4e2dd6184685c02b73735ee/13/jdk/windows/windowsservercore-ltsc2016/Dockerfile) +- `13-ea-25-jdk`, `13-ea-25`, `13-ea-jdk`, `13-ea`, `13-jdk`, `13`: + - [`13-ea-25-jdk-oraclelinux7`](https://github.com/docker-library/openjdk/blob/a233b9f3054c3e625cc7e94ef50c4866195b25e5/13/jdk/oracle/Dockerfile) + - [`13-ea-25-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/a233b9f3054c3e625cc7e94ef50c4866195b25e5/13/jdk/windows/windowsservercore-1809/Dockerfile) + - [`13-ea-25-jdk-windowsservercore-1803`](https://github.com/docker-library/openjdk/blob/a233b9f3054c3e625cc7e94ef50c4866195b25e5/13/jdk/windows/windowsservercore-1803/Dockerfile) + - [`13-ea-25-jdk-windowsservercore-ltsc2016`](https://github.com/docker-library/openjdk/blob/a233b9f3054c3e625cc7e94ef50c4866195b25e5/13/jdk/windows/windowsservercore-ltsc2016/Dockerfile) +- `13-ea-25-jdk-windowsservercore`, `13-ea-25-windowsservercore`, `13-ea-jdk-windowsservercore`, `13-ea-windowsservercore`, `13-jdk-windowsservercore`, `13-windowsservercore`: + - [`13-ea-25-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/a233b9f3054c3e625cc7e94ef50c4866195b25e5/13/jdk/windows/windowsservercore-1809/Dockerfile) + - [`13-ea-25-jdk-windowsservercore-1803`](https://github.com/docker-library/openjdk/blob/a233b9f3054c3e625cc7e94ef50c4866195b25e5/13/jdk/windows/windowsservercore-1803/Dockerfile) + - [`13-ea-25-jdk-windowsservercore-ltsc2016`](https://github.com/docker-library/openjdk/blob/a233b9f3054c3e625cc7e94ef50c4866195b25e5/13/jdk/windows/windowsservercore-ltsc2016/Dockerfile) - `12.0.1-jdk`, `12.0.1`, `12.0-jdk`, `12.0`, `12-jdk`, `12`, `jdk`, `latest`: - [`12.0.1-jdk-oraclelinux7`](https://github.com/docker-library/openjdk/blob/554ff38a160f896ddd7f0fdca1cd34817e253a56/12/jdk/oracle/Dockerfile) - [`12.0.1-jdk-windowsservercore-1809`](https://github.com/docker-library/openjdk/blob/07af3ffded3216b44d69b4f14309fc5a2967e623/12/jdk/windows/windowsservercore-1809/Dockerfile) diff --git a/orientdb/README.md b/orientdb/README.md index f38cef0db..10a2467e9 100644 --- a/orientdb/README.md +++ b/orientdb/README.md @@ -20,8 +20,8 @@ WARNING: - [`2.1.25`](https://github.com/orientechnologies/orientdb-docker/blob/127587dc5f88c1f1f5f459b186afaa8dda80b7ba/2.1/Dockerfile) - [`2.2.37`](https://github.com/orientechnologies/orientdb-docker/blob/127587dc5f88c1f1f5f459b186afaa8dda80b7ba/2.2/x86_64/openjdk-slim/Dockerfile) - [`2.2.37-spatial`](https://github.com/orientechnologies/orientdb-docker/blob/127587dc5f88c1f1f5f459b186afaa8dda80b7ba/2.2-spatial/x86_64/openjdk-slim/Dockerfile) -- [`3.0.20`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/127587dc5f88c1f1f5f459b186afaa8dda80b7ba/3.0/x86_64/openjdk-slim/Dockerfile) -- [`3.0.20-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/127587dc5f88c1f1f5f459b186afaa8dda80b7ba/3.0-tp3/x86_64/openjdk-slim/Dockerfile) +- [`3.0.21`, `latest`](https://github.com/orientechnologies/orientdb-docker/blob/0d1076c26f33056fc2bd1f90538b5b6cab7610b7/3.0/x86_64/openjdk-slim/Dockerfile) +- [`3.0.21-tp3`](https://github.com/orientechnologies/orientdb-docker/blob/0d1076c26f33056fc2bd1f90538b5b6cab7610b7/3.0-tp3/x86_64/openjdk-slim/Dockerfile) # Quick reference diff --git a/rocket.chat/README.md b/rocket.chat/README.md index 268ad8d7a..65267d840 100644 --- a/rocket.chat/README.md +++ b/rocket.chat/README.md @@ -16,7 +16,7 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`1.1.1`, `1.1`, `1`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/bd53daee1aadcba946e8fcf53d379726790363a9/Dockerfile) +- [`1.1.2`, `1.1`, `1`, `latest`](https://github.com/RocketChat/Docker.Official.Image/blob/5b10799699a58fb7b8ee7771068dc54b9e5b29f8/Dockerfile) # Quick reference diff --git a/ubuntu/README.md b/ubuntu/README.md index 163d7f2a9..df1668e16 100644 --- a/ubuntu/README.md +++ b/ubuntu/README.md @@ -16,12 +16,11 @@ WARNING: # Supported tags and respective `Dockerfile` links -- [`18.04`, `bionic-20190515`, `bionic`, `latest`](https://github.com/tianon/docker-brew-ubuntu-core/blob/010bf9649b1d10e2c34b159a9a9b338d0fdd4939/bionic/Dockerfile) -- [`18.10`, `cosmic-20190515`, `cosmic`](https://github.com/tianon/docker-brew-ubuntu-core/blob/010bf9649b1d10e2c34b159a9a9b338d0fdd4939/cosmic/Dockerfile) -- [`19.04`, `disco-20190515`, `disco`, `rolling`](https://github.com/tianon/docker-brew-ubuntu-core/blob/010bf9649b1d10e2c34b159a9a9b338d0fdd4939/disco/Dockerfile) -- [`19.10`, `eoan-20190508`, `eoan`, `devel`](https://github.com/tianon/docker-brew-ubuntu-core/blob/010bf9649b1d10e2c34b159a9a9b338d0fdd4939/eoan/Dockerfile) -- [`14.04`, `trusty-20190515`, `trusty`](https://github.com/tianon/docker-brew-ubuntu-core/blob/010bf9649b1d10e2c34b159a9a9b338d0fdd4939/trusty/Dockerfile) -- [`16.04`, `xenial-20190515`, `xenial`](https://github.com/tianon/docker-brew-ubuntu-core/blob/010bf9649b1d10e2c34b159a9a9b338d0fdd4939/xenial/Dockerfile) +- [`18.04`, `bionic-20190612`, `bionic`, `latest`](https://github.com/tianon/docker-brew-ubuntu-core/blob/3c462555392cb188830b7c91e29311b5fad90cfe/bionic/Dockerfile) +- [`18.10`, `cosmic-20190614`, `cosmic`](https://github.com/tianon/docker-brew-ubuntu-core/blob/3c462555392cb188830b7c91e29311b5fad90cfe/cosmic/Dockerfile) +- [`19.04`, `disco-20190613`, `disco`, `rolling`](https://github.com/tianon/docker-brew-ubuntu-core/blob/3c462555392cb188830b7c91e29311b5fad90cfe/disco/Dockerfile) +- [`19.10`, `eoan-20190614`, `eoan`, `devel`](https://github.com/tianon/docker-brew-ubuntu-core/blob/3c462555392cb188830b7c91e29311b5fad90cfe/eoan/Dockerfile) +- [`16.04`, `xenial-20190610`, `xenial`](https://github.com/tianon/docker-brew-ubuntu-core/blob/3c462555392cb188830b7c91e29311b5fad90cfe/xenial/Dockerfile) # Quick reference