Articles in this section
Category / Section

How to deploy Bold BI using Docker and resolve port issues

Published:

This article will guide you through the process of deploying BoldBI using a Docker image and resolving any port issues that may arise during deployment.

Prerequisites

  • Docker installed on your machine
  • BoldBI Docker image (syncfusion/boldbi)

Deployment Steps

  1. Deploy BoldBI using the Docker image by running the following command:

    docker run --name boldbi -p 80:80 -d syncfusion/boldbi
    

    This command will deploy BoldBI and map the container’s port 80 to your host machine’s port 80.

  2. If you are unable to access the BoldBI application by entering http://localhost or http://host-ip in a browser, you may need to stop the default site or change the port from Bindings in the IIS manager.

  3. Restart the container using the following command:

    docker restart <container ID or container name>
    

    This command will restart the container and apply any changes made to the port bindings.

  4. Access the BoldBI application using http://localhost in your browser.

  5. If the site is still not reachable in the browser, remove the old container and redeploy the application using the same command.

    Docker containers remove command:

    docker rm -f <container ID or container name>
    

    Docker redeploy command:

    docker run --name boldbi -p 80:80 -d syncfusion/boldbi
    

By following these steps, you should be able to successfully deploy BoldBI using Docker and resolve any port issues that may arise during deployment.

Related Links

Was this article useful?
Like
Dislike
Help us improve this page
Please provide feedback or comments
SG
Written by Sivabalan Ganesan
Updated:
Comments (0)
Please  to leave a comment
Access denied
Access denied