Sign inSign up

bonitasoft/bonita-sqlserver

By bonitasoft

Updated 10 months ago

Pre-configured SQL Server database image to work with Bonita

Image
0

6.8K

bonitasoft/bonita-sqlserver repository overview

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-CU4

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-CU4

Container shell access

docker exec -it bonita-sqlserver bash

Viewing SQL Server logs

docker logs bonita-sqlserver

How to test this image

See docker-compose.yml or docker-compose-community.yml for an example on how to test this image using a Bonita Docker image.

To execute it:

docker-compose up --build -d
# OR
docker-compose -f docker-compose-community.yml up --build -d

To shut it down and clear your environment:

docker-compose down -v --remove-orphans

Tag summary

Content type

Image

Digest

sha256:734548898

Size

543.2 MB

Last updated

10 months ago

docker pull bonitasoft/bonita-sqlserver