Run update.sh
This commit is contained in:
parent
3a312d1631
commit
fbcf49602a
|
|
@ -47,10 +47,10 @@ WARNING:
|
||||||
|
|
||||||
# What is Convertigo Mobility Platform ?
|
# What is Convertigo Mobility Platform ?
|
||||||
|
|
||||||
Convertigo Community edition is an open source MBaaS (Mobile Back end as a Service) combined with a MADP (Mobile application development platform). The platform is used to build complex Cross-platform Enterprise Mobile apps in a few days. Convertigo platform is composed of several components:
|
Convertigo is an open source Low Code Application Platform (LCAP) featuring MXDP (Multi eXperience Development Platform) / MBaaS (Mobile Back end as a Service) for full-stack mobile and web application development. The platform is used to build complex Cross-platform Enterprise Mobile apps in a few days. Convertigo platform is composed of several components:
|
||||||
|
|
||||||
1. **Convertigo MBaaS**: The back-end MBaaS server part. Handles back-end connectors, micro-services execution, offline data device synchronization and serves Mobile Web apps. Runs as a Docker container with the `convertigo` image
|
1. **Convertigo MBaaS**: The back-end MBaaS server part. Handles back-end connectors, micro-services execution, offline data device synchronization and serves Mobile Web apps. Runs as a Docker container with the `convertigo` image
|
||||||
2. **Convertigo Studio**: Runs on a Windows or a MacOS workstation, Eclipse based IDE, used to program MBaaS micro-services workflows and optionaly use the "Mobile Builder" edition to build Mobile apps UIs in a MRAD (Mobile Rapid Application Development) Low code mode. Can be directly downloaded from [Sourceforge.net](https://sourceforge.net/projects/convertigo/files/latest/download)
|
2. **Convertigo Studio**: Runs on a Windows or a MacOS workstation, Eclipse based IDE, used to program MBaaS micro-services workflows and optionaly use the "Mobile Builder" edition to build Mobile apps UIs in a MXDP (Multi eXperience Development Platform) Low code mode. Can be directly downloaded from [Sourceforge.net](https://sourceforge.net/projects/convertigo/files/latest/download)
|
||||||
3. **Convertigo SDKs**: Can be used with third party Mobile development tools such as Xcode (iOS) Android Studio (Android) and Visual Studio (Windows Mobile, Windows UWP and Xamarin). SDKS are available on each platform standard repository (Bintray for Android, Cocoapods for iOS and Nuget for .NET)
|
3. **Convertigo SDKs**: Can be used with third party Mobile development tools such as Xcode (iOS) Android Studio (Android) and Visual Studio (Windows Mobile, Windows UWP and Xamarin). SDKS are available on each platform standard repository (Bintray for Android, Cocoapods for iOS and Nuget for .NET)
|
||||||
|
|
||||||
Convertigo Community edition brought to you by Convertigo SA (Paris & San Francisco). The platform is currently used by more than 100K developers worldwide, building enterprise class mobile apps.
|
Convertigo Community edition brought to you by Convertigo SA (Paris & San Francisco). The platform is currently used by more than 100K developers worldwide, building enterprise class mobile apps.
|
||||||
|
|
@ -84,7 +84,7 @@ $ docker run -d --name fullsync couchdb:2.3.1
|
||||||
Then launch Convertigo and link it to the running 'fullsync' container. Convertigo MBaaS sever will automatically use it as its fullsync repository.
|
Then launch Convertigo and link it to the running 'fullsync' container. Convertigo MBaaS sever will automatically use it as its fullsync repository.
|
||||||
|
|
||||||
```console
|
```console
|
||||||
$ docker run -d --name C8O-MBAAS --link fullsync:couchdb -p 28080:28080 convertigo
|
$ docker run -d --name C8O --link fullsync:couchdb -p 28080:28080 convertigo
|
||||||
```
|
```
|
||||||
|
|
||||||
## Link Convertigo to a Billing & Analytics database
|
## Link Convertigo to a Billing & Analytics database
|
||||||
|
|
@ -94,7 +94,7 @@ $ docker run -d --name C8O-MBAAS --link fullsync:couchdb -p 28080:28080 converti
|
||||||
MySQL is the recommended database for holding Convertigo MBaaS server analytics. You can use this command to run convertigo and link it to a running MySQL container. Change `[mysql-container]` to the container name, and `[username for the c8oAnalytics db]`, `[password for specified db user]` with the values for your MySQL configuration.
|
MySQL is the recommended database for holding Convertigo MBaaS server analytics. You can use this command to run convertigo and link it to a running MySQL container. Change `[mysql-container]` to the container name, and `[username for the c8oAnalytics db]`, `[password for specified db user]` with the values for your MySQL configuration.
|
||||||
|
|
||||||
```console
|
```console
|
||||||
$ docker run -d --name C8O-MBAAS --link [mysql-container]:mysql -p 28080:28080 \
|
$ docker run -d --name C8O --link [mysql-container]:mysql -p 28080:28080 \
|
||||||
-e JAVA_OPTS="-Dconvertigo.engine.billing.enabled=true \
|
-e JAVA_OPTS="-Dconvertigo.engine.billing.enabled=true \
|
||||||
-Dconvertigo.engine.billing.persistence.jdbc.username=[username for the c8oAnalytics db] \
|
-Dconvertigo.engine.billing.persistence.jdbc.username=[username for the c8oAnalytics db] \
|
||||||
-Dconvertigo.engine.billing.persistence.jdbc.password=[password for specified db user] \
|
-Dconvertigo.engine.billing.persistence.jdbc.password=[password for specified db user] \
|
||||||
|
|
@ -107,7 +107,7 @@ convertigo
|
||||||
Projects are deployed in the Convertigo workspace, a simple file system directory. You can map the docker container **/workspace** to your physical system by using :
|
Projects are deployed in the Convertigo workspace, a simple file system directory. You can map the docker container **/workspace** to your physical system by using :
|
||||||
|
|
||||||
```console
|
```console
|
||||||
$ docker run --name C8O-MBAAS -v $(pwd):/workspace -d -p 28080:28080 convertigo
|
$ docker run --name C8O -v $(pwd):/workspace -d -p 28080:28080 convertigo
|
||||||
```
|
```
|
||||||
|
|
||||||
You can share the same workspace by all Convertigo containers. This this case, when you deploy a project on a Convertigo container, it will be seen by others. This is the best way to build multi-instance load balanced Convertigo server farms.
|
You can share the same workspace by all Convertigo containers. This this case, when you deploy a project on a Convertigo container, it will be seen by others. This is the best way to build multi-instance load balanced Convertigo server farms.
|
||||||
|
|
@ -129,7 +129,7 @@ These accounts can be configured through the *administration console* and saved
|
||||||
You can change the default administration account :
|
You can change the default administration account :
|
||||||
|
|
||||||
```console
|
```console
|
||||||
$ docker run -d --name C8O-MBAAS -e CONVERTIGO_ADMIN_USER=administrator -e CONVERTIGO_ADMIN_PASSWORD=s3cret -p 28080:28080 convertigo
|
$ docker run -d --name C8O -e CONVERTIGO_ADMIN_USER=administrator -e CONVERTIGO_ADMIN_PASSWORD=s3cret -p 28080:28080 convertigo
|
||||||
```
|
```
|
||||||
|
|
||||||
### `CONVERTIGO_TESTPLATFORM_USER` and `CONVERTIGO_TESTPLATFORM_PASSWORD` variables
|
### `CONVERTIGO_TESTPLATFORM_USER` and `CONVERTIGO_TESTPLATFORM_PASSWORD` variables
|
||||||
|
|
@ -137,7 +137,7 @@ $ docker run -d --name C8O-MBAAS -e CONVERTIGO_ADMIN_USER=administrator -e CONVE
|
||||||
You can lock the **testplatform** by setting the account :
|
You can lock the **testplatform** by setting the account :
|
||||||
|
|
||||||
```console
|
```console
|
||||||
$ docker run -d --name C8O-MBAAS -e CONVERTIGO_TESTPLATFORM_USER=tp_user -e CONVERTIGO_TESTPLATFORM_PASSWORD=s3cret -p 28080:28080 convertigo
|
$ docker run -d --name C8O -e CONVERTIGO_TESTPLATFORM_USER=tp_user -e CONVERTIGO_TESTPLATFORM_PASSWORD=s3cret -p 28080:28080 convertigo
|
||||||
```
|
```
|
||||||
|
|
||||||
## `JAVA_OPTS` Environment variable
|
## `JAVA_OPTS` Environment variable
|
||||||
|
|
@ -147,7 +147,7 @@ Convertigo is based on a *Java* process with some defaults *JVM* options. You ca
|
||||||
Add any *Java JVM* options such as -D[something] :
|
Add any *Java JVM* options such as -D[something] :
|
||||||
|
|
||||||
```console
|
```console
|
||||||
$ docker run -d --name C8O-MBAAS -e JAVA_OPTS="-DjvmRoute=server1" -p 28080:28080 convertigo
|
$ docker run -d --name C8O -e JAVA_OPTS="-DjvmRoute=server1" -p 28080:28080 convertigo
|
||||||
```
|
```
|
||||||
|
|
||||||
## `JXMX` Environment variable
|
## `JXMX` Environment variable
|
||||||
|
|
@ -157,7 +157,7 @@ Convertigo tries to allocate this amount of memory in the container and will aut
|
||||||
The default `JXMX` value is `2048` and can be defined :
|
The default `JXMX` value is `2048` and can be defined :
|
||||||
|
|
||||||
```console
|
```console
|
||||||
$ docker run -d --name C8O-MBAAS -e JXMX="4096" -p 28080:28080 convertigo
|
$ docker run -d --name C8O -e JXMX="4096" -p 28080:28080 convertigo
|
||||||
```
|
```
|
||||||
|
|
||||||
## `COOKIE_PATH` Environment variable
|
## `COOKIE_PATH` Environment variable
|
||||||
|
|
@ -167,7 +167,19 @@ Convertigo generates a `JSESSIONID` to maintain the user session and stores in a
|
||||||
The default `COOKIE_PATH` value is `/` and can be defined :
|
The default `COOKIE_PATH` value is `/` and can be defined :
|
||||||
|
|
||||||
```console
|
```console
|
||||||
$ docker run -d --name C8O-MBAAS -e COOKIE_PATH="/convertigo" -p 28080:28080 convertigo
|
$ docker run -d --name C8O -e COOKIE_PATH="/convertigo" -p 28080:28080 convertigo
|
||||||
|
```
|
||||||
|
|
||||||
|
## `COOKIE_SECURE` Environment variable
|
||||||
|
|
||||||
|
Convertigo use a *cookie* to maintain sessions. Requests on port `28080` are *HTTP* but we advice to use an *HTTPS* front for production (nginx, kubenetes ingress, ...). In this case, you can secure yours cookies to be used only with secured connections by adding the `Secure` flag.
|
||||||
|
|
||||||
|
The Secure flag can be enabled by setting the `COOKIE_SECURE` environment variable to `true`. Once enabled, cookies and sessions aren't working through an *HTTP* connection.
|
||||||
|
|
||||||
|
The default `COOKIE_SECURE` value is `false` and can be defined :
|
||||||
|
|
||||||
|
```console
|
||||||
|
$ docker run -d --name C8O -e COOKIE_SECURE="true" -p 28080:28080 convertigo
|
||||||
```
|
```
|
||||||
|
|
||||||
## Pre configurated Docker compose stack
|
## Pre configurated Docker compose stack
|
||||||
|
|
|
||||||
|
|
@ -16,12 +16,12 @@ WARNING:
|
||||||
|
|
||||||
# Supported tags and respective `Dockerfile` links
|
# Supported tags and respective `Dockerfile` links
|
||||||
|
|
||||||
- [`3.1.1`, `3.1`, `3`, `latest`](https://github.com/docker-library/ghost/blob/8ffe59daa52588c6e327e72a6e9413e4659bc373/3/debian/Dockerfile)
|
- [`3.2.0`, `3.2`, `3`, `latest`](https://github.com/docker-library/ghost/blob/6621b1ef3c1f6585dbb48ebfb6bd5827a59fdb2d/3/debian/Dockerfile)
|
||||||
- [`3.1.1-alpine`, `3.1-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/8ffe59daa52588c6e327e72a6e9413e4659bc373/3/alpine/Dockerfile)
|
- [`3.2.0-alpine`, `3.2-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/ghost/blob/6621b1ef3c1f6585dbb48ebfb6bd5827a59fdb2d/3/alpine/Dockerfile)
|
||||||
- [`2.37.0`, `2.37`, `2`](https://github.com/docker-library/ghost/blob/072fa27f0da8557028a79a01a6df05eb02657ae8/2/debian/Dockerfile)
|
- [`2.37.2`, `2.37`, `2`](https://github.com/docker-library/ghost/blob/4a486f7f6ae1caa646c2b65f1c1a96c1614be879/2/debian/Dockerfile)
|
||||||
- [`2.37.0-alpine`, `2.37-alpine`, `2-alpine`](https://github.com/docker-library/ghost/blob/072fa27f0da8557028a79a01a6df05eb02657ae8/2/alpine/Dockerfile)
|
- [`2.37.2-alpine`, `2.37-alpine`, `2-alpine`](https://github.com/docker-library/ghost/blob/4a486f7f6ae1caa646c2b65f1c1a96c1614be879/2/alpine/Dockerfile)
|
||||||
- [`1.26.0`, `1.26`, `1`](https://github.com/docker-library/ghost/blob/c8f6801c0377e8e5d712ffb12dee351610af7f7b/1/debian/Dockerfile)
|
- [`1.26.2`, `1.26`, `1`](https://github.com/docker-library/ghost/blob/e28a0e3482e710ed353fc2eecd8a4cf435fea045/1/debian/Dockerfile)
|
||||||
- [`1.26.0-alpine`, `1.26-alpine`, `1-alpine`](https://github.com/docker-library/ghost/blob/c8f6801c0377e8e5d712ffb12dee351610af7f7b/1/alpine/Dockerfile)
|
- [`1.26.2-alpine`, `1.26-alpine`, `1-alpine`](https://github.com/docker-library/ghost/blob/e28a0e3482e710ed353fc2eecd8a4cf435fea045/1/alpine/Dockerfile)
|
||||||
|
|
||||||
# Quick reference
|
# Quick reference
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -16,15 +16,15 @@ WARNING:
|
||||||
|
|
||||||
# Supported tags and respective `Dockerfile` links
|
# Supported tags and respective `Dockerfile` links
|
||||||
|
|
||||||
- [`3.9.13-php7.2-apache`, `3.9-php7.2-apache`, `3-php7.2-apache`, `php7.2-apache`, `3.9.13-php7.2`, `3.9-php7.2`, `3-php7.2`, `php7.2`](https://github.com/joomla/docker-joomla/blob/5b76fff3018c1604a9b5614b1ab7439f88e4ea1e/php7.2/apache/Dockerfile)
|
- [`3.9.14-php7.2-apache`, `3.9-php7.2-apache`, `3-php7.2-apache`, `php7.2-apache`, `3.9.14-php7.2`, `3.9-php7.2`, `3-php7.2`, `php7.2`](https://github.com/joomla/docker-joomla/blob/5a5f2d2fc3b6f011be1d4beccef288d5c6fd4321/php7.2/apache/Dockerfile)
|
||||||
- [`3.9.13-php7.2-fpm`, `3.9-php7.2-fpm`, `3-php7.2-fpm`, `php7.2-fpm`](https://github.com/joomla/docker-joomla/blob/5b76fff3018c1604a9b5614b1ab7439f88e4ea1e/php7.2/fpm/Dockerfile)
|
- [`3.9.14-php7.2-fpm`, `3.9-php7.2-fpm`, `3-php7.2-fpm`, `php7.2-fpm`](https://github.com/joomla/docker-joomla/blob/5a5f2d2fc3b6f011be1d4beccef288d5c6fd4321/php7.2/fpm/Dockerfile)
|
||||||
- [`3.9.13-php7.2-fpm-alpine`, `3.9-php7.2-fpm-alpine`, `3-php7.2-fpm-alpine`, `php7.2-fpm-alpine`](https://github.com/joomla/docker-joomla/blob/5b76fff3018c1604a9b5614b1ab7439f88e4ea1e/php7.2/fpm-alpine/Dockerfile)
|
- [`3.9.14-php7.2-fpm-alpine`, `3.9-php7.2-fpm-alpine`, `3-php7.2-fpm-alpine`, `php7.2-fpm-alpine`](https://github.com/joomla/docker-joomla/blob/5a5f2d2fc3b6f011be1d4beccef288d5c6fd4321/php7.2/fpm-alpine/Dockerfile)
|
||||||
- [`3.9.13-apache`, `3.9-apache`, `3-apache`, `apache`, `3.9.13`, `3.9`, `3`, `latest`, `3.9.13-php7.3-apache`, `3.9-php7.3-apache`, `3-php7.3-apache`, `php7.3-apache`, `3.9.13-php7.3`, `3.9-php7.3`, `3-php7.3`, `php7.3`](https://github.com/joomla/docker-joomla/blob/5b76fff3018c1604a9b5614b1ab7439f88e4ea1e/php7.3/apache/Dockerfile)
|
- [`3.9.14-apache`, `3.9-apache`, `3-apache`, `apache`, `3.9.14`, `3.9`, `3`, `latest`, `3.9.14-php7.3-apache`, `3.9-php7.3-apache`, `3-php7.3-apache`, `php7.3-apache`, `3.9.14-php7.3`, `3.9-php7.3`, `3-php7.3`, `php7.3`](https://github.com/joomla/docker-joomla/blob/5a5f2d2fc3b6f011be1d4beccef288d5c6fd4321/php7.3/apache/Dockerfile)
|
||||||
- [`3.9.13-fpm`, `3.9-fpm`, `3-fpm`, `fpm`, `3.9.13-php7.3-fpm`, `3.9-php7.3-fpm`, `3-php7.3-fpm`, `php7.3-fpm`](https://github.com/joomla/docker-joomla/blob/5b76fff3018c1604a9b5614b1ab7439f88e4ea1e/php7.3/fpm/Dockerfile)
|
- [`3.9.14-fpm`, `3.9-fpm`, `3-fpm`, `fpm`, `3.9.14-php7.3-fpm`, `3.9-php7.3-fpm`, `3-php7.3-fpm`, `php7.3-fpm`](https://github.com/joomla/docker-joomla/blob/5a5f2d2fc3b6f011be1d4beccef288d5c6fd4321/php7.3/fpm/Dockerfile)
|
||||||
- [`3.9.13-fpm-alpine`, `3.9-fpm-alpine`, `3-fpm-alpine`, `fpm-alpine`, `3.9.13-php7.3-fpm-alpine`, `3.9-php7.3-fpm-alpine`, `3-php7.3-fpm-alpine`, `php7.3-fpm-alpine`](https://github.com/joomla/docker-joomla/blob/5b76fff3018c1604a9b5614b1ab7439f88e4ea1e/php7.3/fpm-alpine/Dockerfile)
|
- [`3.9.14-fpm-alpine`, `3.9-fpm-alpine`, `3-fpm-alpine`, `fpm-alpine`, `3.9.14-php7.3-fpm-alpine`, `3.9-php7.3-fpm-alpine`, `3-php7.3-fpm-alpine`, `php7.3-fpm-alpine`](https://github.com/joomla/docker-joomla/blob/5a5f2d2fc3b6f011be1d4beccef288d5c6fd4321/php7.3/fpm-alpine/Dockerfile)
|
||||||
- [`3.9.13-php7.4-apache`, `3.9-php7.4-apache`, `3-php7.4-apache`, `php7.4-apache`, `3.9.13-php7.4`, `3.9-php7.4`, `3-php7.4`, `php7.4`](https://github.com/joomla/docker-joomla/blob/5b76fff3018c1604a9b5614b1ab7439f88e4ea1e/php7.4/apache/Dockerfile)
|
- [`3.9.14-php7.4-apache`, `3.9-php7.4-apache`, `3-php7.4-apache`, `php7.4-apache`, `3.9.14-php7.4`, `3.9-php7.4`, `3-php7.4`, `php7.4`](https://github.com/joomla/docker-joomla/blob/5a5f2d2fc3b6f011be1d4beccef288d5c6fd4321/php7.4/apache/Dockerfile)
|
||||||
- [`3.9.13-php7.4-fpm`, `3.9-php7.4-fpm`, `3-php7.4-fpm`, `php7.4-fpm`](https://github.com/joomla/docker-joomla/blob/5b76fff3018c1604a9b5614b1ab7439f88e4ea1e/php7.4/fpm/Dockerfile)
|
- [`3.9.14-php7.4-fpm`, `3.9-php7.4-fpm`, `3-php7.4-fpm`, `php7.4-fpm`](https://github.com/joomla/docker-joomla/blob/5a5f2d2fc3b6f011be1d4beccef288d5c6fd4321/php7.4/fpm/Dockerfile)
|
||||||
- [`3.9.13-php7.4-fpm-alpine`, `3.9-php7.4-fpm-alpine`, `3-php7.4-fpm-alpine`, `php7.4-fpm-alpine`](https://github.com/joomla/docker-joomla/blob/5b76fff3018c1604a9b5614b1ab7439f88e4ea1e/php7.4/fpm-alpine/Dockerfile)
|
- [`3.9.14-php7.4-fpm-alpine`, `3.9-php7.4-fpm-alpine`, `3-php7.4-fpm-alpine`, `php7.4-fpm-alpine`](https://github.com/joomla/docker-joomla/blob/5a5f2d2fc3b6f011be1d4beccef288d5c6fd4321/php7.4/fpm-alpine/Dockerfile)
|
||||||
|
|
||||||
# Quick reference
|
# Quick reference
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -16,9 +16,9 @@ WARNING:
|
||||||
|
|
||||||
# Supported tags and respective `Dockerfile` links
|
# Supported tags and respective `Dockerfile` links
|
||||||
|
|
||||||
- [`2.7.0-preview3-buster`, `2.7-rc-buster`, `rc-buster`, `2.7.0-preview3`, `2.7-rc`, `rc`](https://github.com/docker-library/ruby/blob/5e9c75e51671c0ed661b8654618596602a21fae0/2.7-rc/buster/Dockerfile)
|
- [`2.7.0-rc1-buster`, `2.7-rc-buster`, `rc-buster`, `2.7.0-rc1`, `2.7-rc`, `rc`](https://github.com/docker-library/ruby/blob/158d90b04f0dfeac68001c54dde423100d2aad33/2.7-rc/buster/Dockerfile)
|
||||||
- [`2.7.0-preview3-slim-buster`, `2.7-rc-slim-buster`, `rc-slim-buster`, `2.7.0-preview3-slim`, `2.7-rc-slim`, `rc-slim`](https://github.com/docker-library/ruby/blob/5e9c75e51671c0ed661b8654618596602a21fae0/2.7-rc/buster/slim/Dockerfile)
|
- [`2.7.0-rc1-slim-buster`, `2.7-rc-slim-buster`, `rc-slim-buster`, `2.7.0-rc1-slim`, `2.7-rc-slim`, `rc-slim`](https://github.com/docker-library/ruby/blob/158d90b04f0dfeac68001c54dde423100d2aad33/2.7-rc/buster/slim/Dockerfile)
|
||||||
- [`2.7.0-preview3-alpine3.10`, `2.7-rc-alpine3.10`, `rc-alpine3.10`, `2.7.0-preview3-alpine`, `2.7-rc-alpine`, `rc-alpine`](https://github.com/docker-library/ruby/blob/5e9c75e51671c0ed661b8654618596602a21fae0/2.7-rc/alpine3.10/Dockerfile)
|
- [`2.7.0-rc1-alpine3.10`, `2.7-rc-alpine3.10`, `rc-alpine3.10`, `2.7.0-rc1-alpine`, `2.7-rc-alpine`, `rc-alpine`](https://github.com/docker-library/ruby/blob/158d90b04f0dfeac68001c54dde423100d2aad33/2.7-rc/alpine3.10/Dockerfile)
|
||||||
- [`2.6.5-buster`, `2.6-buster`, `2-buster`, `buster`, `2.6.5`, `2.6`, `2`, `latest`](https://github.com/docker-library/ruby/blob/5c9e21cbf79b7f36d505555c9ecd62cf0f7e07f8/2.6/buster/Dockerfile)
|
- [`2.6.5-buster`, `2.6-buster`, `2-buster`, `buster`, `2.6.5`, `2.6`, `2`, `latest`](https://github.com/docker-library/ruby/blob/5c9e21cbf79b7f36d505555c9ecd62cf0f7e07f8/2.6/buster/Dockerfile)
|
||||||
- [`2.6.5-slim-buster`, `2.6-slim-buster`, `2-slim-buster`, `slim-buster`, `2.6.5-slim`, `2.6-slim`, `2-slim`, `slim`](https://github.com/docker-library/ruby/blob/8565a59602d3a95f5e858eb758aba0dcd6fce007/2.6/buster/slim/Dockerfile)
|
- [`2.6.5-slim-buster`, `2.6-slim-buster`, `2-slim-buster`, `slim-buster`, `2.6.5-slim`, `2.6-slim`, `2-slim`, `slim`](https://github.com/docker-library/ruby/blob/8565a59602d3a95f5e858eb758aba0dcd6fce007/2.6/buster/slim/Dockerfile)
|
||||||
- [`2.6.5-stretch`, `2.6-stretch`, `2-stretch`, `stretch`](https://github.com/docker-library/ruby/blob/5c9e21cbf79b7f36d505555c9ecd62cf0f7e07f8/2.6/stretch/Dockerfile)
|
- [`2.6.5-stretch`, `2.6-stretch`, `2-stretch`, `stretch`](https://github.com/docker-library/ruby/blob/5c9e21cbf79b7f36d505555c9ecd62cf0f7e07f8/2.6/stretch/Dockerfile)
|
||||||
|
|
|
||||||
|
|
@ -16,10 +16,10 @@ WARNING:
|
||||||
|
|
||||||
# Supported tags and respective `Dockerfile` links
|
# Supported tags and respective `Dockerfile` links
|
||||||
|
|
||||||
- [`7.9.1-community`, `7.9-community`, `latest`, `lts`](https://github.com/SonarSource/docker-sonarqube/blob/8ae0fadc72fef64334998e811f1b9cf68a458a2c/7/community/Dockerfile)
|
- [`7.9.2-community`, `7.9-community`, `latest`, `lts`](https://github.com/SonarSource/docker-sonarqube/blob/8fb14312c4780e6aca7d95d3fcc5ae3022cb7276/7/community/Dockerfile)
|
||||||
- [`8.0-community-beta`, `8-community-beta`, `community-beta`](https://github.com/SonarSource/docker-sonarqube/blob/8ae0fadc72fef64334998e811f1b9cf68a458a2c/8/community/Dockerfile)
|
- [`8.1-community-beta`, `8-community-beta`, `community-beta`](https://github.com/SonarSource/docker-sonarqube/blob/8fb14312c4780e6aca7d95d3fcc5ae3022cb7276/8/community/Dockerfile)
|
||||||
- [`8.0-developer-beta`, `8-developer-beta`, `developer-beta`](https://github.com/SonarSource/docker-sonarqube/blob/8ae0fadc72fef64334998e811f1b9cf68a458a2c/8/developer/Dockerfile)
|
- [`8.1-developer-beta`, `8-developer-beta`, `developer-beta`](https://github.com/SonarSource/docker-sonarqube/blob/8fb14312c4780e6aca7d95d3fcc5ae3022cb7276/8/developer/Dockerfile)
|
||||||
- [`8.0-enterprise-beta`, `8-enterprise-beta`, `enterprise-beta`](https://github.com/SonarSource/docker-sonarqube/blob/8ae0fadc72fef64334998e811f1b9cf68a458a2c/8/enterprise/Dockerfile)
|
- [`8.1-enterprise-beta`, `8-enterprise-beta`, `enterprise-beta`](https://github.com/SonarSource/docker-sonarqube/blob/8fb14312c4780e6aca7d95d3fcc5ae3022cb7276/8/enterprise/Dockerfile)
|
||||||
|
|
||||||
# Quick reference
|
# Quick reference
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -16,12 +16,12 @@ WARNING:
|
||||||
|
|
||||||
# Supported tags and respective `Dockerfile` links
|
# Supported tags and respective `Dockerfile` links
|
||||||
|
|
||||||
- [`18.04`, `bionic-20191029`, `bionic`, `latest`](https://github.com/tianon/docker-brew-ubuntu-core/blob/d4313e13366d24a97bd178db4450f63e221803f1/bionic/Dockerfile)
|
- [`18.04`, `bionic-20191202`, `bionic`, `latest`](https://github.com/tianon/docker-brew-ubuntu-core/blob/14faa76f80e543f7507828430ff50b4a58466ffd/bionic/Dockerfile)
|
||||||
- [`19.04`, `disco-20191030`, `disco`](https://github.com/tianon/docker-brew-ubuntu-core/blob/d4313e13366d24a97bd178db4450f63e221803f1/disco/Dockerfile)
|
- [`19.04`, `disco-20191127`, `disco`](https://github.com/tianon/docker-brew-ubuntu-core/blob/14faa76f80e543f7507828430ff50b4a58466ffd/disco/Dockerfile)
|
||||||
- [`19.10`, `eoan-20191101`, `eoan`, `rolling`](https://github.com/tianon/docker-brew-ubuntu-core/blob/d4313e13366d24a97bd178db4450f63e221803f1/eoan/Dockerfile)
|
- [`19.10`, `eoan-20191127`, `eoan`, `rolling`](https://github.com/tianon/docker-brew-ubuntu-core/blob/14faa76f80e543f7507828430ff50b4a58466ffd/eoan/Dockerfile)
|
||||||
- [`20.04`, `focal-20191030`, `focal`, `devel`](https://github.com/tianon/docker-brew-ubuntu-core/blob/d4313e13366d24a97bd178db4450f63e221803f1/focal/Dockerfile)
|
- [`20.04`, `focal-20191129`, `focal`, `devel`](https://github.com/tianon/docker-brew-ubuntu-core/blob/14faa76f80e543f7507828430ff50b4a58466ffd/focal/Dockerfile)
|
||||||
- [`14.04`, `trusty-20190515`, `trusty`](https://github.com/tianon/docker-brew-ubuntu-core/blob/010bf9649b1d10e2c34b159a9a9b338d0fdd4939/trusty/Dockerfile)
|
- [`14.04`, `trusty-20191217`, `trusty`](https://github.com/tianon/docker-brew-ubuntu-core/blob/14faa76f80e543f7507828430ff50b4a58466ffd/trusty/Dockerfile)
|
||||||
- [`16.04`, `xenial-20191108`, `xenial`](https://github.com/tianon/docker-brew-ubuntu-core/blob/d4313e13366d24a97bd178db4450f63e221803f1/xenial/Dockerfile)
|
- [`16.04`, `xenial-20191212`, `xenial`](https://github.com/tianon/docker-brew-ubuntu-core/blob/14faa76f80e543f7507828430ff50b4a58466ffd/xenial/Dockerfile)
|
||||||
|
|
||||||
# Quick reference
|
# Quick reference
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@ WARNING:
|
||||||
|
|
||||||
# Supported tags and respective `Dockerfile` links
|
# Supported tags and respective `Dockerfile` links
|
||||||
|
|
||||||
- [`1.3.0`, `latest`](https://github.com/hashicorp/docker-vault/blob/5506054fbcf5a76d1ced42369fe987dad29cfea7/0.X/Dockerfile)
|
- [`1.3.1`, `latest`](https://github.com/hashicorp/docker-vault/blob/efcff4812558595f65bb8deb8acb83eb0c17cd02/0.X/Dockerfile)
|
||||||
|
|
||||||
# Quick reference
|
# Quick reference
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -16,31 +16,31 @@ WARNING:
|
||||||
|
|
||||||
# Supported tags and respective `Dockerfile` links
|
# Supported tags and respective `Dockerfile` links
|
||||||
|
|
||||||
- [`beta`](https://github.com/WASdev/ci.docker/blob/5d7f86fbf1e41f1992ad9641f06cb114bc20cec4/beta/Dockerfile)
|
- [`beta`](https://github.com/WASdev/ci.docker/blob/3c8a6c6ca9af05c504fb26788030e4f8ff5125b6/beta/Dockerfile)
|
||||||
- [`kernel`](https://github.com/WASdev/ci.docker/blob/5d7f86fbf1e41f1992ad9641f06cb114bc20cec4/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8)
|
- [`kernel`](https://github.com/WASdev/ci.docker/blob/3c8a6c6ca9af05c504fb26788030e4f8ff5125b6/ga/latest/kernel/Dockerfile.ubuntu.ibmjava8)
|
||||||
- [`full`, `latest`](https://github.com/WASdev/ci.docker/blob/5d7f86fbf1e41f1992ad9641f06cb114bc20cec4/ga/latest/full/Dockerfile.ubuntu.ibmjava8)
|
- [`full`, `latest`](https://github.com/WASdev/ci.docker/blob/3c8a6c6ca9af05c504fb26788030e4f8ff5125b6/ga/latest/full/Dockerfile.ubuntu.ibmjava8)
|
||||||
- [`19.0.0.12-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/5d7f86fbf1e41f1992ad9641f06cb114bc20cec4/ga/19.0.0.12/kernel/Dockerfile.ubuntu.ibmjava8)
|
- [`19.0.0.12-kernel-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/3c8a6c6ca9af05c504fb26788030e4f8ff5125b6/ga/19.0.0.12/kernel/Dockerfile.ubuntu.ibmjava8)
|
||||||
- [`19.0.0.12-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/5d7f86fbf1e41f1992ad9641f06cb114bc20cec4/ga/19.0.0.12/full/Dockerfile.ubuntu.ibmjava8)
|
- [`19.0.0.12-full-java8-ibmjava`](https://github.com/WASdev/ci.docker/blob/3c8a6c6ca9af05c504fb26788030e4f8ff5125b6/ga/19.0.0.12/full/Dockerfile.ubuntu.ibmjava8)
|
||||||
- [`19.0.0.9-kernel`](https://github.com/WASdev/ci.docker/blob/5d7f86fbf1e41f1992ad9641f06cb114bc20cec4/ga/19.0.0.9/kernel/Dockerfile)
|
- [`19.0.0.9-kernel`](https://github.com/WASdev/ci.docker/blob/3c8a6c6ca9af05c504fb26788030e4f8ff5125b6/ga/19.0.0.9/kernel/Dockerfile)
|
||||||
- [`19.0.0.9-kernel-java11`](https://github.com/WASdev/ci.docker/blob/5d7f86fbf1e41f1992ad9641f06cb114bc20cec4/ga/19.0.0.9/kernel/Dockerfile.java11)
|
- [`19.0.0.9-kernel-java11`](https://github.com/WASdev/ci.docker/blob/3c8a6c6ca9af05c504fb26788030e4f8ff5125b6/ga/19.0.0.9/kernel/Dockerfile.java11)
|
||||||
- [`19.0.0.9-javaee8`](https://github.com/WASdev/ci.docker/blob/5d7f86fbf1e41f1992ad9641f06cb114bc20cec4/ga/19.0.0.9/javaee8/Dockerfile)
|
- [`19.0.0.9-javaee8`](https://github.com/WASdev/ci.docker/blob/3c8a6c6ca9af05c504fb26788030e4f8ff5125b6/ga/19.0.0.9/javaee8/Dockerfile)
|
||||||
- [`19.0.0.9-javaee8-java11`](https://github.com/WASdev/ci.docker/blob/5d7f86fbf1e41f1992ad9641f06cb114bc20cec4/ga/19.0.0.9/javaee8/Dockerfile.java11)
|
- [`19.0.0.9-javaee8-java11`](https://github.com/WASdev/ci.docker/blob/3c8a6c6ca9af05c504fb26788030e4f8ff5125b6/ga/19.0.0.9/javaee8/Dockerfile.java11)
|
||||||
- [`19.0.0.9-webProfile8`](https://github.com/WASdev/ci.docker/blob/5d7f86fbf1e41f1992ad9641f06cb114bc20cec4/ga/19.0.0.9/webProfile8/Dockerfile)
|
- [`19.0.0.9-webProfile8`](https://github.com/WASdev/ci.docker/blob/3c8a6c6ca9af05c504fb26788030e4f8ff5125b6/ga/19.0.0.9/webProfile8/Dockerfile)
|
||||||
- [`19.0.0.9-webProfile8-java11`](https://github.com/WASdev/ci.docker/blob/5d7f86fbf1e41f1992ad9641f06cb114bc20cec4/ga/19.0.0.9/webProfile8/Dockerfile.java11)
|
- [`19.0.0.9-webProfile8-java11`](https://github.com/WASdev/ci.docker/blob/3c8a6c6ca9af05c504fb26788030e4f8ff5125b6/ga/19.0.0.9/webProfile8/Dockerfile.java11)
|
||||||
- [`19.0.0.9-microProfile1`](https://github.com/WASdev/ci.docker/blob/5d7f86fbf1e41f1992ad9641f06cb114bc20cec4/ga/19.0.0.9/microProfile1/Dockerfile)
|
- [`19.0.0.9-microProfile1`](https://github.com/WASdev/ci.docker/blob/3c8a6c6ca9af05c504fb26788030e4f8ff5125b6/ga/19.0.0.9/microProfile1/Dockerfile)
|
||||||
- [`19.0.0.9-microProfile1-java11`](https://github.com/WASdev/ci.docker/blob/5d7f86fbf1e41f1992ad9641f06cb114bc20cec4/ga/19.0.0.9/microProfile1/Dockerfile.java11)
|
- [`19.0.0.9-microProfile1-java11`](https://github.com/WASdev/ci.docker/blob/3c8a6c6ca9af05c504fb26788030e4f8ff5125b6/ga/19.0.0.9/microProfile1/Dockerfile.java11)
|
||||||
- [`19.0.0.9-microProfile2`](https://github.com/WASdev/ci.docker/blob/5d7f86fbf1e41f1992ad9641f06cb114bc20cec4/ga/19.0.0.9/microProfile2/Dockerfile)
|
- [`19.0.0.9-microProfile2`](https://github.com/WASdev/ci.docker/blob/3c8a6c6ca9af05c504fb26788030e4f8ff5125b6/ga/19.0.0.9/microProfile2/Dockerfile)
|
||||||
- [`19.0.0.9-microProfile2-java11`](https://github.com/WASdev/ci.docker/blob/5d7f86fbf1e41f1992ad9641f06cb114bc20cec4/ga/19.0.0.9/microProfile2/Dockerfile.java11)
|
- [`19.0.0.9-microProfile2-java11`](https://github.com/WASdev/ci.docker/blob/3c8a6c6ca9af05c504fb26788030e4f8ff5125b6/ga/19.0.0.9/microProfile2/Dockerfile.java11)
|
||||||
- [`19.0.0.9-microProfile3`](https://github.com/WASdev/ci.docker/blob/5d7f86fbf1e41f1992ad9641f06cb114bc20cec4/ga/19.0.0.9/microProfile3/Dockerfile)
|
- [`19.0.0.9-microProfile3`](https://github.com/WASdev/ci.docker/blob/3c8a6c6ca9af05c504fb26788030e4f8ff5125b6/ga/19.0.0.9/microProfile3/Dockerfile)
|
||||||
- [`19.0.0.9-microProfile3-java11`](https://github.com/WASdev/ci.docker/blob/5d7f86fbf1e41f1992ad9641f06cb114bc20cec4/ga/19.0.0.9/microProfile3/Dockerfile.java11)
|
- [`19.0.0.9-microProfile3-java11`](https://github.com/WASdev/ci.docker/blob/3c8a6c6ca9af05c504fb26788030e4f8ff5125b6/ga/19.0.0.9/microProfile3/Dockerfile.java11)
|
||||||
- [`19.0.0.9-springBoot2`](https://github.com/WASdev/ci.docker/blob/5d7f86fbf1e41f1992ad9641f06cb114bc20cec4/ga/19.0.0.9/springBoot2/Dockerfile)
|
- [`19.0.0.9-springBoot2`](https://github.com/WASdev/ci.docker/blob/3c8a6c6ca9af05c504fb26788030e4f8ff5125b6/ga/19.0.0.9/springBoot2/Dockerfile)
|
||||||
- [`19.0.0.9-springBoot2-java11`](https://github.com/WASdev/ci.docker/blob/5d7f86fbf1e41f1992ad9641f06cb114bc20cec4/ga/19.0.0.9/springBoot2/Dockerfile.java11)
|
- [`19.0.0.9-springBoot2-java11`](https://github.com/WASdev/ci.docker/blob/3c8a6c6ca9af05c504fb26788030e4f8ff5125b6/ga/19.0.0.9/springBoot2/Dockerfile.java11)
|
||||||
- [`19.0.0.9-springBoot1`](https://github.com/WASdev/ci.docker/blob/5d7f86fbf1e41f1992ad9641f06cb114bc20cec4/ga/19.0.0.9/springBoot1/Dockerfile)
|
- [`19.0.0.9-springBoot1`](https://github.com/WASdev/ci.docker/blob/3c8a6c6ca9af05c504fb26788030e4f8ff5125b6/ga/19.0.0.9/springBoot1/Dockerfile)
|
||||||
- [`19.0.0.9-springBoot1-java11`](https://github.com/WASdev/ci.docker/blob/5d7f86fbf1e41f1992ad9641f06cb114bc20cec4/ga/19.0.0.9/springBoot1/Dockerfile.java11)
|
- [`19.0.0.9-springBoot1-java11`](https://github.com/WASdev/ci.docker/blob/3c8a6c6ca9af05c504fb26788030e4f8ff5125b6/ga/19.0.0.9/springBoot1/Dockerfile.java11)
|
||||||
- [`19.0.0.9-webProfile7`](https://github.com/WASdev/ci.docker/blob/5d7f86fbf1e41f1992ad9641f06cb114bc20cec4/ga/19.0.0.9/webProfile7/Dockerfile)
|
- [`19.0.0.9-webProfile7`](https://github.com/WASdev/ci.docker/blob/3c8a6c6ca9af05c504fb26788030e4f8ff5125b6/ga/19.0.0.9/webProfile7/Dockerfile)
|
||||||
- [`19.0.0.9-webProfile7-java11`](https://github.com/WASdev/ci.docker/blob/5d7f86fbf1e41f1992ad9641f06cb114bc20cec4/ga/19.0.0.9/webProfile7/Dockerfile.java11)
|
- [`19.0.0.9-webProfile7-java11`](https://github.com/WASdev/ci.docker/blob/3c8a6c6ca9af05c504fb26788030e4f8ff5125b6/ga/19.0.0.9/webProfile7/Dockerfile.java11)
|
||||||
- [`19.0.0.9-javaee7`](https://github.com/WASdev/ci.docker/blob/5d7f86fbf1e41f1992ad9641f06cb114bc20cec4/ga/19.0.0.9/javaee7/Dockerfile)
|
- [`19.0.0.9-javaee7`](https://github.com/WASdev/ci.docker/blob/3c8a6c6ca9af05c504fb26788030e4f8ff5125b6/ga/19.0.0.9/javaee7/Dockerfile)
|
||||||
- [`19.0.0.9-javaee7-java11`](https://github.com/WASdev/ci.docker/blob/5d7f86fbf1e41f1992ad9641f06cb114bc20cec4/ga/19.0.0.9/javaee7/Dockerfile.java11)
|
- [`19.0.0.9-javaee7-java11`](https://github.com/WASdev/ci.docker/blob/3c8a6c6ca9af05c504fb26788030e4f8ff5125b6/ga/19.0.0.9/javaee7/Dockerfile.java11)
|
||||||
|
|
||||||
# Quick reference
|
# Quick reference
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue