5 lines
186 B
PowerShell
5 lines
186 B
PowerShell
$image = "docker.stwaddle.com/budget:latest"
|
|
docker build -t $image .
|
|
if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }
|
|
docker push $image
|
|
ssh stwaddle_com "./stwaddlecom/update-budget.sh" |