Category / Section
How to Fix Database Error: Resource Temporarily Unavailable in Bold Reports on Docker
Published:
Updated:
If you encounter a Database Error: Resource temporarily unavailable issue while installing Bold Reports 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: - boldreports
Example of the modified section:
-
Use the following command to start all the services:
docker-compose up -d
After following these steps, the issue should be resolved, allowing you to continue with the installation and configuration of Bold Reports on Docker.