You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Most of the data are stored in a database and can be stored outside the Bonita container as described above using the PostgreSQL or MySQL container. However, some data remains inside the Bonita bundle. Bonita Home is a folder, called `bonita`, which contains configuration, working, and temporary folders and files. There are also log files inside the `logs` folder.
88
+
Most of the data are stored in a database and can be stored outside the Bonita container as described above using the PostgreSQL or MySQL container. However, some data remains inside the Bonita bundle. Bonita Home is a folder, called `bonita`, which contains configuration, working, and temporary folders and files. There are also log files inside the `logs` folder till Bonita 7.8.
89
89
90
90
Important note: There are several ways to store data used by applications that run in Docker containers. We encourage users of the `%%REPO%%` images to familiarize themselves with the options available, including:
91
91
@@ -238,7 +238,7 @@ The `-v /my/own/datadir:/opt/bonita` part of the command mounts the `/my/own/dat
238
238
```
239
239
240
240
```console
241
-
$ cd /opt/bonita/BonitaCommunity-7.9.0-Tomcat-8.5.34/setup
241
+
$ cd /opt/bonita/BonitaCommunity-7.9.0-tomcat/setup
242
242
$ ./setup.sh pull
243
243
$ TENANT_LOGIN=tech_user
244
244
$ TENANT_PASSWORD=secret
@@ -261,6 +261,10 @@ The `-v /my/own/datadir:/opt/bonita` part of the command mounts the `/my/own/dat
261
261
$ docker restart bonita_7.9.0_postgres
262
262
```
263
263
264
+
- Specific consideration regarding migration to Java 11 in Bonita 7.9
265
+
266
+
Bonita 7.9 docker image runs with Java 11. If you are migrating from an earlier version which runs Java 7.8 you should validate on a test environment that your custom code is compatible. Aside from just code incompatibility, special attention has to be given to the dependencies of the custom code, as they might either not work in Java 11.
267
+
264
268
For more details regarding Bonita migration, see the [documentation](https://documentation.bonitasoft.com/bonita/7.9/migrate-from-an-earlier-version-of-bonita-bpm).
265
269
266
270
## Security
@@ -361,6 +365,14 @@ These variables are optional, and used in conjunction to create users and databa
Since Bonita 7.9 `BONITA_SERVER_LOGGING_FILE` and `BONITA_SETUP_LOGGING_FILE` can be used to update logging configuration.
371
+
372
+
`BONITA_SERVER_LOGGING_FILE` default value is `/opt/bonita/BonitaSubscription-${BONITA_VERSION}-tomcat/server/conf/logging.properties`.
373
+
374
+
`BONITA_SETUP_LOGGING_FILE` default value is `/opt/bonita/BonitaSubscription-${BONITA_VERSION}-tomcat/setup/logback.xml`.
375
+
364
376
# How to extend this image
365
377
366
378
If you would like to do additional initialization, you can add a `*.sh` script under `/opt/custom-init.d`. The `startup.sh` file will source any `*.sh` script found in this directory to do further initialization before starting the service.
@@ -370,15 +382,29 @@ For example, you can increase the log level :
0 commit comments