9 lines
187 B
Bash
Executable File
9 lines
187 B
Bash
Executable File
BUILD_PATH=$1
|
|
|
|
cd $BUILD_PATH/src || exit 1
|
|
|
|
docker-build -f ./InternshipSystem.Api/Dockerfile -t internship.api .
|
|
|
|
cd $BUILD_PATH/.docker || exit 1
|
|
|
|
docker-compose up -d --force-recreate |