Run update.sh
This commit is contained in:
parent
c0f174997e
commit
4e68b8eb5a
|
|
@ -25,8 +25,8 @@ WARNING:
|
|||
# Supported tags and respective `Dockerfile` links
|
||||
|
||||
- [`7.9.5`, `7.9`](https://github.com/Bonitasoft-Community/docker_bonita/blob/b58b05d989055ca3521fc92211d10ff640b4028f/7.9/Dockerfile)
|
||||
- [`7.10.5`, `7.10`](https://github.com/Bonitasoft-Community/docker_bonita/blob/80b6eebd5281c5597e2f38ed4d3a8c4b8449261c/7.10/Dockerfile)
|
||||
- [`7.11.1`, `7.11`, `latest`](https://github.com/Bonitasoft-Community/docker_bonita/blob/cefacfd0bf83e68acaeeaddadb7bbbe73293041f/7.11/Dockerfile)
|
||||
- [`7.10.6`, `7.10`](https://github.com/Bonitasoft-Community/docker_bonita/blob/e6f9f1a5e57c35bbd833c9441a639f326dffb7d5/7.10/Dockerfile)
|
||||
- [`7.11.2`, `7.11`, `latest`](https://github.com/Bonitasoft-Community/docker_bonita/blob/e6f9f1a5e57c35bbd833c9441a639f326dffb7d5/7.11/Dockerfile)
|
||||
|
||||
# Quick reference (cont.)
|
||||
|
||||
|
|
@ -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://release.ow2.org/bonita/bonita-migration-distrib-2.52.0.zip
|
||||
wget https://github.com/bonitasoft/bonita-platform-releases/releases/download/7.11.0/bonita-migration-distrib-2.52.0.zip
|
||||
wget https://download.forge.ow2.org/bonita/BonitaBPMCommunity-7.2.4-Tomcat-7.0.67.zip
|
||||
unzip bonita-migration-distrib-2.52.0.zip
|
||||
unzip BonitaBPMCommunity-7.2.4-Tomcat-7.0.67.zip
|
||||
|
|
@ -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://release.ow2.org/bonita/bonita-migration-distrib-2.52.0.zip
|
||||
wget https://github.com/bonitasoft/bonita-platform-releases/releases/download/7.11.0/bonita-migration-distrib-2.52.0.zip
|
||||
unzip bonita-migration-distrib-2.52.0.zip
|
||||
```
|
||||
|
||||
|
|
@ -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.1_postgres --link mydbpostgres:postgres -e "DB_NAME=newbonitadb" -e "DB_USER=newbonitauser" -e "DB_PASS=newbonitapass" -d -p 8081:8080 bonita:7.11.1
|
||||
$ docker run --name=bonita_7.11.2_postgres --link mydbpostgres:postgres -e "DB_NAME=newbonitadb" -e "DB_USER=newbonitauser" -e "DB_PASS=newbonitapass" -d -p 8081:8080 bonita:7.11.2
|
||||
```
|
||||
|
||||
- Reapply specific configuration if needed, for example with a version >= 7.3.0 :
|
||||
|
||||
```console
|
||||
$ docker exec -ti bonita_7.11.1_postgres /bin/bash
|
||||
$ docker exec -ti bonita_7.11.2_postgres /bin/bash
|
||||
```
|
||||
|
||||
```console
|
||||
$ cd /opt/bonita/BonitaCommunity-7.11.1/setup
|
||||
$ cd /opt/bonita/BonitaCommunity-7.11.2/setup
|
||||
$ ./setup.sh pull
|
||||
$ TENANT_LOGIN=tech_user
|
||||
$ TENANT_PASSWORD=secret
|
||||
|
|
@ -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.1_postgres
|
||||
$ docker restart bonita_7.11.2_postgres
|
||||
```
|
||||
|
||||
- Specific consideration regarding migration to Java 11 in Bonita 7.9
|
||||
|
|
@ -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.1/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.2/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
|
||||
|
|
@ -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.1/server/logs/bonita.`date +%Y-%m-%d`.log
|
||||
tail -f /opt/bonita/BonitaCommunity-7.11.2/server/logs/bonita.`date +%Y-%m-%d`.log
|
||||
```
|
||||
|
||||
Since Bonita 7.9 bonita logs are redirected towards standard output and directly accessible using
|
||||
|
|
|
|||
|
|
@ -24,8 +24,8 @@ WARNING:
|
|||
|
||||
# Supported tags and respective `Dockerfile` links
|
||||
|
||||
- [`3.10.3`, `3.10`, `latest`](https://github.com/geonetwork/docker-geonetwork/blob/2c9bc51a681916fba85dd84b0e278c1c608d7d56/3.10.3/Dockerfile)
|
||||
- [`3.10.3-postgres`, `3.10-postgres`, `postgres`](https://github.com/geonetwork/docker-geonetwork/blob/2c9bc51a681916fba85dd84b0e278c1c608d7d56/3.10.3/postgres/Dockerfile)
|
||||
- [`3.10.4`, `3.10`, `latest`](https://github.com/geonetwork/docker-geonetwork/blob/1105a046c952653df50455fc069e3736f432155e/3.10.4/Dockerfile)
|
||||
- [`3.10.4-postgres`, `3.10-postgres`, `postgres`](https://github.com/geonetwork/docker-geonetwork/blob/1105a046c952653df50455fc069e3736f432155e/3.10.4/postgres/Dockerfile)
|
||||
- [`3.8.3`, `3.8`](https://github.com/geonetwork/docker-geonetwork/blob/af81a4ff8f592d27b4911ad20d569379864ee85f/3.8.3/Dockerfile)
|
||||
- [`3.8.3-postgres`, `3.8-postgres`](https://github.com/geonetwork/docker-geonetwork/blob/af81a4ff8f592d27b4911ad20d569379864ee85f/3.8.3/postgres/Dockerfile)
|
||||
- [`4.0.0-alpha.1`, `4.0.0-alpha`, `4.0-alpha`, `4-alpha`](https://github.com/geonetwork/docker-geonetwork/blob/4b3fa67a1869eb82609f4117bfe39ccfdd6b2387/4.0.0-alpha.1/Dockerfile)
|
||||
|
|
|
|||
|
|
@ -24,28 +24,28 @@ WARNING:
|
|||
|
||||
# Supported tags and respective `Dockerfile` links
|
||||
|
||||
- [`14.11.0-stretch`, `14.11-stretch`, `14-stretch`, `stretch`, `current-stretch`, `14.11.0`, `14.11`, `14`, `latest`, `current`](https://github.com/nodejs/docker-node/blob/c7bc3b9da1b534cc66021f7606af7e5b72f5ed11/14/stretch/Dockerfile)
|
||||
- [`14.11.0-stretch-slim`, `14.11-stretch-slim`, `14-stretch-slim`, `stretch-slim`, `current-stretch-slim`, `14.11.0-slim`, `14.11-slim`, `14-slim`, `slim`, `current-slim`](https://github.com/nodejs/docker-node/blob/c7bc3b9da1b534cc66021f7606af7e5b72f5ed11/14/stretch-slim/Dockerfile)
|
||||
- [`14.11.0-buster`, `14.11-buster`, `14-buster`, `buster`, `current-buster`](https://github.com/nodejs/docker-node/blob/c7bc3b9da1b534cc66021f7606af7e5b72f5ed11/14/buster/Dockerfile)
|
||||
- [`14.11.0-buster-slim`, `14.11-buster-slim`, `14-buster-slim`, `buster-slim`, `current-buster-slim`](https://github.com/nodejs/docker-node/blob/c7bc3b9da1b534cc66021f7606af7e5b72f5ed11/14/buster-slim/Dockerfile)
|
||||
- [`14.11.0-alpine3.10`, `14.11-alpine3.10`, `14-alpine3.10`, `alpine3.10`, `current-alpine3.10`](https://github.com/nodejs/docker-node/blob/c7bc3b9da1b534cc66021f7606af7e5b72f5ed11/14/alpine3.10/Dockerfile)
|
||||
- [`14.11.0-alpine3.11`, `14.11-alpine3.11`, `14-alpine3.11`, `alpine3.11`, `current-alpine3.11`, `14.11.0-alpine`, `14.11-alpine`, `14-alpine`, `alpine`, `current-alpine`](https://github.com/nodejs/docker-node/blob/c7bc3b9da1b534cc66021f7606af7e5b72f5ed11/14/alpine3.11/Dockerfile)
|
||||
- [`14.11.0-alpine3.12`, `14.11-alpine3.12`, `14-alpine3.12`, `alpine3.12`, `current-alpine3.12`](https://github.com/nodejs/docker-node/blob/c7bc3b9da1b534cc66021f7606af7e5b72f5ed11/14/alpine3.12/Dockerfile)
|
||||
- [`14.12.0-stretch`, `14.12-stretch`, `14-stretch`, `stretch`, `current-stretch`, `14.12.0`, `14.12`, `14`, `latest`, `current`](https://github.com/nodejs/docker-node/blob/0e8c6f58d5adf699b783a3ebb3b8ad6a55d1cb02/14/stretch/Dockerfile)
|
||||
- [`14.12.0-stretch-slim`, `14.12-stretch-slim`, `14-stretch-slim`, `stretch-slim`, `current-stretch-slim`, `14.12.0-slim`, `14.12-slim`, `14-slim`, `slim`, `current-slim`](https://github.com/nodejs/docker-node/blob/0e8c6f58d5adf699b783a3ebb3b8ad6a55d1cb02/14/stretch-slim/Dockerfile)
|
||||
- [`14.12.0-buster`, `14.12-buster`, `14-buster`, `buster`, `current-buster`](https://github.com/nodejs/docker-node/blob/0e8c6f58d5adf699b783a3ebb3b8ad6a55d1cb02/14/buster/Dockerfile)
|
||||
- [`14.12.0-buster-slim`, `14.12-buster-slim`, `14-buster-slim`, `buster-slim`, `current-buster-slim`](https://github.com/nodejs/docker-node/blob/0e8c6f58d5adf699b783a3ebb3b8ad6a55d1cb02/14/buster-slim/Dockerfile)
|
||||
- [`14.12.0-alpine3.10`, `14.12-alpine3.10`, `14-alpine3.10`, `alpine3.10`, `current-alpine3.10`](https://github.com/nodejs/docker-node/blob/a554ca357f39c291d261e8c4410994e0c7a358b4/14/alpine3.10/Dockerfile)
|
||||
- [`14.12.0-alpine3.11`, `14.12-alpine3.11`, `14-alpine3.11`, `alpine3.11`, `current-alpine3.11`, `14.12.0-alpine`, `14.12-alpine`, `14-alpine`, `alpine`, `current-alpine`](https://github.com/nodejs/docker-node/blob/a554ca357f39c291d261e8c4410994e0c7a358b4/14/alpine3.11/Dockerfile)
|
||||
- [`14.12.0-alpine3.12`, `14.12-alpine3.12`, `14-alpine3.12`, `alpine3.12`, `current-alpine3.12`](https://github.com/nodejs/docker-node/blob/a554ca357f39c291d261e8c4410994e0c7a358b4/14/alpine3.12/Dockerfile)
|
||||
- [`12.18.4-stretch`, `12.18-stretch`, `12-stretch`, `erbium-stretch`, `lts-stretch`, `12.18.4`, `12.18`, `12`, `erbium`, `lts`](https://github.com/nodejs/docker-node/blob/de78cda8d04c7c3a5c45302dcce22d5ea258f7ef/12/stretch/Dockerfile)
|
||||
- [`12.18.4-stretch-slim`, `12.18-stretch-slim`, `12-stretch-slim`, `erbium-stretch-slim`, `lts-stretch-slim`, `12.18.4-slim`, `12.18-slim`, `12-slim`, `erbium-slim`, `lts-slim`](https://github.com/nodejs/docker-node/blob/de78cda8d04c7c3a5c45302dcce22d5ea258f7ef/12/stretch-slim/Dockerfile)
|
||||
- [`12.18.4-buster`, `12.18-buster`, `12-buster`, `erbium-buster`, `lts-buster`](https://github.com/nodejs/docker-node/blob/de78cda8d04c7c3a5c45302dcce22d5ea258f7ef/12/buster/Dockerfile)
|
||||
- [`12.18.4-buster-slim`, `12.18-buster-slim`, `12-buster-slim`, `erbium-buster-slim`, `lts-buster-slim`](https://github.com/nodejs/docker-node/blob/de78cda8d04c7c3a5c45302dcce22d5ea258f7ef/12/buster-slim/Dockerfile)
|
||||
- [`12.18.4-alpine3.9`, `12.18-alpine3.9`, `12-alpine3.9`, `erbium-alpine3.9`, `lts-alpine3.9`](https://github.com/nodejs/docker-node/blob/de78cda8d04c7c3a5c45302dcce22d5ea258f7ef/12/alpine3.9/Dockerfile)
|
||||
- [`12.18.4-alpine3.10`, `12.18-alpine3.10`, `12-alpine3.10`, `erbium-alpine3.10`, `lts-alpine3.10`](https://github.com/nodejs/docker-node/blob/de78cda8d04c7c3a5c45302dcce22d5ea258f7ef/12/alpine3.10/Dockerfile)
|
||||
- [`12.18.4-alpine3.11`, `12.18-alpine3.11`, `12-alpine3.11`, `erbium-alpine3.11`, `lts-alpine3.11`, `12.18.4-alpine`, `12.18-alpine`, `12-alpine`, `erbium-alpine`, `lts-alpine`](https://github.com/nodejs/docker-node/blob/de78cda8d04c7c3a5c45302dcce22d5ea258f7ef/12/alpine3.11/Dockerfile)
|
||||
- [`12.18.4-alpine3.12`, `12.18-alpine3.12`, `12-alpine3.12`, `erbium-alpine3.12`, `lts-alpine3.12`](https://github.com/nodejs/docker-node/blob/de78cda8d04c7c3a5c45302dcce22d5ea258f7ef/12/alpine3.12/Dockerfile)
|
||||
- [`12.18.4-alpine3.9`, `12.18-alpine3.9`, `12-alpine3.9`, `erbium-alpine3.9`, `lts-alpine3.9`](https://github.com/nodejs/docker-node/blob/3d290f8d6d4692d658a1fbd0684c7747770d9516/12/alpine3.9/Dockerfile)
|
||||
- [`12.18.4-alpine3.10`, `12.18-alpine3.10`, `12-alpine3.10`, `erbium-alpine3.10`, `lts-alpine3.10`](https://github.com/nodejs/docker-node/blob/3d290f8d6d4692d658a1fbd0684c7747770d9516/12/alpine3.10/Dockerfile)
|
||||
- [`12.18.4-alpine3.11`, `12.18-alpine3.11`, `12-alpine3.11`, `erbium-alpine3.11`, `lts-alpine3.11`, `12.18.4-alpine`, `12.18-alpine`, `12-alpine`, `erbium-alpine`, `lts-alpine`](https://github.com/nodejs/docker-node/blob/3d290f8d6d4692d658a1fbd0684c7747770d9516/12/alpine3.11/Dockerfile)
|
||||
- [`12.18.4-alpine3.12`, `12.18-alpine3.12`, `12-alpine3.12`, `erbium-alpine3.12`, `lts-alpine3.12`](https://github.com/nodejs/docker-node/blob/3d290f8d6d4692d658a1fbd0684c7747770d9516/12/alpine3.12/Dockerfile)
|
||||
- [`10.22.1-stretch`, `10.22-stretch`, `10-stretch`, `dubnium-stretch`, `10.22.1`, `10.22`, `10`, `dubnium`](https://github.com/nodejs/docker-node/blob/140d3e49b9dce8532cfc06108f586802ca4be5f5/10/stretch/Dockerfile)
|
||||
- [`10.22.1-stretch-slim`, `10.22-stretch-slim`, `10-stretch-slim`, `dubnium-stretch-slim`, `10.22.1-slim`, `10.22-slim`, `10-slim`, `dubnium-slim`](https://github.com/nodejs/docker-node/blob/140d3e49b9dce8532cfc06108f586802ca4be5f5/10/stretch-slim/Dockerfile)
|
||||
- [`10.22.1-buster`, `10.22-buster`, `10-buster`, `dubnium-buster`](https://github.com/nodejs/docker-node/blob/140d3e49b9dce8532cfc06108f586802ca4be5f5/10/buster/Dockerfile)
|
||||
- [`10.22.1-buster-slim`, `10.22-buster-slim`, `10-buster-slim`, `dubnium-buster-slim`](https://github.com/nodejs/docker-node/blob/140d3e49b9dce8532cfc06108f586802ca4be5f5/10/buster-slim/Dockerfile)
|
||||
- [`10.22.1-alpine3.9`, `10.22-alpine3.9`, `10-alpine3.9`, `dubnium-alpine3.9`](https://github.com/nodejs/docker-node/blob/140d3e49b9dce8532cfc06108f586802ca4be5f5/10/alpine3.9/Dockerfile)
|
||||
- [`10.22.1-alpine3.10`, `10.22-alpine3.10`, `10-alpine3.10`, `dubnium-alpine3.10`](https://github.com/nodejs/docker-node/blob/140d3e49b9dce8532cfc06108f586802ca4be5f5/10/alpine3.10/Dockerfile)
|
||||
- [`10.22.1-alpine3.11`, `10.22-alpine3.11`, `10-alpine3.11`, `dubnium-alpine3.11`, `10.22.1-alpine`, `10.22-alpine`, `10-alpine`, `dubnium-alpine`](https://github.com/nodejs/docker-node/blob/140d3e49b9dce8532cfc06108f586802ca4be5f5/10/alpine3.11/Dockerfile)
|
||||
- [`10.22.1-alpine3.9`, `10.22-alpine3.9`, `10-alpine3.9`, `dubnium-alpine3.9`](https://github.com/nodejs/docker-node/blob/3d290f8d6d4692d658a1fbd0684c7747770d9516/10/alpine3.9/Dockerfile)
|
||||
- [`10.22.1-alpine3.10`, `10.22-alpine3.10`, `10-alpine3.10`, `dubnium-alpine3.10`](https://github.com/nodejs/docker-node/blob/3d290f8d6d4692d658a1fbd0684c7747770d9516/10/alpine3.10/Dockerfile)
|
||||
- [`10.22.1-alpine3.11`, `10.22-alpine3.11`, `10-alpine3.11`, `dubnium-alpine3.11`, `10.22.1-alpine`, `10.22-alpine`, `10-alpine`, `dubnium-alpine`](https://github.com/nodejs/docker-node/blob/3d290f8d6d4692d658a1fbd0684c7747770d9516/10/alpine3.11/Dockerfile)
|
||||
|
||||
# Quick reference (cont.)
|
||||
|
||||
|
|
|
|||
|
|
@ -24,9 +24,9 @@ WARNING:
|
|||
|
||||
# Supported tags and respective `Dockerfile` links
|
||||
|
||||
- [`13.0`, `13`, `latest`](https://github.com/odoo/docker/blob/1bddcda4b2ef30c7443ebe0cae43d17f92aa43cd/13.0/Dockerfile)
|
||||
- [`12.0`, `12`](https://github.com/odoo/docker/blob/1bddcda4b2ef30c7443ebe0cae43d17f92aa43cd/12.0/Dockerfile)
|
||||
- [`11.0`, `11`](https://github.com/odoo/docker/blob/1bddcda4b2ef30c7443ebe0cae43d17f92aa43cd/11.0/Dockerfile)
|
||||
- [`14.0`, `14`, `latest`](https://github.com/odoo/docker/blob/0ffdd00409846901e9f877165c143c985ebc4016/14.0/Dockerfile)
|
||||
- [`13.0`, `13`](https://github.com/odoo/docker/blob/0ffdd00409846901e9f877165c143c985ebc4016/13.0/Dockerfile)
|
||||
- [`12.0`, `12`](https://github.com/odoo/docker/blob/0ffdd00409846901e9f877165c143c985ebc4016/12.0/Dockerfile)
|
||||
|
||||
# Quick reference (cont.)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue