Category / Section
How to Fix Database Error: Resource Temporarily Unavailable in Bold BI on Docker
Published:
If you encounter a “Database Error: Resource temporarily unavailable” issue while installing BoldBI on Docker and configuring the database, you can resolve it by adding a network configuration in the docker-compose yaml file.
Steps to Add Network Configuration
Navigate to the docker-compose yaml file path.
Use the following command to down the container:
docker-compose down
- Add the following lines to the end of the database configuration section in the docker-compose file:
networks:
- boldbi
Example of the modified section:
- Use the following command to start all services:
docker-compose up -d
After following these steps, the issue should be resolved, and you can continue installing and configuring Bold BI on Docker.