Fixed docker start up issue

This commit is contained in:
Azeez Muibi
2025-03-22 17:11:46 +01:00
parent 9deb402322
commit 2baf9a22c1
47 changed files with 194 additions and 86 deletions
+11 -5
View File
@@ -25,14 +25,20 @@ This project implements the Simbrella FirstAdvance API as defined in the OpenAPI
The easiest way to run the application is using Docker Compose:
```bash
# Build and start the containers
# Stop any running containers
docker-compose down
# Rebuild the image
docker-compose build
# Start the container
docker-compose up -d
# View logs
docker-compose logs -f
# Check if the container is running
docker ps
# Stop the containers
docker-compose down
# Check the logs for any errors
docker-compose logs
```
## Manual Setup