2024-12-28 18:47:30 +01:00
|
|
|
#!/bin/bash
|
|
|
|
SCRIPT_ABS_LOCATION=$(realpath "$(dirname "${0}")")
|
|
|
|
|
2024-12-29 15:08:09 +01:00
|
|
|
# shellcheck disable=SC1090
|
|
|
|
source "$SCRIPT_ABS_LOCATION/forgejo-backup.env"
|
|
|
|
|
|
|
|
# shellcheck disable=SC1090
|
|
|
|
source "$SCRIPT_ABS_LOCATION/../logger.sh"
|
2024-12-28 18:47:30 +01:00
|
|
|
|
|
|
|
# Container Names
|
|
|
|
APP_CONTAINER="forgejo"
|
2024-12-29 15:08:09 +01:00
|
|
|
BACKUP_CONTAINER="duplicati"
|
2024-12-28 18:47:30 +01:00
|
|
|
|
2024-12-29 15:08:09 +01:00
|
|
|
# shellcheck disable=SC2034
|
2024-12-28 18:47:30 +01:00
|
|
|
LOG_FILE="$SCRIPT_ABS_LOCATION/forgejo-backup.log"
|
|
|
|
|
2024-12-29 15:08:09 +01:00
|
|
|
SOURCE_DIR="/mnt/data/forgejo"
|
|
|
|
|
2024-12-28 18:47:30 +01:00
|
|
|
# Stop forgejo container
|
|
|
|
log "Stopping forgejo container..."
|
|
|
|
docker stop $APP_CONTAINER || { log "Error: Failed to stop forgejo."; exit 1; }
|
|
|
|
|
|
|
|
# Backup all files to target destination
|
|
|
|
log "Backing up forgejo files (including the SQLite database)..."
|
|
|
|
docker exec $BACKUP_CONTAINER \
|
|
|
|
duplicati-cli backup \
|
2024-12-29 15:08:09 +01:00
|
|
|
"ssh://$BACKUP_DESTINATION" \
|
|
|
|
"$SOURCE_DIR" \
|
2024-12-28 18:47:30 +01:00
|
|
|
--backup-name="forgejo backup" \
|
|
|
|
--keep-versions=7 \
|
2024-12-29 15:08:09 +01:00
|
|
|
--auth-username="$SFTP_USERNAME" \
|
|
|
|
--auth-password="$SFTP_PASSWORD" \
|
|
|
|
--passphrase="$BACKUP_ENCR_PASSPHRASE" \
|
2024-12-28 18:47:30 +01:00
|
|
|
--ssh-fingerprint="$SFTP_FINGERPRINT" \
|
|
|
|
--prefix="forgejo" || { log "Error: Failed to backup forgejo files and database."; exit 1; }
|
|
|
|
|
|
|
|
# Turn off Maintenance Mode
|
|
|
|
log "Starting forgejo container..."
|
2024-12-29 15:08:09 +01:00
|
|
|
docker start "$APP_CONTAINER" || { log "Error: Failed to start forgejo container."; exit 1; }
|
2024-12-28 18:47:30 +01:00
|
|
|
|
|
|
|
log "Forgejo backup completed successfully."
|