Skip to content

Commit d8c1b19

Browse files
authored
Merge pull request #1777 from Bonitasoft-Community/master
Update Bonita version to 7.11.1
2 parents f66a198 + c60ab8d commit d8c1b19

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

bonita/content.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -228,17 +228,17 @@ The `-v /my/own/datadir:/opt/bonita` part of the command mounts the `/my/own/dat
228228
- If >= 7.3.0
229229

230230
```console
231-
$ docker run --name=bonita_7.11.0_postgres --link mydbpostgres:postgres -e "DB_NAME=newbonitadb" -e "DB_USER=newbonitauser" -e "DB_PASS=newbonitapass" -d -p 8081:8080 %%IMAGE%%:7.11.0
231+
$ 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 %%IMAGE%%:7.11.1
232232
```
233233

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

236236
```console
237-
$ docker exec -ti bonita_7.11.0_postgres /bin/bash
237+
$ docker exec -ti bonita_7.11.1_postgres /bin/bash
238238
```
239239

240240
```console
241-
$ cd /opt/bonita/BonitaCommunity-7.11.0/setup
241+
$ cd /opt/bonita/BonitaCommunity-7.11.1/setup
242242
$ ./setup.sh pull
243243
$ TENANT_LOGIN=tech_user
244244
$ TENANT_PASSWORD=secret
@@ -258,7 +258,7 @@ The `-v /my/own/datadir:/opt/bonita` part of the command mounts the `/my/own/dat
258258
```
259259

260260
```console
261-
$ docker restart bonita_7.11.0_postgres
261+
$ docker restart bonita_7.11.1_postgres
262262
```
263263

264264
- Specific consideration regarding migration to Java 11 in Bonita 7.9
@@ -382,7 +382,7 @@ For example, you can increase the log level :
382382
```console
383383
$ mkdir -p custom_bonita
384384
$ echo '#!/bin/bash' > custom_bonita/bonita.sh
385-
$ echo 'sed -i "s/^org.bonitasoft.level = WARNING$/org.bonitasoft.level = FINEST/" /opt/bonita/BonitaCommunity-7.11.0/server/conf/logging.properties' >> custom_bonita/bonita.sh
385+
$ 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
386386
$ chmod +x custom_bonita/bonita.sh
387387

388388
$ docker run --name bonita_custom -v "$PWD"/custom_bonita/:/opt/custom-init.d -d -p 8080:8080 %%IMAGE%%
@@ -400,7 +400,7 @@ Note: There are several ways to check the `bonita` logs. Till Bonita 7.8, one of
400400

401401
```console
402402
$ docker exec -ti bonita_custom /bin/bash
403-
tail -f /opt/bonita/BonitaCommunity-7.11.0/server/logs/bonita.`date +%Y-%m-%d`.log
403+
tail -f /opt/bonita/BonitaCommunity-7.11.1/server/logs/bonita.`date +%Y-%m-%d`.log
404404
```
405405

406406
Since Bonita 7.9 bonita logs are redirected towards standard output and directly accessible using

0 commit comments

Comments
 (0)