How to deploy Bold BI using Docker and resolve port issues
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
-
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.
-
If you are unable to access the BoldBI application by entering
http://localhost
orhttp://host-ip
in a browser, you may need to stop the default site or change the port from Bindings in the IIS manager. -
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.
-
Access the BoldBI application using
http://localhost
in your browser. -
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.