Pre-configured SQL Server database image to work with Bonita
6.8K
This image is based on the official Microsoft SQL Server image.
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.
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)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
docker exec -it bonita-sqlserver bash
docker logs bonita-sqlserver
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
Content type
Image
Digest
sha256:734548898…
Size
543.2 MB
Last updated
10 months ago
docker pull bonitasoft/bonita-sqlserver