Skip to content

Commit

Permalink
Run update.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
docker-library-bot committed Dec 1, 2020
1 parent 957457c commit 0b9c23b
Show file tree
Hide file tree
Showing 15 changed files with 123 additions and 124 deletions.
4 changes: 2 additions & 2 deletions archlinux/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ WARNING:

# Supported tags and respective `Dockerfile` links

- [`latest`, `base`, `base-20201123.0.9844`](https://github.com/archlinux/archlinux-docker/blob/cd2db9c68a43b280fd08aeb1b2b70fc9d4ccc37b/Dockerfile.base)
- [`base-devel`, `base-devel-20201123.0.9844`](https://github.com/archlinux/archlinux-docker/blob/cd2db9c68a43b280fd08aeb1b2b70fc9d4ccc37b/Dockerfile.base-devel)
- [`latest`, `base`, `base-20201129.0.10056`](https://github.com/archlinux/archlinux-docker/blob/bb88ba0ee69048511de789fa87a191ae4c176ff2/Dockerfile.base)
- [`base-devel`, `base-devel-20201129.0.10056`](https://github.com/archlinux/archlinux-docker/blob/bb88ba0ee69048511de789fa87a191ae4c176ff2/Dockerfile.base-devel)

# Quick reference (cont.)

Expand Down
2 changes: 1 addition & 1 deletion bash/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ WARNING:

# Supported tags and respective `Dockerfile` links

- [`devel-20201116`, `devel`](https://github.com/tianon/docker-bash/blob/b74e46366440c29775c5dc40151b372d573c0193/devel/Dockerfile)
- [`devel-20201118`, `devel`](https://github.com/tianon/docker-bash/blob/d20fd750f0b88e865e60ca682dacd46f5882956d/devel/Dockerfile)
- [`5.1-rc3`, `5.1-rc`, `rc`](https://github.com/tianon/docker-bash/blob/be3797835c035ee8b4a15ea1140c2eee05c90c7e/5.1-rc/Dockerfile)
- [`5.0.18`, `5.0`, `5`, `latest`](https://github.com/tianon/docker-bash/blob/7d80c7cc5d829b6be9e04b6b2cba98a228fb67db/5.0/Dockerfile)
- [`4.4.23`, `4.4`, `4`](https://github.com/tianon/docker-bash/blob/7d80c7cc5d829b6be9e04b6b2cba98a228fb67db/4.4/Dockerfile)
Expand Down
18 changes: 9 additions & 9 deletions bonita/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ WARNING:

- [`7.9.5`, `7.9`](https://github.com/Bonitasoft-Community/docker_bonita/blob/b58b05d989055ca3521fc92211d10ff640b4028f/7.9/Dockerfile)
- [`7.10.6`, `7.10`](https://github.com/Bonitasoft-Community/docker_bonita/blob/e6f9f1a5e57c35bbd833c9441a639f326dffb7d5/7.10/Dockerfile)
- [`7.11.3`, `7.11`, `latest`](https://github.com/bonitasoft/bonita-distrib/blob/39f39f028c344311e8f35c7e98b1c18051f277f6/docker/Dockerfile)
- [`7.11.4`, `7.11`, `latest`](https://github.com/bonitasoft/bonita-distrib/blob/231024c8290a9aa31a45b758a0765a684c21ed21/docker/Dockerfile)

# Quick reference (cont.)

Expand Down Expand Up @@ -268,7 +268,7 @@ The `-v /my/own/datadir:/opt/bonita` part of the command mounts the `/my/own/dat

```console
cd bonita_migration
wget https://github.com/bonitasoft/bonita-platform-releases/releases/download/7.11.2/bonita-migration-distrib-2.53.0.zip
wget https://github.com/bonitasoft/bonita-platform-releases/releases/download/7.11.4/bonita-migration-distrib-2.53.0.zip
wget https://download.forge.ow2.org/bonita/BonitaBPMCommunity-7.2.4-Tomcat-7.0.67.zip
unzip bonita-migration-distrib-2.53.0.zip
unzip BonitaBPMCommunity-7.2.4-Tomcat-7.0.67.zip
Expand All @@ -285,7 +285,7 @@ The `-v /my/own/datadir:/opt/bonita` part of the command mounts the `/my/own/dat

```console
cd bonita_migration
wget https://github.com/bonitasoft/bonita-platform-releases/releases/download/7.11.2/bonita-migration-distrib-2.53.0.zip
wget https://github.com/bonitasoft/bonita-platform-releases/releases/download/7.11.4/bonita-migration-distrib-2.53.0.zip
unzip bonita-migration-distrib-2.53.0.zip
```

Expand Down Expand Up @@ -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.11.3_postgres --link mydbpostgres:postgres -e "DB_NAME=newbonitadb" -e "DB_USER=newbonitauser" -e "DB_PASS=newbonitapass" -d -p 8081:8080 bonita:7.11.3
$ docker run --name=bonita_7.11.4_postgres --link mydbpostgres:postgres -e "DB_NAME=newbonitadb" -e "DB_USER=newbonitauser" -e "DB_PASS=newbonitapass" -d -p 8081:8080 bonita:7.11.4
```

- Reapply specific configuration if needed, for example with a version >= 7.3.0 :

```console
$ docker exec -ti bonita_7.11.3_postgres /bin/bash
$ docker exec -ti bonita_7.11.4_postgres /bin/bash
```

```console
$ cd /opt/bonita/BonitaCommunity-7.11.3/setup
$ cd /opt/bonita/BonitaCommunity-7.11.4/setup
$ ./setup.sh pull
$ TENANT_LOGIN=tech_user
$ TENANT_PASSWORD=secret
Expand All @@ -359,7 +359,7 @@ The `-v /my/own/datadir:/opt/bonita` part of the command mounts the `/my/own/dat
```

```console
$ docker restart bonita_7.11.3_postgres
$ docker restart bonita_7.11.4_postgres
```

- Specific consideration regarding migration to Java 11 in Bonita 7.9
Expand Down Expand Up @@ -483,7 +483,7 @@ For example, you can increase the log level :
```console
$ mkdir -p custom_bonita
$ echo '#!/bin/bash' > custom_bonita/bonita.sh
$ echo 'sed -i "s/^org.bonitasoft.level = WARNING$/org.bonitasoft.level = FINEST/" /opt/bonita/BonitaCommunity-7.11.3/server/conf/logging.properties' >> custom_bonita/bonita.sh
$ echo 'sed -i "s/^org.bonitasoft.level = WARNING$/org.bonitasoft.level = FINEST/" /opt/bonita/BonitaCommunity-7.11.4/server/conf/logging.properties' >> custom_bonita/bonita.sh
$ chmod +x custom_bonita/bonita.sh
$ docker run --name bonita_custom -v "$PWD"/custom_bonita/:/opt/custom-init.d -d -p 8080:8080 bonita
Expand All @@ -501,7 +501,7 @@ Note: There are several ways to check the `bonita` logs. Till Bonita 7.8, one of

```console
$ docker exec -ti bonita_custom /bin/bash
tail -f /opt/bonita/BonitaCommunity-7.11.3/server/logs/bonita.`date +%Y-%m-%d`.log
tail -f /opt/bonita/BonitaCommunity-7.11.4/server/logs/bonita.`date +%Y-%m-%d`.log
```

Since Bonita 7.9 bonita logs are redirected towards standard output and directly accessible using
Expand Down
2 changes: 1 addition & 1 deletion clearlinux/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ WARNING:

# Supported tags and respective `Dockerfile` links

- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/c2963445171336a0f8277d322e7a0dc46af9b9c7/Dockerfile)
- [`latest`, `base`](https://github.com/clearlinux/docker-brew-clearlinux/blob/1e7a59d6eb1c318a2b13cf09eb5795443568b923/Dockerfile)

# Quick reference (cont.)

Expand Down
2 changes: 1 addition & 1 deletion crate/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ WARNING:

# Supported tags and respective `Dockerfile` links

- [`4.3.1`, `4.3`, `latest`](https://github.com/crate/docker-crate/blob/ae4ab9e8477ad21b7387d2e5ea3f1fc354da5196/Dockerfile)
- [`4.3.2`, `4.3`, `latest`](https://github.com/crate/docker-crate/blob/3bd1674c253ce5130adbd4808d4b21d39bac4a31/Dockerfile)
- [`4.2.7`, `4.2`](https://github.com/crate/docker-crate/blob/441cd8bb0115a268f30633839bc29d813dfaa0db/Dockerfile)
- [`4.1.8`, `4.1`](https://github.com/crate/docker-crate/blob/fbe46a3c699dfe79242e659626a39b09325d58ab/Dockerfile)
- [`4.0.12`, `4.0`](https://github.com/crate/docker-crate/blob/7791cda08fbf054ab2ce7a988f8811074b8c3bf4/Dockerfile)
Expand Down
24 changes: 12 additions & 12 deletions drupal/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,18 +24,18 @@ WARNING:

# Supported tags and respective `Dockerfile` links

- [`9.0.8-apache-buster`, `9.0-apache-buster`, `9-apache-buster`, `apache-buster`, `9.0.8-apache`, `9.0-apache`, `9-apache`, `apache`, `9.0.8`, `9.0`, `9`, `latest`](https://github.com/docker-library/drupal/blob/0257fe91827fc1c1fa506f450de33d3e3cf5ba59/9.0/apache-buster/Dockerfile)
- [`9.0.8-fpm-buster`, `9.0-fpm-buster`, `9-fpm-buster`, `fpm-buster`, `9.0.8-fpm`, `9.0-fpm`, `9-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/0257fe91827fc1c1fa506f450de33d3e3cf5ba59/9.0/fpm-buster/Dockerfile)
- [`9.0.8-fpm-alpine3.12`, `9.0-fpm-alpine3.12`, `9-fpm-alpine3.12`, `fpm-alpine3.12`, `9.0.8-fpm-alpine`, `9.0-fpm-alpine`, `9-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/0257fe91827fc1c1fa506f450de33d3e3cf5ba59/9.0/fpm-alpine3.12/Dockerfile)
- [`8.9.9-apache-buster`, `8.9-apache-buster`, `8-apache-buster`, `8.9.9-apache`, `8.9-apache`, `8-apache`, `8.9.9`, `8.9`, `8`](https://github.com/docker-library/drupal/blob/080b9e43737e4456ad34f5acb48a21a39f9770c8/8.9/apache-buster/Dockerfile)
- [`8.9.9-fpm-buster`, `8.9-fpm-buster`, `8-fpm-buster`, `8.9.9-fpm`, `8.9-fpm`, `8-fpm`](https://github.com/docker-library/drupal/blob/080b9e43737e4456ad34f5acb48a21a39f9770c8/8.9/fpm-buster/Dockerfile)
- [`8.9.9-fpm-alpine3.12`, `8.9-fpm-alpine3.12`, `8-fpm-alpine3.12`, `8.9.9-fpm-alpine`, `8.9-fpm-alpine`, `8-fpm-alpine`](https://github.com/docker-library/drupal/blob/080b9e43737e4456ad34f5acb48a21a39f9770c8/8.9/fpm-alpine3.12/Dockerfile)
- [`8.8.11-apache-buster`, `8.8-apache-buster`, `8.8.11-apache`, `8.8-apache`, `8.8.11`, `8.8`](https://github.com/docker-library/drupal/blob/49aa879b61bfcc7d52c6ca76379e56810046041a/8.8/apache-buster/Dockerfile)
- [`8.8.11-fpm-buster`, `8.8-fpm-buster`, `8.8.11-fpm`, `8.8-fpm`](https://github.com/docker-library/drupal/blob/49aa879b61bfcc7d52c6ca76379e56810046041a/8.8/fpm-buster/Dockerfile)
- [`8.8.11-fpm-alpine3.12`, `8.8-fpm-alpine3.12`, `8.8.11-fpm-alpine`, `8.8-fpm-alpine`](https://github.com/docker-library/drupal/blob/49aa879b61bfcc7d52c6ca76379e56810046041a/8.8/fpm-alpine3.12/Dockerfile)
- [`7.74-apache-buster`, `7-apache-buster`, `7.74-apache`, `7-apache`, `7.74`, `7`](https://github.com/docker-library/drupal/blob/6bf962158d6197bac8642c86efe412fca796f6ab/7/apache-buster/Dockerfile)
- [`7.74-fpm-buster`, `7-fpm-buster`, `7.74-fpm`, `7-fpm`](https://github.com/docker-library/drupal/blob/6bf962158d6197bac8642c86efe412fca796f6ab/7/fpm-buster/Dockerfile)
- [`7.74-fpm-alpine3.12`, `7-fpm-alpine3.12`, `7.74-fpm-alpine`, `7-fpm-alpine`](https://github.com/docker-library/drupal/blob/6bf962158d6197bac8642c86efe412fca796f6ab/7/fpm-alpine3.12/Dockerfile)
- [`9.0.9-apache-buster`, `9.0-apache-buster`, `9-apache-buster`, `apache-buster`, `9.0.9-apache`, `9.0-apache`, `9-apache`, `apache`, `9.0.9`, `9.0`, `9`, `latest`](https://github.com/docker-library/drupal/blob/99ef75995138a32d9c99b03329f95b9882760b7c/9.0/apache-buster/Dockerfile)
- [`9.0.9-fpm-buster`, `9.0-fpm-buster`, `9-fpm-buster`, `fpm-buster`, `9.0.9-fpm`, `9.0-fpm`, `9-fpm`, `fpm`](https://github.com/docker-library/drupal/blob/99ef75995138a32d9c99b03329f95b9882760b7c/9.0/fpm-buster/Dockerfile)
- [`9.0.9-fpm-alpine3.12`, `9.0-fpm-alpine3.12`, `9-fpm-alpine3.12`, `fpm-alpine3.12`, `9.0.9-fpm-alpine`, `9.0-fpm-alpine`, `9-fpm-alpine`, `fpm-alpine`](https://github.com/docker-library/drupal/blob/99ef75995138a32d9c99b03329f95b9882760b7c/9.0/fpm-alpine3.12/Dockerfile)
- [`8.9.10-apache-buster`, `8.9-apache-buster`, `8-apache-buster`, `8.9.10-apache`, `8.9-apache`, `8-apache`, `8.9.10`, `8.9`, `8`](https://github.com/docker-library/drupal/blob/93b6476a4a0de4064018e92ce36924f47a97c2e0/8.9/apache-buster/Dockerfile)
- [`8.9.10-fpm-buster`, `8.9-fpm-buster`, `8-fpm-buster`, `8.9.10-fpm`, `8.9-fpm`, `8-fpm`](https://github.com/docker-library/drupal/blob/93b6476a4a0de4064018e92ce36924f47a97c2e0/8.9/fpm-buster/Dockerfile)
- [`8.9.10-fpm-alpine3.12`, `8.9-fpm-alpine3.12`, `8-fpm-alpine3.12`, `8.9.10-fpm-alpine`, `8.9-fpm-alpine`, `8-fpm-alpine`](https://github.com/docker-library/drupal/blob/93b6476a4a0de4064018e92ce36924f47a97c2e0/8.9/fpm-alpine3.12/Dockerfile)
- [`8.8.12-apache-buster`, `8.8-apache-buster`, `8.8.12-apache`, `8.8-apache`, `8.8.12`, `8.8`](https://github.com/docker-library/drupal/blob/e49893a668ed0f7700fbc8644aeef3c785db26a8/8.8/apache-buster/Dockerfile)
- [`8.8.12-fpm-buster`, `8.8-fpm-buster`, `8.8.12-fpm`, `8.8-fpm`](https://github.com/docker-library/drupal/blob/e49893a668ed0f7700fbc8644aeef3c785db26a8/8.8/fpm-buster/Dockerfile)
- [`8.8.12-fpm-alpine3.12`, `8.8-fpm-alpine3.12`, `8.8.12-fpm-alpine`, `8.8-fpm-alpine`](https://github.com/docker-library/drupal/blob/e49893a668ed0f7700fbc8644aeef3c785db26a8/8.8/fpm-alpine3.12/Dockerfile)
- [`7.75-apache-buster`, `7-apache-buster`, `7.75-apache`, `7-apache`, `7.75`, `7`](https://github.com/docker-library/drupal/blob/f55574b115e8e5749de1ed399d258ff20453e99b/7/apache-buster/Dockerfile)
- [`7.75-fpm-buster`, `7-fpm-buster`, `7.75-fpm`, `7-fpm`](https://github.com/docker-library/drupal/blob/f55574b115e8e5749de1ed399d258ff20453e99b/7/fpm-buster/Dockerfile)
- [`7.75-fpm-alpine3.12`, `7-fpm-alpine3.12`, `7.75-fpm-alpine`, `7-fpm-alpine`](https://github.com/docker-library/drupal/blob/f55574b115e8e5749de1ed399d258ff20453e99b/7/fpm-alpine3.12/Dockerfile)

# Quick reference (cont.)

Expand Down
12 changes: 6 additions & 6 deletions haproxy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ WARNING:

# Supported tags and respective `Dockerfile` links

- [`2.4-dev1`, `2.4-dev`](https://github.com/docker-library/haproxy/blob/2352794b88adcac2c859d2afde832db50aeb2182/2.4-rc/Dockerfile)
- [`2.4-dev1-alpine`, `2.4-dev-alpine`](https://github.com/docker-library/haproxy/blob/2352794b88adcac2c859d2afde832db50aeb2182/2.4-rc/alpine/Dockerfile)
- [`2.3.1`, `2.3`, `latest`](https://github.com/docker-library/haproxy/blob/f14d7fcdf03e79e106af443b947418ca0a1ad1f4/2.3/Dockerfile)
- [`2.3.1-alpine`, `2.3-alpine`, `alpine`](https://github.com/docker-library/haproxy/blob/f14d7fcdf03e79e106af443b947418ca0a1ad1f4/2.3/alpine/Dockerfile)
- [`2.2.5`, `2.2`, `lts`](https://github.com/docker-library/haproxy/blob/b808ca775382ae59e9ed3a43308fcbe62c1389c5/2.2/Dockerfile)
- [`2.2.5-alpine`, `2.2-alpine`, `lts-alpine`](https://github.com/docker-library/haproxy/blob/1678bf37370bac8e3dc7a6b03d62c734bb7d58dc/2.2/alpine/Dockerfile)
- [`2.4-dev2`, `2.4-dev`](https://github.com/docker-library/haproxy/blob/ad7662656f2d2dc3218d2e3616c141956cb4a8d0/2.4-rc/Dockerfile)
- [`2.4-dev2-alpine`, `2.4-dev-alpine`](https://github.com/docker-library/haproxy/blob/ad7662656f2d2dc3218d2e3616c141956cb4a8d0/2.4-rc/alpine/Dockerfile)
- [`2.3.2`, `2.3`, `latest`](https://github.com/docker-library/haproxy/blob/ced45443a115fbcc9f170c5f71c19a2b227aeb1d/2.3/Dockerfile)
- [`2.3.2-alpine`, `2.3-alpine`, `alpine`](https://github.com/docker-library/haproxy/blob/ced45443a115fbcc9f170c5f71c19a2b227aeb1d/2.3/alpine/Dockerfile)
- [`2.2.6`, `2.2`, `lts`](https://github.com/docker-library/haproxy/blob/acf4b709eac7a08c16ba7669ac76c46312033bb0/2.2/Dockerfile)
- [`2.2.6-alpine`, `2.2-alpine`, `lts-alpine`](https://github.com/docker-library/haproxy/blob/acf4b709eac7a08c16ba7669ac76c46312033bb0/2.2/alpine/Dockerfile)
- [`2.1.10`, `2.1`](https://github.com/docker-library/haproxy/blob/b808ca775382ae59e9ed3a43308fcbe62c1389c5/2.1/Dockerfile)
- [`2.1.10-alpine`, `2.1-alpine`](https://github.com/docker-library/haproxy/blob/45fa7611660c5017326eaa9db671c439dc12262d/2.1/alpine/Dockerfile)
- [`2.0.19`, `2.0`](https://github.com/docker-library/haproxy/blob/c395a5c7bcc9d7bc04aaaf028a591cbad7afd9f7/2.0/Dockerfile)
Expand Down
6 changes: 3 additions & 3 deletions matomo/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ WARNING:

# Supported tags and respective `Dockerfile` links

- [`3.14.1-apache`, `3.14-apache`, `3-apache`, `apache`, `3.14.1`, `3.14`, `3`, `latest`](https://github.com/matomo-org/docker/blob/e31d295b7cf52f34e6cc729630942c5b2786e53c/apache/Dockerfile)
- [`3.14.1-fpm`, `3.14-fpm`, `3-fpm`, `fpm`](https://github.com/matomo-org/docker/blob/e31d295b7cf52f34e6cc729630942c5b2786e53c/fpm/Dockerfile)
- [`3.14.1-fpm-alpine`, `3.14-fpm-alpine`, `3-fpm-alpine`, `fpm-alpine`](https://github.com/matomo-org/docker/blob/e31d295b7cf52f34e6cc729630942c5b2786e53c/fpm-alpine/Dockerfile)
- [`4.0.3-apache`, `4.0-apache`, `4-apache`, `apache`, `4.0.3`, `4.0`, `4`, `latest`](https://github.com/matomo-org/docker/blob/abf4e28de6679810bec718e9e0233aeeaa2b6214/apache/Dockerfile)
- [`4.0.3-fpm`, `4.0-fpm`, `4-fpm`, `fpm`](https://github.com/matomo-org/docker/blob/abf4e28de6679810bec718e9e0233aeeaa2b6214/fpm/Dockerfile)
- [`4.0.3-fpm-alpine`, `4.0-fpm-alpine`, `4-fpm-alpine`, `fpm-alpine`](https://github.com/matomo-org/docker/blob/abf4e28de6679810bec718e9e0233aeeaa2b6214/fpm-alpine/Dockerfile)

# Quick reference (cont.)

Expand Down
Loading

0 comments on commit 0b9c23b

Please sign in to comment.