undo docker pull and replace with build when deploying

This commit is contained in:
mroxso
2024-08-25 23:40:26 +02:00
parent 36413328ca
commit a3cc9bb8be
2 changed files with 2 additions and 2 deletions

View File

@@ -85,5 +85,5 @@ jobs:
ssh -o StrictHostKeyChecking=no ${{ env.MAIN_HOST_USERNAME }}@${{ env.MAIN_HOST }} '
cd lumina &&
git pull origin main &&
docker compose up -d --pull
docker compose up -d --build
'

View File

@@ -84,5 +84,5 @@ jobs:
ssh -o StrictHostKeyChecking=no ${{ env.BETA_HOST_USERNAME }}@${{ env.BETA_HOST }} '
cd lumina &&
git pull origin beta &&
docker compose -f compose-beta.yaml up -d --pull
docker compose -f compose-beta.yaml up -d --build
'