DecisionRules Server
Production Container
Download the latest DecisionRules server container that provides all the backend functionalities with maintenance and regular updates. The server requires Redis Cache and MongoDB.
Container types
Since version 1.15.0 the container runs with a non-root user
How to start the Decision Rules server
The server can only be started with the set of env. variables that are necessary for operation.
Method 1: Pulling and running the Docker container in the terminal
The server can be started using a simple docker run
command. If you don't have the container downloaded yet, you can pull it using the docker pull command.
Some env. variables can be omitted. For full list of env. variables see here.
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.
Docker compose files are started with docker compose up
command.
What not to forget
The server must be accessible from your browser for the client app to work.
You can easily check your connectivity SERVER_URL/health-check - you should get HTTP 200 OK Response
Last updated