@@ -228,17 +228,17 @@ The `-v /my/own/datadir:/opt/bonita` part of the command mounts the `/my/own/dat
228
228
- If >= 7.3.0
229
229
230
230
```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
232
232
```
233
233
234
234
- Reapply specific configuration if needed, for example with a version >= 7.3.0 :
235
235
236
236
```console
237
- $ docker exec -ti bonita_7.11.0_postgres /bin/bash
237
+ $ docker exec -ti bonita_7.11.1_postgres /bin/bash
238
238
```
239
239
240
240
```console
241
- $ cd /opt/bonita/BonitaCommunity-7.11.0 /setup
241
+ $ cd /opt/bonita/BonitaCommunity-7.11.1 /setup
242
242
$ ./setup.sh pull
243
243
$ TENANT_LOGIN=tech_user
244
244
$ TENANT_PASSWORD=secret
@@ -258,7 +258,7 @@ The `-v /my/own/datadir:/opt/bonita` part of the command mounts the `/my/own/dat
258
258
```
259
259
260
260
```console
261
- $ docker restart bonita_7.11.0_postgres
261
+ $ docker restart bonita_7.11.1_postgres
262
262
```
263
263
264
264
- Specific consideration regarding migration to Java 11 in Bonita 7.9
@@ -382,7 +382,7 @@ For example, you can increase the log level :
382
382
``` console
383
383
$ mkdir -p custom_bonita
384
384
$ 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
386
386
$ chmod +x custom_bonita/bonita.sh
387
387
388
388
$ 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
400
400
401
401
``` console
402
402
$ 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
404
404
```
405
405
406
406
Since Bonita 7.9 bonita logs are redirected towards standard output and directly accessible using
0 commit comments