10 lines
350 B
Bash
Executable File
10 lines
350 B
Bash
Executable File
#!/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 |