DecisionRules Business Intelligence
Container types
How to start the DecisionRules Business Intelligence
Method 1: Pulling and running the Docker container in the terminal
//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-intelligenceMethod 2: Creating your own docker-compose file
version: "1.0"
services:
server:
image: decisionrules/business-intelligence
environment:
- "BI_MONGO_DB_URI=YOUR_MONGO_URI"
ports:
- "8082:8082"Make Business Intelligence Work with Other Containers
Last updated
Was this helpful?

