DecisionRules Business Intelligence

Production Container

Download the latest DecisionRules business intelligence container that provides front-end applications with maintenance and regular updates.

Container types

Since version 1.15.0 the container runs with a non-root user

How to start the DecisionRules Business Intelligence

The business intelligence app can only be started with the set env. variables that are necessary for operation.

Method 1: Pulling and running the Docker container in the terminal

The business intelligence app can be started using the simple docker run command. If you don't have the container downloaded yet, you can pull it using the docker pull command.

//pull container
docker pull decisionrules/business-intelligence
//run container alone
docker run -d -p 82:82 -e BI_MONGO_DB_URI=YOUR_MONGO_URI decisionrules/business-intelligence

Method 2: Creating your own docker-compose file

If you don't want to use too much terminal you can create your own docker-compose file. The file type is YAML.

version: "1.0"

services:
    server:
        image: decisionrules/business-intelligence
        environment:
            - "BI_MONGO_DB_URI=YOUR_MONGO_URI"
        ports:
            - "8082:8082"

Docker compose files are started with docker compose up command.

Make Business Intelligence Work with Other Containers

  • You need to set an environment variable called "BI_API_URL=YOUR_URL" inside the Client Container

  • If you use a different database cluster for your Business Intelligence App, then you need to set an environment variable called "BI_MONGO_DB_URI=YOUR_URI" inside the Server Container

Business Intelligence App works with Client and Server version 1.10.0 and newer

Last updated