14 lines
453 B
PowerShell
14 lines
453 B
PowerShell
# This script is automatically generated - do not edit manually
|
|
# It runs the Docker check script followed by the backup script
|
|
|
|
# Get the script directory
|
|
$scriptDir = Split-Path -Parent $MyInvocation.MyCommand.Path
|
|
|
|
# Run the Docker check script first
|
|
$dockerCheckScript = Join-Path $scriptDir "ensure-docker-running.ps1"
|
|
& $dockerCheckScript
|
|
|
|
# Then run the backup script
|
|
$backupScript = Join-Path $scriptDir "backup-gitea-db.ps1"
|
|
& $backupScript
|