In the following section, we will deploy a single container Bold BI application using Docker Compose and manually configure the application startup.
Bold BI Deployment:
-
Download docker compose file using the following command.
curl -o docker-compose.yml "https://raw.githubusercontent.com/boldbi/boldbi-docker/main/deploy/single-container/docker-compose.yml"
-
Run docker compose up command.
docker-compose up -d
Note: The docker volumes
boldbi_data
persists data of Bold BI. Learn more about docker volumes -
Now, access the Bold BI application by entering the URL as
http://localhost:8085
orhttp://host-ip:8085
in the browser. When opening this URL in the browser, it will display the License page within a few seconds. The default port number mentioned in the compose file is 8085. If you are making changes to the port number, then you need to use that port number for accessing the Bold BI application.Note: Don't use localhost IP (
http://127.0.0.1
) withport
to access the application.
Application Startup
Configure the Bold BI On-Premise application startup to use the application. Please refer the following link for more details on configuring the application startup.
https://help.boldbi.com/embedded-bi/application-startup
Shutdown and Cleanup
The command docker-compose down
removes the containers and default network, but preserves the volumes of Bold BI and PostgreSQL.
The command docker-compose down --volumes
removes the containers, default network, and all the volumes.