mirror of
https://github.com/mxpv/podsync.git
synced 2024-05-11 05:55:04 +00:00
10 lines
169 B
Bash
10 lines
169 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
OUTPUT_DIR=${1:-'bin/Publish'}
|
||
|
|
||
|
rm -rf $OUTPUT_DIR
|
||
|
|
||
|
dotnet restore
|
||
|
dotnet publish --configuration release --output $OUTPUT_DIR
|
||
|
|
||
|
docker-compose up -d --build
|