In this document, we will explain how to install Open Source BI product Helical Insight via docker method. Version 6.0 onwards we are also supporting docker method of deployment also which is also being provided.
Docker version ideally to be used in which we have tested: Docker v26 to 28
#Step 1: Helical Insight Docker Guide
This guide provides instructions on how to use Docker to start, restart, and stop the Helical Insight application using Docker Compose.
## Prerequisites
Ensure you have the following installed on your system:
## Setting Up Helical Insight with Docker Compose
We provide a docker-compose.yml file within the shipped ZIP package. Extract the ZIP file and navigate to the directory containing docker-compose.yml.
# Step 2: Update .env File
Open the hidden .env file located in the Docker directory where the docker-compose.yml is present.
Path:
Example : /opt/HIDockerImage6_518/.env
By default here in HOST_IP we will have an IP. Replace that IP with your current server IP or hostname (like shown below). Using ipconfig/all (for windows) or ifconfig/all (for linux) generally you can find your IP which will be put here.

## Step 3 : Starting the Helical Insight Container
To start the Helical Insight application:
sh docker-compose up -d
-d: Runs the containers in detached mode.
Once the container is running, access Helical Insight at:
https://ipaddress/hi-ee (this IP address is the same which we have put at Step 2)
## Stopping the Helical Insight Container
To stop the container:
sh docker-compose down
## Restarting the Helical Insight Container
To restart the application:
sh docker-compose down && docker-compose up -d
## Viewing Logs
To check the logs of the running container:
sh docker-compose logs -f
## Updating Helical Insight
To update to the latest version:
sh docker-compose down docker-compose pull docker-compose up -d
## Conclusion
This guide covers the essential Docker Compose commands for managing Helical Insight. For further customization and troubleshooting, refer to the Helical Insight documentation.
Reach out on support@helicalinsight.com