This image is based on the official MySQL image.
See docker.cnf config
file (located in /etc/mysql/conf.d/
directory within the image itself).
This image is configured with the two databases required by Bonita:
bonita
(connection userbonita
, passwordbpm
)business_data
(connection userbusiness_data
, passwordbpm
)
- Default way:
docker run -d --name bonita-mysql -p 3306:3306 bonitasoft/bonita-mysql:8.0.33
- Using local volume for backup/restore:
docker run -d \
--name bonita-mysql \
-p 3306:3306 \
-v /my/sql/folder:/opt/bonita/sql \
bonitasoft/bonita-mysql:8.0.33
docker exec -it bonita-mysql bash
docker logs bonita-mysql
Please refer to Bonitasoft official documentation for examples on how to run this image using a Bonita Docker image.