Bladeren bron

Comment out Copying the sqlite database

master
Daniel Covington 2 weken geleden
bovenliggende
commit
64f0842677
1 gewijzigde bestanden met toevoegingen van 7 en 7 verwijderingen
  1. +7
    -7
      docker-publish.ps1

+ 7
- 7
docker-publish.ps1 Bestand weergeven

@@ -66,16 +66,16 @@ scp @scpArgs
if ($LASTEXITCODE -ne 0) { Write-Error "scp failed (exit $LASTEXITCODE)." }

# ---------------------------------------------------------------------------
# Step 3 — copy the SQLite database (third password prompt)
# Step 3 — copy the SQLite database (disabled — do not overwrite live data)
# ---------------------------------------------------------------------------
Write-Step "Copying database/app.sqlite to $SSH_USER@$SSH_HOST"
$scpDbArgs = Get-BaseArgs
$scpDbArgs += "database/app.sqlite", "${SSH_USER}@${SSH_HOST}:${REPO_PATH}/database/app.sqlite"
scp @scpDbArgs
if ($LASTEXITCODE -ne 0) { Write-Error "scp database failed (exit $LASTEXITCODE)." }
# Write-Step "Copying database/app.sqlite to $SSH_USER@$SSH_HOST"
# $scpDbArgs = Get-BaseArgs
# $scpDbArgs += "database/app.sqlite", "${SSH_USER}@${SSH_HOST}:${REPO_PATH}/database/app.sqlite"
# scp @scpDbArgs
# if ($LASTEXITCODE -ne 0) { Write-Error "scp database failed (exit $LASTEXITCODE)." }

# ---------------------------------------------------------------------------
# Step 4 — start the container (fourth password prompt)
# Step 4 — start the container (third password prompt)
# ---------------------------------------------------------------------------
Write-Step "Starting container on $SSH_USER@$SSH_HOST"



Laden…
Annuleren
Opslaan

Powered by TurnKey Linux.