Bold BI deployment in docker can also be done offline by manually importing the Bold BI image into the local docker and deploying it into the local docker. Follow the steps given in this topic to know how to deploy Bold BI offline in docker.
First, you need to save the container image to a file, so you can copy it to the offline server.
Let us pull the image to your online machine first by running this command in your command line interface:
docker pull syncfusion/boldbi
When the download is complete, you can run this command to verify and find the container image name.
docker images
Now, you need to save the download image into a file using the docker save command:
docker save -o <output path and filename> <docker image name:tag>
Example: docker save -o C:\User\Boldbi.tar syncfusion/boldbi:latest
When the command is done, you should see a container file created at the path you specified.
Now, you need to load the file using docker load command.
docker load -i <path and filename>
Example: docker load -i C:\User\Boldbi.tar
Once the loading is complete, you can now run docker images to verify that it has been loaded.
docker images
Now the image is loaded on the offline machine.
Run the command to run Bold BI on your machine.
docker run --name boldbi -p 80:80 -d syncfusion/boldbi
After running the command, you can access the Bold BI App by entering http://localhost
in a browser.
Configure the Bold BI On-Premise application start-up to use the application. Please refer to the following link for more details on configuring the application start-up: