10 lines
353 B
Bash
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 |