Skip to content

Latest commit

 

History

History
61 lines (41 loc) · 1.66 KB

File metadata and controls

61 lines (41 loc) · 1.66 KB

Pre-configured Microsoft SQL Server database image to work with Bonita

This image is based on the official Microsoft SQL Server image.

Additions

Configuration

Default value for MSSQL_PID environment variable is Express, but you can change it by setting -e 'MSSQL_PID=Enterprise', for instance, when creating a container.

See more configuration on Microsoft Official base image.

Check the list of available tags on Microsoft site to update to the latest version.

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 this image

The simple way:

docker run -d --name bonita-sqlserver -p 1433:1433 bonitasoft/bonita-sqlserver:2022-CU13

The more-complete way:

docker run -d \
      --name bonita-sqlserver \
      -e 'MSSQL_SA_PASSWORD=Change-Me-123' \
      -e 'MSSQL_RPC_PORT=135' \
      -e 'MSSQL_DTC_TCP_PORT=51000' \
      -p 1433:1433 \
      -p 135:135 \
      -p 51000:51000 \
      bonitasoft/bonita-sqlserver:2022-CU13

Container shell access

docker exec -it bonita-sqlserver bash

Viewing SQL Server logs

docker logs bonita-sqlserver

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.