Files
managing-apps/scripts/build_and_run.sh
2025-08-16 04:55:33 +07:00

10 lines
353 B
Bash

#!/bin/bash
# Navigate to the src directory
cd ../src
# Build the managing.api image (now includes all workers as background services)
docker build -t managing.api -f Managing.Api/Dockerfile . --no-cache
# Start up the project using docker-compose
docker compose -f Managing.Docker/docker-compose.yml -f Managing.Docker/docker-compose.local.yml up -d