Skip to content

Latest commit

 

History

History
52 lines (34 loc) · 1.26 KB

README.md

File metadata and controls

52 lines (34 loc) · 1.26 KB

Pre-configured MySQL database image to work with Bonita

This image is based on the official MySQL image.

Additions

Configuration

See docker.cnf config file (located in /etc/mysql/conf.d/ directory within the image itself).

Databases

This image is configured with the two databases required by Bonita:

  • bonita (connection user bonita, password bpm)
  • business_data (connection user business_data, password bpm)

How to use the image

  • 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

Container shell access

docker exec -it bonita-mysql bash

Viewing MySQL logs

docker logs bonita-mysql

How to use this image with Bonita

Please refer to Bonitasoft official documentation for examples on how to run this image using a Bonita Docker image.