commit 68377fc083103a2f335ee2ea20558391e383a28a Author: Christoph Califice Date: Wed Aug 13 22:51:13 2025 -0300 initial commit diff --git a/backup.log b/backup.log new file mode 100644 index 0000000..7b7699d --- /dev/null +++ b/backup.log @@ -0,0 +1,3 @@ +20240308_030001_services_backup.tar.gz - backup complete +20240309_030001_services_backup.tar.gz - backup complete +20240310_030001_services_backup.tar.gz - backup complete diff --git a/backup/backup_arr.sh b/backup/backup_arr.sh new file mode 100644 index 0000000..993571d --- /dev/null +++ b/backup/backup_arr.sh @@ -0,0 +1,25 @@ +#!/bin/bash + +# Set the source and destination paths +source_path=~/ +backup_path=/mnt/server_backup/arr/ +timestamp=$(date "+%Y%m%d_%H%M%S") +log_path=~/scripts/ +# Stop containers +docker stop $(docker ps -q) + +# Create a tar archive excluding cache and hidden files +file_name="${timestamp}_arr_backup.tar.gz" +tar -czf $source_path$file_name --exclude=*/cache --exclude=*/blobs --exclude=*/generated --exclude=*/MediaCover --exclude=*/logs --exclude=*/Cache --exclude=*/Logs --exclude=*/Metadata --exclude=*/Crash\ Reports --exclude=*/Media --exclude=~/.* $source_path + + +# Use rsync to copy the created archive to the destination +rsync -av --progress "${source_path}${file_name}" "$backup_path" + +# Optionally, remove the local backup file after copying +rm $source_path$file_name + +# Restart containers +docker start $(docker ps -a -q) + +echo "${file_name} - backup complete" >> ${log_path}backup.log \ No newline at end of file diff --git a/backup/backup_services.sh b/backup/backup_services.sh new file mode 100644 index 0000000..22b7e96 --- /dev/null +++ b/backup/backup_services.sh @@ -0,0 +1,31 @@ +#!/bin/bash + +# Set the source and destination paths +source_path=/home/ccalifice/ +backup_path=/mnt/server_backup/services/ +timestamp=$(date "+%Y%m%d_%H%M%S") + +# Stop containers +echo "stopping containers" >> ${source_path}backup.log +docker stop $(docker ps -q) + +# Create a tar archive excluding cache and hidden files +file_name="${timestamp}_services_backup.tar.gz" + +echo "Creating archive $source_path$file_name" >> ${source_path}backup.log + + +tar -czf $source_path$file_name --exclude=*/cache --exclude=*/logs --exclude=*/Cache --exclude=*/Logs --exclude=*/photoprism/storage --exclude=*/model-cache --exclude=*/immich-app/library $source_path + + +# Use rsync to copy the created archive to the destination +rsync -av --progress "${source_path}${file_name}" "$backup_path" + +# Optionally, remove the local backup file after copying +rm $source_path$file_name + +# Restart containers +echo "starting containers" >> ${source_path}backup.log +docker start $(docker ps -a -q) + +echo "${file_name} - backup complete" >> ${source_path}backup.log \ No newline at end of file diff --git a/backup/exclude_file.txt b/backup/exclude_file.txt new file mode 100644 index 0000000..7baabe6 --- /dev/null +++ b/backup/exclude_file.txt @@ -0,0 +1,2 @@ +#exclude mounted partitions +/mnt \ No newline at end of file diff --git a/backup/include_file.txt b/backup/include_file.txt new file mode 100644 index 0000000..3a2a8c6 --- /dev/null +++ b/backup/include_file.txt @@ -0,0 +1,4 @@ +#include the following paths in backup +/home +/etc +/var/lib/docker/volumes \ No newline at end of file diff --git a/backup/restic_backup.sh b/backup/restic_backup.sh new file mode 100644 index 0000000..757d012 --- /dev/null +++ b/backup/restic_backup.sh @@ -0,0 +1,76 @@ +#!/bin/bash + +user=$1 + +# Set the source and destination paths +include_file=/home/$user/scripts/backup/include_file.txt +exclude_file=/home/$user/scripts/backup/exclude_file.txt +respository=/mnt/restic/ +timestamp=$(date "+%Y-%m-%d_%H:%M:%S") +log_file=/home/$user/scripts/backup/restic_log.log +restic_repo="/mnt/restic" + +echo "${timestamp} Starting backup" >> $log_file +echo "User: ${user}" >> $log_file + +export RESTIC_PASSWORD=asdf1234 + +# Stop containers +echo "${timestamp} Stopping containers" >> $log_file +#docker stop $(docker ps -q) >> $log_file + +for dir in /home/$user/*; do + # Remove trailing slash + dir=${dir%/} + + # Check if it is a directory and does NOT end with "DISABLED" + if [[ -d "$dir" && ! "$dir" =~ DISABLED$ ]]; then + if [ -f "$dir/docker-compose.yml" ]; then + echo "Bringing down Docker Compose in $dir" >> $log_file + (cd "$dir" && docker compose down) + else + echo "No docker-compose.yml found in $dir, skipping." >> $log_file + fi + else + echo "Project is disabled. Skipping $dir" >> $log_file + fi +done + +restic_command="restic -r ${restic_repo} backup --files-from ${include_file} --exclude-file=${exclude_file}" +echo "${timestamp} Starting restic backup. Command: ${restic_command}" >> $log_file + +# Run restic backup +$restic_command >> $log_file + + +# Restart containers +echo "Restarting containers" >> $log_file +#docker start $(docker ps -a -q) >> $log_file + +for dir in /home/$user/*; do + # Remove trailing slash + dir=${dir%/} + + # Check if it is a directory and does NOT end with "DISABLED" + if [[ -d "$dir" && ! "$dir" =~ DISABLED$ ]]; then + if [ -f "$dir/docker-compose.yml" ]; then + echo "Bringing up Docker Compose in $dir" >> $log_file + (cd "$dir" && docker compose up -d) + else + echo "No docker-compose.yml found in $dir, skipping." >> $log_file + fi + else + echo "Project is disabled. Skipping $dir" >> $log_file + fi +done + +echo "${timestamp} Backup complete." >> $log_file + + +# Remove old backups with policy + +forget_command="restic -r ${restic_repo} forget --keep-daily 2 --keep-weekly 1 --keep-monthly 1 --keep-yearly 1 --prune" +echo "${timestamp} Removing old backups. Command: ${forget_command}" >> $log_file +$forget_command >> $log_file + +echo "${timestamp} Backup script done" >> $log_file diff --git a/backup/restic_log.log b/backup/restic_log.log new file mode 100644 index 0000000..c1a4a98 --- /dev/null +++ b/backup/restic_log.log @@ -0,0 +1,35051 @@ +2025-04-27_21:38:41 Starting backup +User: ccalifice +2025-04-27_21:38:41 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Bringing down Docker Compose in /home/ccalifice/onedev +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing down Docker Compose in /home/ccalifice/sg-financials +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-04-27_21:38:41 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 79818dc8 + +Files: 60520 new, 2618 changed, 106174 unmodified +Dirs: 7451 new, 29400 changed, 0 unmodified +Added to the repository: 2.743 GiB (1.259 GiB stored) + +processed 169312 files, 121.567 GiB in 2:34 +snapshot 206804e2 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Bringing up Docker Compose in /home/ccalifice/onedev +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing up Docker Compose in /home/ccalifice/sg-financials +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-04-27_21:38:41 Backup complete. +2025-04-27_21:38:41 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 6 snapshots: +ID Time Host Tags Reasons Paths +--------------------------------------------------------------------------------------------------- +28658fb4 2024-12-31 04:00:02 morganna yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +059e803e 2025-03-31 04:00:01 morganna monthly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +35546899 2025-04-20 04:00:01 morganna weekly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------- +6 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths +--------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +1fd9f5cd 2025-03-31 05:14:58 services monthly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +1ee6a0a6 2025-04-06 06:32:11 services weekly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +79818dc8 2025-04-09 03:48:19 services daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------- +6 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +63405821 2025-03-31 03:00:01 arr-stack monthly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c706a131 2025-04-20 03:00:01 arr-stack weekly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 1 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack daily snapshot /etc 8.803 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------- +1 snapshots + +keep 1 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services daily snapshot /etc 121.567 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------- +1 snapshots + +keep 1 snapshots: +ID Time Host Tags Reasons Paths +------------------------------------------------------------------------------------------------ +8193e470 2025-04-27 21:34:29 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------ +1 snapshots + +2025-04-27_21:38:41 Backup script done +2025-04-27_23:37:40 Starting backup +User: ccalifice +2025-04-27_23:37:40 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Bringing down Docker Compose in /home/ccalifice/onedev +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-04-27_23:37:40 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 206804e2 + +Files: 2229 new, 577 changed, 165873 unmodified +Dirs: 151 new, 202 changed, 36551 unmodified +Added to the repository: 424.599 MiB (177.652 MiB stored) + +processed 168679 files, 121.567 GiB in 0:19 +snapshot 11f24e76 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Bringing up Docker Compose in /home/ccalifice/onedev +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-04-27_23:37:40 Backup complete. +2025-04-27_23:37:40 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +remove 11 snapshots: +ID Time Host Tags Paths Size +--------------------------------------------------------------------------------------------- +4c8cf21f 2024-12-31 03:13:31 arr-stack rewrite /etc 6.165 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +07f047e1 2024-12-31 03:13:31 arr-stack rewrite /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +dbbee0c1 2025-03-31 03:00:01 arr-stack rewrite /etc 6.823 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +0e647e1a 2025-03-31 03:00:01 arr-stack rewrite /etc 6.823 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +63405821 2025-03-31 03:00:01 arr-stack /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c706a131 2025-04-20 03:00:01 arr-stack /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +cf5640e6 2025-04-20 03:00:01 arr-stack rewrite /etc 30.453 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +428fbd37 2025-04-20 03:00:01 arr-stack rewrite /etc 30.453 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +492a0d17 2025-04-25 03:00:01 arr-stack rewrite /etc 10.254 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c749e0e5 2025-04-26 03:00:01 arr-stack rewrite /etc 8.765 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +1bfd663f 2025-04-27 03:00:01 arr-stack rewrite /etc 8.688 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes +--------------------------------------------------------------------------------------------- +11 snapshots + +keep 1 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack daily snapshot /etc 8.803 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------- +1 snapshots + +keep 2 snapshots: +ID Time Host Tags Reasons Paths Size +-------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest daily snapshot /etc 121.567 GiB + oldest weekly snapshot /home + oldest monthly snapshot /var/lib/docker/volumes + oldest yearly snapshot + +11f24e76 2025-04-27 23:38:59 services daily snapshot /etc 121.567 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +-------------------------------------------------------------------------------------------------------------------- +2 snapshots + +keep 2 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------ +8193e470 2025-04-27 21:34:29 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot + +d3523495 2025-04-27 21:34:29 morganna rewrite oldest daily snapshot /etc 1.088 GiB + oldest weekly snapshot /home + oldest monthly snapshot /var/lib/docker/volumes + oldest yearly snapshot +------------------------------------------------------------------------------------------------------------------ +2 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +----------------------------------------------------------------------------------------- +b3ceb4c5 2025-04-27 21:34:29 morganna rewrite /etc 1.088 GiB + /home + /var/lib/docker/volumes +----------------------------------------------------------------------------------------- +1 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +remove 17 snapshots: +ID Time Host Tags Paths Size +---------------------------------------------------------------------------------------------- +28658fb4 2024-12-31 04:00:02 morganna /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +9b555146 2024-12-31 04:00:02 morganna rewrite /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +55f83503 2025-03-31 04:00:01 morganna rewrite /etc 1.100 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +f17fa891 2025-03-31 04:00:01 morganna rewrite /etc 1.100 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +059e803e 2025-03-31 04:00:01 morganna /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +35546899 2025-04-20 04:00:01 morganna /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +490d15bd 2025-04-20 04:00:01 morganna rewrite /etc 1.096 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +cf9531de 2025-04-20 04:00:01 morganna rewrite /etc 1.096 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +bddd7539 2025-04-25 04:00:01 morganna rewrite /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9aa3e8e 2025-04-25 04:00:01 morganna rewrite /etc 1.096 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5abdd5d2 2025-04-25 04:00:01 morganna rewrite /etc 1.096 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2a9f0dae 2025-04-26 04:00:01 morganna rewrite /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fd38bb99 2025-04-26 04:00:01 morganna rewrite /etc 1.096 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9c3ea79 2025-04-26 04:00:01 morganna rewrite /etc 1.096 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +ef8070f9 2025-04-27 04:00:01 morganna rewrite /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +9582c2c6 2025-04-27 04:00:01 morganna rewrite /etc 1.096 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +ea660c7b 2025-04-27 04:00:01 morganna rewrite /etc 1.096 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes +---------------------------------------------------------------------------------------------- +17 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +remove 17 snapshots: +ID Time Host Tags Paths Size +---------------------------------------------------------------------------------------------- +590cd2dc 2024-12-31 03:30:12 services rewrite /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2ad1f9ea 2024-12-31 03:30:12 services rewrite /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +1fd9f5cd 2025-03-31 05:14:58 services /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +4bcba17f 2025-03-31 05:14:58 services rewrite /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a07f4d5f 2025-03-31 05:14:58 services rewrite /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +1ee6a0a6 2025-04-06 06:32:11 services /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +f3aa92bf 2025-04-06 06:32:11 services rewrite /etc 121.536 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6e9b8330 2025-04-06 06:32:11 services rewrite /etc 121.536 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +4595e405 2025-04-07 03:48:23 services rewrite /etc 121.607 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6ff31ed0 2025-04-07 03:48:23 services rewrite /etc 121.606 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +dbc4f479 2025-04-07 03:48:23 services rewrite /etc 121.606 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +1c4af53c 2025-04-08 03:56:40 services rewrite /etc 121.734 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +0fbad8bc 2025-04-08 03:56:40 services rewrite /etc 121.733 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2adc77d9 2025-04-08 03:56:40 services rewrite /etc 121.733 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +79818dc8 2025-04-09 03:48:19 services /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +44076a58 2025-04-09 03:48:19 services rewrite /etc 121.901 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +45e7da27 2025-04-09 03:48:19 services rewrite /etc 121.901 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes +---------------------------------------------------------------------------------------------- +17 snapshots + +[0:00] 100.00% 46 / 46 files deleted +46 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 26 snapshots +[0:20] 100.00% 26 / 26 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:01] 100.00% 10309 / 10309 packs processed + +to repack: 77 blobs / 43.065 KiB +this removes: 45 blobs / 13.126 KiB +to delete: 0 blobs / 0 B +total prune: 45 blobs / 13.126 KiB +remaining: 755657 blobs / 167.420 GiB +unused size after prune: 8.279 GiB (4.95% of remaining size) + +repacking packs +[0:00] 100.00% 1 / 1 packs repacked +rebuilding index +[0:02] 100.00% 12 / 12 indexes processed +[0:00] 100.00% 4 / 4 old indexes deleted +removing 1 old packs +[0:00] 100.00% 1 / 1 files deleted +done +2025-04-27_23:37:40 Backup script done +2025-04-28_03:30:01 Starting backup +User: ccalifice +2025-04-28_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-04-28_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 11f24e76 + +Files: 2104 new, 566 changed, 165962 unmodified +Dirs: 1013 new, 232 changed, 35729 unmodified +Added to the repository: 481.399 MiB (210.973 MiB stored) + +processed 168632 files, 121.700 GiB in 0:34 +snapshot cf5e5867 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-04-28_03:30:01 Backup complete. +2025-04-28_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 2 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------ +d5868a18 2025-04-27 21:19:29 arr-stack daily snapshot /etc 8.803 GiB + weekly snapshot /home + oldest monthly snapshot /var/lib/docker/volumes + oldest yearly snapshot + +115a383e 2025-04-28 03:00:42 arr-stack daily snapshot /etc 8.731 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------ +2 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 3 snapshots: +ID Time Host Tags Reasons Paths Size +-------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest daily snapshot /etc 121.567 GiB + oldest monthly snapshot /home + oldest yearly snapshot /var/lib/docker/volumes + +11f24e76 2025-04-27 23:38:59 services daily snapshot /etc 121.567 GiB + weekly snapshot /home + /var/lib/docker/volumes + +cf5e5867 2025-04-28 04:17:01 services daily snapshot /etc 121.700 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +-------------------------------------------------------------------------------------------------------------------- +3 snapshots + +keep 3 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------ +8193e470 2025-04-27 21:34:29 morganna daily snapshot /etc + weekly snapshot /home + /var/lib/docker/volumes + +d3523495 2025-04-27 21:34:29 morganna rewrite oldest daily snapshot /etc 1.088 GiB + oldest monthly snapshot /home + oldest yearly snapshot /var/lib/docker/volumes + +b122a665 2025-04-28 04:00:05 morganna daily snapshot /etc 1.089 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------ +3 snapshots + +2025-04-28_03:30:01 Backup script done +2025-04-29_03:30:01 Starting backup +User: ccalifice +2025-04-29_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-04-29_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot cf5e5867 + +Files: 1717 new, 628 changed, 166559 unmodified +Dirs: 707 new, 786 changed, 36135 unmodified +Added to the repository: 1.402 GiB (1.061 GiB stored) + +processed 168904 files, 122.673 GiB in 0:39 +snapshot 7e606773 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-04-29_03:30:01 Backup complete. +2025-04-29_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 3 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------ +d5868a18 2025-04-27 21:19:29 arr-stack daily snapshot /etc 8.803 GiB + weekly snapshot /home + oldest monthly snapshot /var/lib/docker/volumes + oldest yearly snapshot + +115a383e 2025-04-28 03:00:42 arr-stack daily snapshot /etc 8.731 GiB + /home + /var/lib/docker/volumes + +c026744c 2025-04-29 03:00:35 arr-stack daily snapshot /etc 8.727 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------ +3 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 4 snapshots: +ID Time Host Tags Reasons Paths Size +-------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest monthly snapshot /etc 121.567 GiB + oldest yearly snapshot /home + /var/lib/docker/volumes + +11f24e76 2025-04-27 23:38:59 services daily snapshot /etc 121.567 GiB + weekly snapshot /home + /var/lib/docker/volumes + +cf5e5867 2025-04-28 04:17:01 services daily snapshot /etc 121.700 GiB + /home + /var/lib/docker/volumes + +7e606773 2025-04-29 04:03:29 services daily snapshot /etc 122.673 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +-------------------------------------------------------------------------------------------------------------------- +4 snapshots + +keep 4 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------ +8193e470 2025-04-27 21:34:29 morganna daily snapshot /etc + weekly snapshot /home + /var/lib/docker/volumes + +d3523495 2025-04-27 21:34:29 morganna rewrite oldest monthly snapshot /etc 1.088 GiB + oldest yearly snapshot /home + /var/lib/docker/volumes + +b122a665 2025-04-28 04:00:05 morganna daily snapshot /etc 1.089 GiB + /home + /var/lib/docker/volumes + +e129f7af 2025-04-29 04:00:06 morganna daily snapshot /etc 1.093 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------ +4 snapshots + +2025-04-29_03:30:01 Backup script done +2025-04-30_03:30:01 Starting backup +User: ccalifice +2025-04-30_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-04-30_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 7e606773 + +Files: 682 new, 603 changed, 166599 unmodified +Dirs: 42 new, 212 changed, 37402 unmodified +Added to the repository: 546.018 MiB (216.096 MiB stored) + +processed 167884 files, 122.770 GiB in 0:21 +snapshot b303861b saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-04-30_03:30:01 Backup complete. +2025-04-30_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 4 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------ +d5868a18 2025-04-27 21:19:29 arr-stack weekly snapshot /etc 8.803 GiB + oldest monthly snapshot /home + oldest yearly snapshot /var/lib/docker/volumes + +115a383e 2025-04-28 03:00:42 arr-stack daily snapshot /etc 8.731 GiB + /home + /var/lib/docker/volumes + +c026744c 2025-04-29 03:00:35 arr-stack daily snapshot /etc 8.727 GiB + /home + /var/lib/docker/volumes + +f5564faa 2025-04-30 03:00:35 arr-stack daily snapshot /etc 8.732 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------ +4 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +-------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest monthly snapshot /etc 121.567 GiB + oldest yearly snapshot /home + /var/lib/docker/volumes + +11f24e76 2025-04-27 23:38:59 services weekly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +cf5e5867 2025-04-28 04:17:01 services daily snapshot /etc 121.700 GiB + /home + /var/lib/docker/volumes + +7e606773 2025-04-29 04:03:29 services daily snapshot /etc 122.673 GiB + /home + /var/lib/docker/volumes + +b303861b 2025-04-30 04:09:47 services daily snapshot /etc 122.770 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +-------------------------------------------------------------------------------------------------------------------- +5 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------ +8193e470 2025-04-27 21:34:29 morganna weekly snapshot /etc + /home + /var/lib/docker/volumes + +d3523495 2025-04-27 21:34:29 morganna rewrite oldest monthly snapshot /etc 1.088 GiB + oldest yearly snapshot /home + /var/lib/docker/volumes + +b122a665 2025-04-28 04:00:05 morganna daily snapshot /etc 1.089 GiB + /home + /var/lib/docker/volumes + +e129f7af 2025-04-29 04:00:06 morganna daily snapshot /etc 1.093 GiB + /home + /var/lib/docker/volumes + +86f10b59 2025-04-30 04:00:06 morganna daily snapshot /etc 1.094 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------ +5 snapshots + +2025-04-30_03:30:01 Backup script done +2025-05-01_03:30:01 Starting backup +User: ccalifice +2025-05-01_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/maybe-finance +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-01_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot b303861b + +Files: 2066 new, 580 changed, 165470 unmodified +Dirs: 54 new, 175 changed, 37441 unmodified +Added to the repository: 522.208 MiB (173.287 MiB stored) + +processed 168116 files, 122.894 GiB in 0:25 +snapshot c6bc9079 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/maybe-finance +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-01_03:30:01 Backup complete. +2025-05-01_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +11f24e76 2025-04-27 23:38:59 services weekly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +7e606773 2025-04-29 04:03:29 services daily snapshot /etc 122.673 GiB + /home + /var/lib/docker/volumes + +b303861b 2025-04-30 04:09:47 services daily snapshot /etc 122.770 GiB + monthly snapshot /home + /var/lib/docker/volumes + +c6bc9079 2025-05-01 04:28:24 services daily snapshot /etc 122.894 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +5 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +cf5e5867 2025-04-28 04:17:01 services /etc 121.700 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +8193e470 2025-04-27 21:34:29 morganna weekly snapshot /etc + /home + /var/lib/docker/volumes + +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +e129f7af 2025-04-29 04:00:06 morganna daily snapshot /etc 1.093 GiB + /home + /var/lib/docker/volumes + +86f10b59 2025-04-30 04:00:06 morganna daily snapshot /etc 1.094 GiB + monthly snapshot /home + /var/lib/docker/volumes + +861121f1 2025-05-01 04:00:05 morganna daily snapshot /etc 1.095 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +5 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 4 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack weekly snapshot /etc 8.803 GiB + oldest yearly snapshot /home + /var/lib/docker/volumes + +c026744c 2025-04-29 03:00:35 arr-stack daily snapshot /etc 8.727 GiB + /home + /var/lib/docker/volumes + +f5564faa 2025-04-30 03:00:35 arr-stack daily snapshot /etc 8.732 GiB + monthly snapshot /home + /var/lib/docker/volumes + +3281b16e 2025-05-01 03:00:35 arr-stack daily snapshot /etc 8.683 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +4 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 35 snapshots +[0:33] 100.00% 35 / 35 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:01] 100.00% 10445 / 10445 packs processed + +to repack: 848 blobs / 6.083 MiB +this removes: 210 blobs / 4.608 MiB +to delete: 0 blobs / 0 B +total prune: 210 blobs / 4.608 MiB +remaining: 767594 blobs / 169.346 GiB +unused size after prune: 8.433 GiB (4.98% of remaining size) + +repacking packs +[0:01] 100.00% 11 / 11 packs repacked +rebuilding index +[0:02] 100.00% 12 / 12 indexes processed +[0:00] 100.00% 4 / 4 old indexes deleted +removing 11 old packs +[0:00] 100.00% 11 / 11 files deleted +done +2025-05-01_03:30:01 Backup script done +2025-05-01_18:02:25 Starting backup +User: ccalifice +2025-05-01_18:02:25 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/maybe-finance +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-01_18:02:25 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/maybe-finance +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-01_18:02:25 Backup complete. +2025-05-01_18:02:25 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +2025-05-01_18:02:25 Backup script done +2025-05-01_18:08:09 Starting backup +User: ccalifice +2025-05-01_18:08:09 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/maybe-finance +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-01_18:08:09 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot c6bc9079 +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/maybe-finance +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-01_18:08:09 Backup complete. +2025-05-01_18:08:09 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +2025-05-01_18:08:09 Backup script done +2025-05-01_18:41:30 Starting backup +User: ccalifice +2025-05-01_18:41:30 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/maybe-finance +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-01_18:41:30 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot c6bc9079 + +Files: 398 new, 551 changed, 164787 unmodified +Dirs: 47 new, 214 changed, 37449 unmodified +Added to the repository: 366.738 MiB (127.781 MiB stored) + +processed 165736 files, 122.914 GiB in 0:22 +snapshot 505e9c46 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/maybe-finance +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-01_18:41:30 Backup complete. +2025-05-01_18:41:30 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +11f24e76 2025-04-27 23:38:59 services weekly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +7e606773 2025-04-29 04:03:29 services daily snapshot /etc 122.673 GiB + /home + /var/lib/docker/volumes + +b303861b 2025-04-30 04:09:47 services daily snapshot /etc 122.770 GiB + monthly snapshot /home + /var/lib/docker/volumes + +505e9c46 2025-05-01 18:41:31 services daily snapshot /etc 122.914 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +5 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +c6bc9079 2025-05-01 04:28:24 services /etc 122.894 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +8193e470 2025-04-27 21:34:29 morganna weekly snapshot /etc + /home + /var/lib/docker/volumes + +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +e129f7af 2025-04-29 04:00:06 morganna daily snapshot /etc 1.093 GiB + /home + /var/lib/docker/volumes + +86f10b59 2025-04-30 04:00:06 morganna daily snapshot /etc 1.094 GiB + monthly snapshot /home + /var/lib/docker/volumes + +861121f1 2025-05-01 04:00:05 morganna daily snapshot /etc 1.095 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +5 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 4 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack weekly snapshot /etc 8.803 GiB + oldest yearly snapshot /home + /var/lib/docker/volumes + +c026744c 2025-04-29 03:00:35 arr-stack daily snapshot /etc 8.727 GiB + /home + /var/lib/docker/volumes + +f5564faa 2025-04-30 03:00:35 arr-stack daily snapshot /etc 8.732 GiB + monthly snapshot /home + /var/lib/docker/volumes + +2aac16ef 2025-05-01 18:06:52 arr-stack daily snapshot /etc 8.669 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +4 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 35 snapshots +[0:20] 100.00% 35 / 35 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:01] 100.00% 10447 / 10447 packs processed + +to repack: 1275 blobs / 52.701 MiB +this removes: 1210 blobs / 52.512 MiB +to delete: 0 blobs / 0 B +total prune: 1210 blobs / 52.512 MiB +remaining: 767875 blobs / 169.424 GiB +unused size after prune: 8.469 GiB (5.00% of remaining size) + +repacking packs +[0:00] 100.00% 4 / 4 packs repacked +rebuilding index +[0:03] 100.00% 12 / 12 indexes processed +[0:00] 100.00% 6 / 6 old indexes deleted +removing 4 old packs +[0:00] 100.00% 4 / 4 files deleted +done +2025-05-01_18:41:30 Backup script done +2025-05-02_03:30:01 Starting backup +User: ccalifice +2025-05-02_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/maybe-finance +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-02_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 505e9c46 + +Files: 75 new, 653 changed, 164979 unmodified +Dirs: 25 new, 173 changed, 37526 unmodified +Added to the repository: 382.187 MiB (122.649 MiB stored) + +processed 165707 files, 122.903 GiB in 0:18 +snapshot aeac8a9a saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/maybe-finance +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-02_03:30:01 Backup complete. +2025-05-02_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 4 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack weekly snapshot /etc 8.803 GiB + oldest yearly snapshot /home + /var/lib/docker/volumes + +f5564faa 2025-04-30 03:00:35 arr-stack daily snapshot /etc 8.732 GiB + monthly snapshot /home + /var/lib/docker/volumes + +2aac16ef 2025-05-01 18:06:52 arr-stack daily snapshot /etc 8.669 GiB + /home + /var/lib/docker/volumes + +d75d72d5 2025-05-02 03:00:32 arr-stack daily snapshot /etc 8.644 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +4 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +11f24e76 2025-04-27 23:38:59 services weekly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +b303861b 2025-04-30 04:09:47 services daily snapshot /etc 122.770 GiB + monthly snapshot /home + /var/lib/docker/volumes + +505e9c46 2025-05-01 18:41:31 services daily snapshot /etc 122.914 GiB + /home + /var/lib/docker/volumes + +aeac8a9a 2025-05-02 04:39:40 services daily snapshot /etc 122.903 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +5 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +7e606773 2025-04-29 04:03:29 services /etc 122.673 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +8193e470 2025-04-27 21:34:29 morganna weekly snapshot /etc + /home + /var/lib/docker/volumes + +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +e129f7af 2025-04-29 04:00:06 morganna daily snapshot /etc 1.093 GiB + /home + /var/lib/docker/volumes + +86f10b59 2025-04-30 04:00:06 morganna daily snapshot /etc 1.094 GiB + monthly snapshot /home + /var/lib/docker/volumes + +861121f1 2025-05-01 04:00:05 morganna daily snapshot /etc 1.095 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +5 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 35 snapshots +[0:25] 100.00% 35 / 35 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:01] 100.00% 10456 / 10456 packs processed + +to repack: 3489 blobs / 106.259 MiB +this removes: 2068 blobs / 95.536 MiB +to delete: 32 blobs / 16.346 MiB +total prune: 2100 blobs / 111.882 MiB +remaining: 766968 blobs / 169.429 GiB +unused size after prune: 8.470 GiB (5.00% of remaining size) + +repacking packs +[0:02] 100.00% 10 / 10 packs repacked +rebuilding index +[0:01] 100.00% 16 / 16 indexes processed +[0:00] 100.00% 9 / 9 old indexes deleted +removing 11 old packs +[0:00] 100.00% 11 / 11 files deleted +done +2025-05-02_03:30:01 Backup script done +2025-05-03_03:30:01 Starting backup +User: ccalifice +2025-05-03_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/maybe-finance +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/typebot +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-03_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot aeac8a9a + +Files: 1558 new, 736 changed, 164586 unmodified +Dirs: 67 new, 203 changed, 37512 unmodified +Added to the repository: 471.712 MiB (146.104 MiB stored) + +processed 166880 files, 123.045 GiB in 0:24 +snapshot 15b94d1d saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/maybe-finance +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/typebot +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-03_03:30:01 Backup complete. +2025-05-03_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +11f24e76 2025-04-27 23:38:59 services weekly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +b303861b 2025-04-30 04:09:47 services monthly snapshot /etc 122.770 GiB + /home + /var/lib/docker/volumes + +505e9c46 2025-05-01 18:41:31 services daily snapshot /etc 122.914 GiB + /home + /var/lib/docker/volumes + +aeac8a9a 2025-05-02 04:39:40 services daily snapshot /etc 122.903 GiB + /home + /var/lib/docker/volumes + +15b94d1d 2025-05-03 04:33:34 services daily snapshot /etc 123.045 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +8193e470 2025-04-27 21:34:29 morganna weekly snapshot /etc + /home + /var/lib/docker/volumes + +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +86f10b59 2025-04-30 04:00:06 morganna daily snapshot /etc 1.094 GiB + monthly snapshot /home + /var/lib/docker/volumes + +861121f1 2025-05-01 04:00:05 morganna daily snapshot /etc 1.095 GiB + /home + /var/lib/docker/volumes + +ee7a0e4e 2025-05-03 04:00:08 morganna daily snapshot /etc 1.112 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +5 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack weekly snapshot /etc 8.803 GiB + oldest yearly snapshot /home + /var/lib/docker/volumes + +f5564faa 2025-04-30 03:00:35 arr-stack monthly snapshot /etc 8.732 GiB + /home + /var/lib/docker/volumes + +2aac16ef 2025-05-01 18:06:52 arr-stack daily snapshot /etc 8.669 GiB + /home + /var/lib/docker/volumes + +d75d72d5 2025-05-02 03:00:32 arr-stack daily snapshot /etc 8.644 GiB + /home + /var/lib/docker/volumes + +53030294 2025-05-03 03:00:32 arr-stack daily snapshot /etc 8.643 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +5 snapshots + +2025-05-03_03:30:01 Backup script done +2025-05-04_03:30:01 Starting backup +User: ccalifice +2025-05-04_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/maybe-finance +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/typebot +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-04_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 15b94d1d + +Files: 117 new, 476 changed, 166323 unmodified +Dirs: 25 new, 193 changed, 37584 unmodified +Added to the repository: 458.190 MiB (133.339 MiB stored) + +processed 166916 files, 123.114 GiB in 0:21 +snapshot b3c4a8ea saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/maybe-finance +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/typebot +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-04_03:30:01 Backup complete. +2025-05-04_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack weekly snapshot /etc 8.803 GiB + oldest yearly snapshot /home + /var/lib/docker/volumes + +f5564faa 2025-04-30 03:00:35 arr-stack monthly snapshot /etc 8.732 GiB + /home + /var/lib/docker/volumes + +d75d72d5 2025-05-02 03:00:32 arr-stack daily snapshot /etc 8.644 GiB + /home + /var/lib/docker/volumes + +53030294 2025-05-03 03:00:32 arr-stack daily snapshot /etc 8.643 GiB + /home + /var/lib/docker/volumes + +c42d7a58 2025-05-04 03:00:32 arr-stack daily snapshot /etc 8.643 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +5 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +11f24e76 2025-04-27 23:38:59 services weekly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +b303861b 2025-04-30 04:09:47 services monthly snapshot /etc 122.770 GiB + /home + /var/lib/docker/volumes + +aeac8a9a 2025-05-02 04:39:40 services daily snapshot /etc 122.903 GiB + /home + /var/lib/docker/volumes + +15b94d1d 2025-05-03 04:33:34 services daily snapshot /etc 123.045 GiB + /home + /var/lib/docker/volumes + +b3c4a8ea 2025-05-04 04:28:22 services daily snapshot /etc 123.114 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +505e9c46 2025-05-01 18:41:31 services /etc 122.914 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +8193e470 2025-04-27 21:34:29 morganna weekly snapshot /etc + /home + /var/lib/docker/volumes + +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +86f10b59 2025-04-30 04:00:06 morganna monthly snapshot /etc 1.094 GiB + /home + /var/lib/docker/volumes + +861121f1 2025-05-01 04:00:05 morganna daily snapshot /etc 1.095 GiB + /home + /var/lib/docker/volumes + +ee7a0e4e 2025-05-03 04:00:08 morganna daily snapshot /etc 1.112 GiB + /home + /var/lib/docker/volumes + +6bba9db8 2025-05-04 04:00:08 morganna daily snapshot /etc 1.113 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 38 snapshots +[0:26] 100.00% 38 / 38 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:01] 100.00% 10475 / 10475 packs processed + +to repack: 1015 blobs / 84.585 MiB +this removes: 848 blobs / 77.462 MiB +to delete: 41 blobs / 16.015 MiB +total prune: 889 blobs / 93.477 MiB +remaining: 769271 blobs / 169.657 GiB +unused size after prune: 8.481 GiB (5.00% of remaining size) + +repacking packs +[0:02] 100.00% 9 / 9 packs repacked +rebuilding index +[0:02] 100.00% 18 / 18 indexes processed +[0:00] 100.00% 8 / 8 old indexes deleted +removing 10 old packs +[0:00] 100.00% 10 / 10 files deleted +done +2025-05-04_03:30:01 Backup script done +2025-05-05_03:30:01 Starting backup +User: ccalifice +2025-05-05_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/maybe-finance +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/typebot +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-05_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot b3c4a8ea + +Files: 146 new, 724 changed, 165915 unmodified +Dirs: 27 new, 190 changed, 37605 unmodified +Added to the repository: 490.608 MiB (151.872 MiB stored) + +processed 166785 files, 123.175 GiB in 0:25 +snapshot 85ffe2f6 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/maybe-finance +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/typebot +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-05_03:30:01 Backup complete. +2025-05-05_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +b303861b 2025-04-30 04:09:47 services monthly snapshot /etc 122.770 GiB + /home + /var/lib/docker/volumes + +15b94d1d 2025-05-03 04:33:34 services daily snapshot /etc 123.045 GiB + /home + /var/lib/docker/volumes + +b3c4a8ea 2025-05-04 04:28:22 services daily snapshot /etc 123.114 GiB + weekly snapshot /home + /var/lib/docker/volumes + +85ffe2f6 2025-05-05 04:30:30 services daily snapshot /etc 123.175 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +5 snapshots + +remove 2 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +11f24e76 2025-04-27 23:38:59 services /etc 121.567 GiB + /home + /var/lib/docker/volumes + +aeac8a9a 2025-05-02 04:39:40 services /etc 122.903 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +2 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +86f10b59 2025-04-30 04:00:06 morganna monthly snapshot /etc 1.094 GiB + /home + /var/lib/docker/volumes + +ee7a0e4e 2025-05-03 04:00:08 morganna daily snapshot /etc 1.112 GiB + /home + /var/lib/docker/volumes + +6bba9db8 2025-05-04 04:00:08 morganna daily snapshot /etc 1.113 GiB + weekly snapshot /home + /var/lib/docker/volumes + +d0a9b9a9 2025-05-05 04:00:09 morganna daily snapshot /etc 1.113 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +5 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +f5564faa 2025-04-30 03:00:35 arr-stack monthly snapshot /etc 8.732 GiB + /home + /var/lib/docker/volumes + +53030294 2025-05-03 03:00:32 arr-stack daily snapshot /etc 8.643 GiB + /home + /var/lib/docker/volumes + +c42d7a58 2025-05-04 03:00:32 arr-stack daily snapshot /etc 8.643 GiB + weekly snapshot /home + /var/lib/docker/volumes + +a76967ce 2025-05-05 03:00:32 arr-stack daily snapshot /etc 8.648 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +5 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +[0:00] 100.00% 2 / 2 files deleted +2 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 36 snapshots +[0:28] 100.00% 36 / 36 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:01] 100.00% 10469 / 10469 packs processed + +to repack: 3344 blobs / 179.659 MiB +this removes: 1451 blobs / 160.297 MiB +to delete: 0 blobs / 0 B +total prune: 1451 blobs / 160.297 MiB +remaining: 768896 blobs / 169.617 GiB +unused size after prune: 8.472 GiB (4.99% of remaining size) + +repacking packs +[0:04] 100.00% 14 / 14 packs repacked +rebuilding index +[0:02] 100.00% 17 / 17 indexes processed +[0:00] 100.00% 12 / 12 old indexes deleted +removing 14 old packs +[0:00] 100.00% 14 / 14 files deleted +done +2025-05-05_03:30:01 Backup script done +2025-05-06_03:30:01 Starting backup +User: ccalifice +2025-05-06_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/maybe-finance +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/typebot +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-06_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 85ffe2f6 + +Files: 149 new, 798 changed, 165485 unmodified +Dirs: 41 new, 202 changed, 37596 unmodified +Added to the repository: 554.592 MiB (177.310 MiB stored) + +processed 166432 files, 123.231 GiB in 0:20 +snapshot a46b71cf saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/maybe-finance +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/typebot +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-06_03:30:01 Backup complete. +2025-05-06_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +f5564faa 2025-04-30 03:00:35 arr-stack monthly snapshot /etc 8.732 GiB + /home + /var/lib/docker/volumes + +c42d7a58 2025-05-04 03:00:32 arr-stack daily snapshot /etc 8.643 GiB + weekly snapshot /home + /var/lib/docker/volumes + +a76967ce 2025-05-05 03:00:32 arr-stack daily snapshot /etc 8.648 GiB + /home + /var/lib/docker/volumes + +e06a8014 2025-05-06 03:00:32 arr-stack daily snapshot /etc 8.630 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +5 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +b303861b 2025-04-30 04:09:47 services monthly snapshot /etc 122.770 GiB + /home + /var/lib/docker/volumes + +b3c4a8ea 2025-05-04 04:28:22 services daily snapshot /etc 123.114 GiB + weekly snapshot /home + /var/lib/docker/volumes + +85ffe2f6 2025-05-05 04:30:30 services daily snapshot /etc 123.175 GiB + /home + /var/lib/docker/volumes + +a46b71cf 2025-05-06 04:36:29 services daily snapshot /etc 123.231 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +5 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +15b94d1d 2025-05-03 04:33:34 services /etc 123.045 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +86f10b59 2025-04-30 04:00:06 morganna monthly snapshot /etc 1.094 GiB + /home + /var/lib/docker/volumes + +6bba9db8 2025-05-04 04:00:08 morganna daily snapshot /etc 1.113 GiB + weekly snapshot /home + /var/lib/docker/volumes + +d0a9b9a9 2025-05-05 04:00:09 morganna daily snapshot /etc 1.113 GiB + /home + /var/lib/docker/volumes + +f256d9d0 2025-05-06 04:00:08 morganna daily snapshot /etc 1.113 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +5 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 36 snapshots +[0:25] 100.00% 36 / 36 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:01] 100.00% 10474 / 10474 packs processed + +to repack: 4084 blobs / 102.454 MiB +this removes: 2283 blobs / 90.806 MiB +to delete: 0 blobs / 0 B +total prune: 2283 blobs / 90.806 MiB +remaining: 768306 blobs / 169.701 GiB +unused size after prune: 8.473 GiB (4.99% of remaining size) + +repacking packs +[0:02] 100.00% 9 / 9 packs repacked +rebuilding index +[0:01] 100.00% 18 / 18 indexes processed +[0:00] 100.00% 9 / 9 old indexes deleted +removing 9 old packs +[0:00] 100.00% 9 / 9 files deleted +done +2025-05-06_03:30:01 Backup script done +2025-05-07_03:30:01 Starting backup +User: ccalifice +2025-05-07_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/maybe-finance +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/typebot +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-07_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot a46b71cf + +Files: 167 new, 707 changed, 165200 unmodified +Dirs: 48 new, 225 changed, 37574 unmodified +Added to the repository: 539.082 MiB (167.100 MiB stored) + +processed 166074 files, 123.287 GiB in 0:20 +snapshot ea2f1ac7 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/maybe-finance +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/typebot +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-07_03:30:01 Backup complete. +2025-05-07_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +b303861b 2025-04-30 04:09:47 services monthly snapshot /etc 122.770 GiB + /home + /var/lib/docker/volumes + +b3c4a8ea 2025-05-04 04:28:22 services weekly snapshot /etc 123.114 GiB + /home + /var/lib/docker/volumes + +85ffe2f6 2025-05-05 04:30:30 services daily snapshot /etc 123.175 GiB + /home + /var/lib/docker/volumes + +a46b71cf 2025-05-06 04:36:29 services daily snapshot /etc 123.231 GiB + /home + /var/lib/docker/volumes + +ea2f1ac7 2025-05-07 04:23:01 services daily snapshot /etc 123.287 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +86f10b59 2025-04-30 04:00:06 morganna monthly snapshot /etc 1.094 GiB + /home + /var/lib/docker/volumes + +6bba9db8 2025-05-04 04:00:08 morganna weekly snapshot /etc 1.113 GiB + /home + /var/lib/docker/volumes + +d0a9b9a9 2025-05-05 04:00:09 morganna daily snapshot /etc 1.113 GiB + /home + /var/lib/docker/volumes + +f256d9d0 2025-05-06 04:00:08 morganna daily snapshot /etc 1.113 GiB + /home + /var/lib/docker/volumes + +16ee8e9f 2025-05-07 04:00:08 morganna daily snapshot /etc 1.113 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +f5564faa 2025-04-30 03:00:35 arr-stack monthly snapshot /etc 8.732 GiB + /home + /var/lib/docker/volumes + +c42d7a58 2025-05-04 03:00:32 arr-stack weekly snapshot /etc 8.643 GiB + /home + /var/lib/docker/volumes + +a76967ce 2025-05-05 03:00:32 arr-stack daily snapshot /etc 8.648 GiB + /home + /var/lib/docker/volumes + +e06a8014 2025-05-06 03:00:32 arr-stack daily snapshot /etc 8.630 GiB + /home + /var/lib/docker/volumes + +e5d7cb6b 2025-05-07 03:00:31 arr-stack daily snapshot /etc 8.630 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +2025-05-07_03:30:01 Backup script done +2025-05-08_03:30:01 Starting backup +User: ccalifice +2025-05-08_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/maybe-finance +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/typebot +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-08_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot ea2f1ac7 + +Files: 131 new, 789 changed, 164988 unmodified +Dirs: 43 new, 207 changed, 37633 unmodified +Added to the repository: 514.239 MiB (160.411 MiB stored) + +processed 165908 files, 123.349 GiB in 0:20 +snapshot 9c426618 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/maybe-finance +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/typebot +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-08_03:30:01 Backup complete. +2025-05-08_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +b303861b 2025-04-30 04:09:47 services monthly snapshot /etc 122.770 GiB + /home + /var/lib/docker/volumes + +b3c4a8ea 2025-05-04 04:28:22 services weekly snapshot /etc 123.114 GiB + /home + /var/lib/docker/volumes + +a46b71cf 2025-05-06 04:36:29 services daily snapshot /etc 123.231 GiB + /home + /var/lib/docker/volumes + +ea2f1ac7 2025-05-07 04:23:01 services daily snapshot /etc 123.287 GiB + /home + /var/lib/docker/volumes + +9c426618 2025-05-08 04:26:55 services daily snapshot /etc 123.349 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +85ffe2f6 2025-05-05 04:30:30 services /etc 123.175 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +86f10b59 2025-04-30 04:00:06 morganna monthly snapshot /etc 1.094 GiB + /home + /var/lib/docker/volumes + +6bba9db8 2025-05-04 04:00:08 morganna weekly snapshot /etc 1.113 GiB + /home + /var/lib/docker/volumes + +f256d9d0 2025-05-06 04:00:08 morganna daily snapshot /etc 1.113 GiB + /home + /var/lib/docker/volumes + +16ee8e9f 2025-05-07 04:00:08 morganna daily snapshot /etc 1.113 GiB + /home + /var/lib/docker/volumes + +6b78ad02 2025-05-08 04:00:08 morganna daily snapshot /etc 1.113 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +f5564faa 2025-04-30 03:00:35 arr-stack monthly snapshot /etc 8.732 GiB + /home + /var/lib/docker/volumes + +c42d7a58 2025-05-04 03:00:32 arr-stack weekly snapshot /etc 8.643 GiB + /home + /var/lib/docker/volumes + +e06a8014 2025-05-06 03:00:32 arr-stack daily snapshot /etc 8.630 GiB + /home + /var/lib/docker/volumes + +e5d7cb6b 2025-05-07 03:00:31 arr-stack daily snapshot /etc 8.630 GiB + /home + /var/lib/docker/volumes + +8edfb433 2025-05-08 03:00:32 arr-stack daily snapshot /etc 8.572 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 39 snapshots +[0:26] 100.00% 39 / 39 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:01] 100.00% 10498 / 10498 packs processed + +to repack: 1172 blobs / 116.737 MiB +this removes: 689 blobs / 104.984 MiB +to delete: 0 blobs / 0 B +total prune: 689 blobs / 104.984 MiB +remaining: 771134 blobs / 169.947 GiB +unused size after prune: 8.497 GiB (5.00% of remaining size) + +repacking packs +[0:02] 100.00% 9 / 9 packs repacked +rebuilding index +[0:01] 100.00% 18 / 18 indexes processed +[0:00] 100.00% 7 / 7 old indexes deleted +removing 9 old packs +[0:00] 100.00% 9 / 9 files deleted +done +2025-05-08_03:30:01 Backup script done +2025-05-09_03:30:01 Starting backup +User: ccalifice +2025-05-09_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/maybe-finance +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/typebot +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-09_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 9c426618 + +Files: 330 new, 792 changed, 161925 unmodified +Dirs: 51 new, 249 changed, 37616 unmodified +Added to the repository: 520.072 MiB (185.481 MiB stored) + +processed 163047 files, 123.414 GiB in 0:23 +snapshot 9459a6ef saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/maybe-finance +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/typebot +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-09_03:30:01 Backup complete. +2025-05-09_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +b303861b 2025-04-30 04:09:47 services monthly snapshot /etc 122.770 GiB + /home + /var/lib/docker/volumes + +b3c4a8ea 2025-05-04 04:28:22 services weekly snapshot /etc 123.114 GiB + /home + /var/lib/docker/volumes + +ea2f1ac7 2025-05-07 04:23:01 services daily snapshot /etc 123.287 GiB + /home + /var/lib/docker/volumes + +9c426618 2025-05-08 04:26:55 services daily snapshot /etc 123.349 GiB + /home + /var/lib/docker/volumes + +9459a6ef 2025-05-09 04:29:29 services daily snapshot /etc 123.414 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +a46b71cf 2025-05-06 04:36:29 services /etc 123.231 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +86f10b59 2025-04-30 04:00:06 morganna monthly snapshot /etc 1.094 GiB + /home + /var/lib/docker/volumes + +6bba9db8 2025-05-04 04:00:08 morganna weekly snapshot /etc 1.113 GiB + /home + /var/lib/docker/volumes + +16ee8e9f 2025-05-07 04:00:08 morganna daily snapshot /etc 1.113 GiB + /home + /var/lib/docker/volumes + +6b78ad02 2025-05-08 04:00:08 morganna daily snapshot /etc 1.113 GiB + /home + /var/lib/docker/volumes + +2583bd60 2025-05-09 04:00:10 morganna daily snapshot /etc 1.113 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +f5564faa 2025-04-30 03:00:35 arr-stack monthly snapshot /etc 8.732 GiB + /home + /var/lib/docker/volumes + +c42d7a58 2025-05-04 03:00:32 arr-stack weekly snapshot /etc 8.643 GiB + /home + /var/lib/docker/volumes + +e5d7cb6b 2025-05-07 03:00:31 arr-stack daily snapshot /etc 8.630 GiB + /home + /var/lib/docker/volumes + +8edfb433 2025-05-08 03:00:32 arr-stack daily snapshot /etc 8.572 GiB + /home + /var/lib/docker/volumes + +47c9d99a 2025-05-09 03:00:32 arr-stack daily snapshot /etc 8.572 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 39 snapshots +[0:32] 100.00% 39 / 39 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:01] 100.00% 10508 / 10508 packs processed + +to repack: 1595 blobs / 136.598 MiB +this removes: 1487 blobs / 122.766 MiB +to delete: 0 blobs / 0 B +total prune: 1487 blobs / 122.766 MiB +remaining: 771423 blobs / 170.006 GiB +unused size after prune: 8.493 GiB (5.00% of remaining size) + +repacking packs +[0:03] 100.00% 11 / 11 packs repacked +rebuilding index +[0:02] 100.00% 18 / 18 indexes processed +[0:00] 100.00% 8 / 8 old indexes deleted +removing 11 old packs +[0:00] 100.00% 11 / 11 files deleted +done +2025-05-09_03:30:01 Backup script done +2025-05-10_03:30:01 Starting backup +User: ccalifice +2025-05-10_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/maybe-finance +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/typebot +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-10_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 9459a6ef + +Files: 341 new, 622 changed, 160274 unmodified +Dirs: 99 new, 325 changed, 37580 unmodified +Added to the repository: 647.623 MiB (349.604 MiB stored) + +processed 161237 files, 123.588 GiB in 0:29 +snapshot 152dd89b saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/maybe-finance +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/typebot +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-10_03:30:01 Backup complete. +2025-05-10_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +b303861b 2025-04-30 04:09:47 services monthly snapshot /etc 122.770 GiB + /home + /var/lib/docker/volumes + +b3c4a8ea 2025-05-04 04:28:22 services weekly snapshot /etc 123.114 GiB + /home + /var/lib/docker/volumes + +9c426618 2025-05-08 04:26:55 services daily snapshot /etc 123.349 GiB + /home + /var/lib/docker/volumes + +9459a6ef 2025-05-09 04:29:29 services daily snapshot /etc 123.414 GiB + /home + /var/lib/docker/volumes + +152dd89b 2025-05-10 11:58:57 services daily snapshot /etc 123.588 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +ea2f1ac7 2025-05-07 04:23:01 services /etc 123.287 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +86f10b59 2025-04-30 04:00:06 morganna monthly snapshot /etc 1.094 GiB + /home + /var/lib/docker/volumes + +6bba9db8 2025-05-04 04:00:08 morganna weekly snapshot /etc 1.113 GiB + /home + /var/lib/docker/volumes + +6b78ad02 2025-05-08 04:00:08 morganna daily snapshot /etc 1.113 GiB + /home + /var/lib/docker/volumes + +2583bd60 2025-05-09 04:00:10 morganna daily snapshot /etc 1.113 GiB + /home + /var/lib/docker/volumes + +cdb07f97 2025-05-10 04:00:07 morganna daily snapshot /etc 1.098 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +f5564faa 2025-04-30 03:00:35 arr-stack monthly snapshot /etc 8.732 GiB + /home + /var/lib/docker/volumes + +c42d7a58 2025-05-04 03:00:32 arr-stack weekly snapshot /etc 8.643 GiB + /home + /var/lib/docker/volumes + +8edfb433 2025-05-08 03:00:32 arr-stack daily snapshot /etc 8.572 GiB + /home + /var/lib/docker/volumes + +47c9d99a 2025-05-09 03:00:32 arr-stack daily snapshot /etc 8.572 GiB + /home + /var/lib/docker/volumes + +bc64badb 2025-05-10 07:47:16 arr-stack daily snapshot /etc 8.561 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 39 snapshots +[0:28] 100.00% 39 / 39 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:01] 100.00% 10514 / 10514 packs processed + +to repack: 2472 blobs / 126.086 MiB +this removes: 2049 blobs / 111.720 MiB +to delete: 0 blobs / 0 B +total prune: 2049 blobs / 111.720 MiB +remaining: 771253 blobs / 170.262 GiB +unused size after prune: 8.504 GiB (4.99% of remaining size) + +repacking packs +[0:03] 100.00% 9 / 9 packs repacked +rebuilding index +[0:02] 100.00% 18 / 18 indexes processed +[0:00] 100.00% 11 / 11 old indexes deleted +removing 9 old packs +[0:00] 100.00% 9 / 9 files deleted +done +2025-05-10_03:30:01 Backup script done +2025-05-11_03:30:01 Starting backup +User: ccalifice +2025-05-11_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/maybe-finance +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/typebot +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-11_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 152dd89b + +Files: 125 new, 527 changed, 160533 unmodified +Dirs: 26 new, 201 changed, 37790 unmodified +Added to the repository: 427.848 MiB (135.325 MiB stored) + +processed 161185 files, 123.654 GiB in 0:23 +snapshot 04a5529f saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/maybe-finance +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/typebot +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-11_03:30:01 Backup complete. +2025-05-11_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +b303861b 2025-04-30 04:09:47 services monthly snapshot /etc 122.770 GiB + /home + /var/lib/docker/volumes + +b3c4a8ea 2025-05-04 04:28:22 services weekly snapshot /etc 123.114 GiB + /home + /var/lib/docker/volumes + +9459a6ef 2025-05-09 04:29:29 services daily snapshot /etc 123.414 GiB + /home + /var/lib/docker/volumes + +152dd89b 2025-05-10 11:58:57 services daily snapshot /etc 123.588 GiB + /home + /var/lib/docker/volumes + +04a5529f 2025-05-11 04:35:57 services daily snapshot /etc 123.654 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +9c426618 2025-05-08 04:26:55 services /etc 123.349 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +86f10b59 2025-04-30 04:00:06 morganna monthly snapshot /etc 1.094 GiB + /home + /var/lib/docker/volumes + +6bba9db8 2025-05-04 04:00:08 morganna weekly snapshot /etc 1.113 GiB + /home + /var/lib/docker/volumes + +2583bd60 2025-05-09 04:00:10 morganna daily snapshot /etc 1.113 GiB + /home + /var/lib/docker/volumes + +cdb07f97 2025-05-10 04:00:07 morganna daily snapshot /etc 1.098 GiB + /home + /var/lib/docker/volumes + +76e3ed05 2025-05-11 04:00:08 morganna daily snapshot /etc 1.098 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +f5564faa 2025-04-30 03:00:35 arr-stack monthly snapshot /etc 8.732 GiB + /home + /var/lib/docker/volumes + +c42d7a58 2025-05-04 03:00:32 arr-stack weekly snapshot /etc 8.643 GiB + /home + /var/lib/docker/volumes + +47c9d99a 2025-05-09 03:00:32 arr-stack daily snapshot /etc 8.572 GiB + /home + /var/lib/docker/volumes + +bc64badb 2025-05-10 07:47:16 arr-stack daily snapshot /etc 8.561 GiB + /home + /var/lib/docker/volumes + +bb87b2d5 2025-05-11 03:00:31 arr-stack daily snapshot /etc 8.567 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 39 snapshots +[0:29] 100.00% 39 / 39 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:01] 100.00% 10521 / 10521 packs processed + +to repack: 3325 blobs / 129.022 MiB +this removes: 1284 blobs / 111.606 MiB +to delete: 41 blobs / 16.015 MiB +total prune: 1325 blobs / 127.620 MiB +remaining: 771173 blobs / 170.284 GiB +unused size after prune: 8.507 GiB (5.00% of remaining size) + +repacking packs +[0:04] 100.00% 12 / 12 packs repacked +rebuilding index +[0:02] 100.00% 18 / 18 indexes processed +[0:00] 100.00% 11 / 11 old indexes deleted +removing 13 old packs +[0:00] 100.00% 13 / 13 files deleted +done +2025-05-11_03:30:01 Backup script done +2025-05-12_03:30:01 Starting backup +User: ccalifice +2025-05-12_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/maybe-finance +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/typebot +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-12_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 04a5529f + +Files: 100 new, 554 changed, 160499 unmodified +Dirs: 22 new, 199 changed, 37808 unmodified +Added to the repository: 468.798 MiB (144.486 MiB stored) + +processed 161153 files, 123.742 GiB in 0:23 +snapshot 9042b6a2 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/maybe-finance +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/typebot +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-12_03:30:01 Backup complete. +2025-05-12_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +b303861b 2025-04-30 04:09:47 services monthly snapshot /etc 122.770 GiB + /home + /var/lib/docker/volumes + +152dd89b 2025-05-10 11:58:57 services daily snapshot /etc 123.588 GiB + /home + /var/lib/docker/volumes + +04a5529f 2025-05-11 04:35:57 services daily snapshot /etc 123.654 GiB + weekly snapshot /home + /var/lib/docker/volumes + +9042b6a2 2025-05-12 04:28:43 services daily snapshot /etc 123.742 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +5 snapshots + +remove 2 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +b3c4a8ea 2025-05-04 04:28:22 services /etc 123.114 GiB + /home + /var/lib/docker/volumes + +9459a6ef 2025-05-09 04:29:29 services /etc 123.414 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +2 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +86f10b59 2025-04-30 04:00:06 morganna monthly snapshot /etc 1.094 GiB + /home + /var/lib/docker/volumes + +cdb07f97 2025-05-10 04:00:07 morganna daily snapshot /etc 1.098 GiB + /home + /var/lib/docker/volumes + +76e3ed05 2025-05-11 04:00:08 morganna daily snapshot /etc 1.098 GiB + weekly snapshot /home + /var/lib/docker/volumes + +71f51c78 2025-05-12 04:00:07 morganna daily snapshot /etc 1.098 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +5 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +f5564faa 2025-04-30 03:00:35 arr-stack monthly snapshot /etc 8.732 GiB + /home + /var/lib/docker/volumes + +bc64badb 2025-05-10 07:47:16 arr-stack daily snapshot /etc 8.561 GiB + /home + /var/lib/docker/volumes + +bb87b2d5 2025-05-11 03:00:31 arr-stack daily snapshot /etc 8.567 GiB + weekly snapshot /home + /var/lib/docker/volumes + +bebd7859 2025-05-12 03:00:33 arr-stack daily snapshot /etc 8.571 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +5 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +[0:00] 100.00% 2 / 2 files deleted +2 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 36 snapshots +[0:30] 100.00% 36 / 36 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:03] 100.00% 10522 / 10522 packs processed + +to repack: 6148 blobs / 268.179 MiB +this removes: 4328 blobs / 241.488 MiB +to delete: 18 blobs / 3.217 MiB +total prune: 4346 blobs / 244.705 MiB +remaining: 767466 blobs / 170.160 GiB +unused size after prune: 8.497 GiB (4.99% of remaining size) + +repacking packs +[0:08] 100.00% 20 / 20 packs repacked +rebuilding index +[0:04] 100.00% 18 / 18 indexes processed +[0:00] 100.00% 13 / 13 old indexes deleted +removing 21 old packs +[0:00] 100.00% 21 / 21 files deleted +done +2025-05-12_03:30:01 Backup script done +2025-05-13_03:30:01 Starting backup +User: ccalifice +2025-05-13_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/maybe-finance +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/typebot +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-13_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 9042b6a2 + +Files: 197 new, 542 changed, 159688 unmodified +Dirs: 32 new, 230 changed, 37793 unmodified +Added to the repository: 465.860 MiB (144.196 MiB stored) + +processed 160427 files, 123.819 GiB in 0:23 +snapshot 2dd5eada saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/maybe-finance +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/typebot +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-13_03:30:01 Backup complete. +2025-05-13_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +b303861b 2025-04-30 04:09:47 services monthly snapshot /etc 122.770 GiB + /home + /var/lib/docker/volumes + +04a5529f 2025-05-11 04:35:57 services daily snapshot /etc 123.654 GiB + weekly snapshot /home + /var/lib/docker/volumes + +9042b6a2 2025-05-12 04:28:43 services daily snapshot /etc 123.742 GiB + /home + /var/lib/docker/volumes + +2dd5eada 2025-05-13 04:23:20 services daily snapshot /etc 123.819 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +5 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +152dd89b 2025-05-10 11:58:57 services /etc 123.588 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +f5564faa 2025-04-30 03:00:35 arr-stack monthly snapshot /etc 8.732 GiB + /home + /var/lib/docker/volumes + +bb87b2d5 2025-05-11 03:00:31 arr-stack daily snapshot /etc 8.567 GiB + weekly snapshot /home + /var/lib/docker/volumes + +bebd7859 2025-05-12 03:00:33 arr-stack daily snapshot /etc 8.571 GiB + /home + /var/lib/docker/volumes + +4570a27a 2025-05-13 03:00:28 arr-stack daily snapshot /etc 8.546 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +5 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +86f10b59 2025-04-30 04:00:06 morganna monthly snapshot /etc 1.094 GiB + /home + /var/lib/docker/volumes + +76e3ed05 2025-05-11 04:00:08 morganna daily snapshot /etc 1.098 GiB + weekly snapshot /home + /var/lib/docker/volumes + +71f51c78 2025-05-12 04:00:07 morganna daily snapshot /etc 1.098 GiB + /home + /var/lib/docker/volumes + +a06e2364 2025-05-13 04:00:08 morganna daily snapshot /etc 1.098 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +5 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 36 snapshots +[0:29] 100.00% 36 / 36 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:01] 100.00% 10517 / 10517 packs processed + +to repack: 3642 blobs / 109.657 MiB +this removes: 1581 blobs / 95.260 MiB +to delete: 31 blobs / 16.645 MiB +total prune: 1612 blobs / 111.905 MiB +remaining: 767258 blobs / 170.203 GiB +unused size after prune: 8.499 GiB (4.99% of remaining size) + +repacking packs +[0:03] 100.00% 9 / 9 packs repacked +rebuilding index +[0:03] 100.00% 17 / 17 indexes processed +[0:00] 100.00% 9 / 9 old indexes deleted +removing 10 old packs +[0:00] 100.00% 10 / 10 files deleted +done +2025-05-13_03:30:01 Backup script done +2025-05-14_03:30:01 Starting backup +User: ccalifice +2025-05-14_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/maybe-finance +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/typebot +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-14_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 2dd5eada + +Files: 194 new, 534 changed, 158606 unmodified +Dirs: 30 new, 236 changed, 37809 unmodified +Added to the repository: 475.410 MiB (150.621 MiB stored) + +processed 159334 files, 123.854 GiB in 0:24 +snapshot 70e0b862 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/maybe-finance +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/typebot +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-14_03:30:01 Backup complete. +2025-05-14_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +f5564faa 2025-04-30 03:00:35 arr-stack monthly snapshot /etc 8.732 GiB + /home + /var/lib/docker/volumes + +bb87b2d5 2025-05-11 03:00:31 arr-stack weekly snapshot /etc 8.567 GiB + /home + /var/lib/docker/volumes + +bebd7859 2025-05-12 03:00:33 arr-stack daily snapshot /etc 8.571 GiB + /home + /var/lib/docker/volumes + +4570a27a 2025-05-13 03:00:28 arr-stack daily snapshot /etc 8.546 GiB + /home + /var/lib/docker/volumes + +f9cb935e 2025-05-14 03:00:27 arr-stack daily snapshot /etc 8.547 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +b303861b 2025-04-30 04:09:47 services monthly snapshot /etc 122.770 GiB + /home + /var/lib/docker/volumes + +04a5529f 2025-05-11 04:35:57 services weekly snapshot /etc 123.654 GiB + /home + /var/lib/docker/volumes + +9042b6a2 2025-05-12 04:28:43 services daily snapshot /etc 123.742 GiB + /home + /var/lib/docker/volumes + +2dd5eada 2025-05-13 04:23:20 services daily snapshot /etc 123.819 GiB + /home + /var/lib/docker/volumes + +70e0b862 2025-05-14 04:26:30 services daily snapshot /etc 123.854 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +86f10b59 2025-04-30 04:00:06 morganna monthly snapshot /etc 1.094 GiB + /home + /var/lib/docker/volumes + +76e3ed05 2025-05-11 04:00:08 morganna weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/volumes + +71f51c78 2025-05-12 04:00:07 morganna daily snapshot /etc 1.098 GiB + /home + /var/lib/docker/volumes + +a06e2364 2025-05-13 04:00:08 morganna daily snapshot /etc 1.098 GiB + /home + /var/lib/docker/volumes + +f67ee656 2025-05-14 04:00:08 morganna daily snapshot /etc 1.098 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +2025-05-14_03:30:01 Backup script done +2025-05-15_03:30:01 Starting backup +User: ccalifice +2025-05-15_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/maybe-finance +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/typebot +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-15_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 70e0b862 + +Files: 435 new, 557 changed, 158621 unmodified +Dirs: 237 new, 430 changed, 37625 unmodified +Added to the repository: 764.407 MiB (420.438 MiB stored) + +processed 159613 files, 124.083 GiB in 0:26 +snapshot e9d918c0 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/maybe-finance +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/typebot +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-15_03:30:01 Backup complete. +2025-05-15_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +b303861b 2025-04-30 04:09:47 services monthly snapshot /etc 122.770 GiB + /home + /var/lib/docker/volumes + +04a5529f 2025-05-11 04:35:57 services weekly snapshot /etc 123.654 GiB + /home + /var/lib/docker/volumes + +2dd5eada 2025-05-13 04:23:20 services daily snapshot /etc 123.819 GiB + /home + /var/lib/docker/volumes + +70e0b862 2025-05-14 04:26:30 services daily snapshot /etc 123.854 GiB + /home + /var/lib/docker/volumes + +e9d918c0 2025-05-15 04:39:36 services daily snapshot /etc 124.083 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +9042b6a2 2025-05-12 04:28:43 services /etc 123.742 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +86f10b59 2025-04-30 04:00:06 morganna monthly snapshot /etc 1.094 GiB + /home + /var/lib/docker/volumes + +76e3ed05 2025-05-11 04:00:08 morganna weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/volumes + +a06e2364 2025-05-13 04:00:08 morganna daily snapshot /etc 1.098 GiB + /home + /var/lib/docker/volumes + +f67ee656 2025-05-14 04:00:08 morganna daily snapshot /etc 1.098 GiB + /home + /var/lib/docker/volumes + +ede40401 2025-05-15 04:00:07 morganna daily snapshot /etc 1.098 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +f5564faa 2025-04-30 03:00:35 arr-stack monthly snapshot /etc 8.732 GiB + /home + /var/lib/docker/volumes + +bb87b2d5 2025-05-11 03:00:31 arr-stack weekly snapshot /etc 8.567 GiB + /home + /var/lib/docker/volumes + +4570a27a 2025-05-13 03:00:28 arr-stack daily snapshot /etc 8.546 GiB + /home + /var/lib/docker/volumes + +f9cb935e 2025-05-14 03:00:27 arr-stack daily snapshot /etc 8.547 GiB + /home + /var/lib/docker/volumes + +000ddc26 2025-05-15 03:00:26 arr-stack daily snapshot /etc 8.457 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 39 snapshots +[0:30] 100.00% 39 / 39 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:01] 100.00% 10546 / 10546 packs processed + +to repack: 707 blobs / 73.283 MiB +this removes: 640 blobs / 65.767 MiB +to delete: 0 blobs / 0 B +total prune: 640 blobs / 65.767 MiB +remaining: 770760 blobs / 170.757 GiB +unused size after prune: 8.536 GiB (5.00% of remaining size) + +repacking packs +[0:02] 100.00% 7 / 7 packs repacked +rebuilding index +[0:02] 100.00% 18 / 18 indexes processed +[0:00] 100.00% 7 / 7 old indexes deleted +removing 7 old packs +[0:00] 100.00% 7 / 7 files deleted +done +2025-05-15_03:30:01 Backup script done +2025-05-16_03:30:01 Starting backup +User: ccalifice +2025-05-16_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/maybe-finance +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/typebot +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-16_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot e9d918c0 + +Files: 409 new, 525 changed, 156636 unmodified +Dirs: 36 new, 271 changed, 38013 unmodified +Added to the repository: 479.539 MiB (168.098 MiB stored) + +processed 157570 files, 124.112 GiB in 0:23 +snapshot 5b6184c3 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/maybe-finance +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/typebot +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-16_03:30:01 Backup complete. +2025-05-16_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +b303861b 2025-04-30 04:09:47 services monthly snapshot /etc 122.770 GiB + /home + /var/lib/docker/volumes + +04a5529f 2025-05-11 04:35:57 services weekly snapshot /etc 123.654 GiB + /home + /var/lib/docker/volumes + +70e0b862 2025-05-14 04:26:30 services daily snapshot /etc 123.854 GiB + /home + /var/lib/docker/volumes + +e9d918c0 2025-05-15 04:39:36 services daily snapshot /etc 124.083 GiB + /home + /var/lib/docker/volumes + +5b6184c3 2025-05-16 04:22:18 services daily snapshot /etc 124.112 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +2dd5eada 2025-05-13 04:23:20 services /etc 123.819 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +86f10b59 2025-04-30 04:00:06 morganna monthly snapshot /etc 1.094 GiB + /home + /var/lib/docker/volumes + +76e3ed05 2025-05-11 04:00:08 morganna weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/volumes + +f67ee656 2025-05-14 04:00:08 morganna daily snapshot /etc 1.098 GiB + /home + /var/lib/docker/volumes + +ede40401 2025-05-15 04:00:07 morganna daily snapshot /etc 1.098 GiB + /home + /var/lib/docker/volumes + +30a40b7b 2025-05-16 04:00:07 morganna daily snapshot /etc 1.099 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +f5564faa 2025-04-30 03:00:35 arr-stack monthly snapshot /etc 8.732 GiB + /home + /var/lib/docker/volumes + +bb87b2d5 2025-05-11 03:00:31 arr-stack weekly snapshot /etc 8.567 GiB + /home + /var/lib/docker/volumes + +f9cb935e 2025-05-14 03:00:27 arr-stack daily snapshot /etc 8.547 GiB + /home + /var/lib/docker/volumes + +000ddc26 2025-05-15 03:00:26 arr-stack daily snapshot /etc 8.457 GiB + /home + /var/lib/docker/volumes + +8d0f7b2e 2025-05-16 03:00:27 arr-stack daily snapshot /etc 8.461 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 39 snapshots +[0:27] 100.00% 39 / 39 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:01] 100.00% 10557 / 10557 packs processed + +to repack: 1883 blobs / 101.321 MiB +this removes: 1779 blobs / 89.969 MiB +to delete: 25 blobs / 16.537 MiB +total prune: 1804 blobs / 106.506 MiB +remaining: 770413 blobs / 170.819 GiB +unused size after prune: 8.534 GiB (5.00% of remaining size) + +repacking packs +[0:02] 100.00% 7 / 7 packs repacked +rebuilding index +[0:02] 100.00% 18 / 18 indexes processed +[0:00] 100.00% 10 / 10 old indexes deleted +removing 8 old packs +[0:00] 100.00% 8 / 8 files deleted +done +2025-05-16_03:30:01 Backup script done +2025-05-17_03:30:01 Starting backup +User: ccalifice +2025-05-17_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/maybe-finance +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/typebot +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-17_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 5b6184c3 + +Files: 159 new, 766 changed, 156410 unmodified +Dirs: 32 new, 249 changed, 38061 unmodified +Added to the repository: 470.397 MiB (150.260 MiB stored) + +processed 157335 files, 124.122 GiB in 0:26 +snapshot 8822a2c3 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/maybe-finance +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/typebot +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-17_03:30:01 Backup complete. +2025-05-17_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +86f10b59 2025-04-30 04:00:06 morganna monthly snapshot /etc 1.094 GiB + /home + /var/lib/docker/volumes + +76e3ed05 2025-05-11 04:00:08 morganna weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/volumes + +ede40401 2025-05-15 04:00:07 morganna daily snapshot /etc 1.098 GiB + /home + /var/lib/docker/volumes + +30a40b7b 2025-05-16 04:00:07 morganna daily snapshot /etc 1.099 GiB + /home + /var/lib/docker/volumes + +7866e7ba 2025-05-17 04:00:08 morganna daily snapshot /etc 1.099 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +f5564faa 2025-04-30 03:00:35 arr-stack monthly snapshot /etc 8.732 GiB + /home + /var/lib/docker/volumes + +bb87b2d5 2025-05-11 03:00:31 arr-stack weekly snapshot /etc 8.567 GiB + /home + /var/lib/docker/volumes + +000ddc26 2025-05-15 03:00:26 arr-stack daily snapshot /etc 8.457 GiB + /home + /var/lib/docker/volumes + +8d0f7b2e 2025-05-16 03:00:27 arr-stack daily snapshot /etc 8.461 GiB + /home + /var/lib/docker/volumes + +3f44b25b 2025-05-17 03:00:26 arr-stack daily snapshot /etc 8.461 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +b303861b 2025-04-30 04:09:47 services monthly snapshot /etc 122.770 GiB + /home + /var/lib/docker/volumes + +04a5529f 2025-05-11 04:35:57 services weekly snapshot /etc 123.654 GiB + /home + /var/lib/docker/volumes + +e9d918c0 2025-05-15 04:39:36 services daily snapshot /etc 124.083 GiB + /home + /var/lib/docker/volumes + +5b6184c3 2025-05-16 04:22:18 services daily snapshot /etc 124.112 GiB + /home + /var/lib/docker/volumes + +8822a2c3 2025-05-17 04:38:23 services daily snapshot /etc 124.122 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +70e0b862 2025-05-14 04:26:30 services /etc 123.854 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 39 snapshots +[0:28] 100.00% 39 / 39 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:01] 100.00% 10565 / 10565 packs processed + +to repack: 1916 blobs / 106.067 MiB +this removes: 1765 blobs / 94.388 MiB +to delete: 0 blobs / 0 B +total prune: 1765 blobs / 94.388 MiB +remaining: 769961 blobs / 170.872 GiB +unused size after prune: 8.543 GiB (5.00% of remaining size) + +repacking packs +[0:02] 100.00% 9 / 9 packs repacked +rebuilding index +[0:03] 100.00% 18 / 18 indexes processed +[0:00] 100.00% 9 / 9 old indexes deleted +removing 9 old packs +[0:01] 100.00% 9 / 9 files deleted +done +2025-05-17_03:30:01 Backup script done +2025-05-18_03:30:01 Starting backup +User: ccalifice +2025-05-18_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/maybe-finance +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/typebot +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-18_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 8822a2c3 + +Files: 98 new, 745 changed, 156475 unmodified +Dirs: 24 new, 196 changed, 38133 unmodified +Added to the repository: 476.480 MiB (153.489 MiB stored) + +processed 157318 files, 124.123 GiB in 0:20 +snapshot acf45b97 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/maybe-finance +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/typebot +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-18_03:30:01 Backup complete. +2025-05-18_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +f5564faa 2025-04-30 03:00:35 arr-stack monthly snapshot /etc 8.732 GiB + /home + /var/lib/docker/volumes + +bb87b2d5 2025-05-11 03:00:31 arr-stack weekly snapshot /etc 8.567 GiB + /home + /var/lib/docker/volumes + +8d0f7b2e 2025-05-16 03:00:27 arr-stack daily snapshot /etc 8.461 GiB + /home + /var/lib/docker/volumes + +3f44b25b 2025-05-17 03:00:26 arr-stack daily snapshot /etc 8.461 GiB + /home + /var/lib/docker/volumes + +788d16c0 2025-05-18 03:00:28 arr-stack daily snapshot /etc 8.460 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +b303861b 2025-04-30 04:09:47 services monthly snapshot /etc 122.770 GiB + /home + /var/lib/docker/volumes + +04a5529f 2025-05-11 04:35:57 services weekly snapshot /etc 123.654 GiB + /home + /var/lib/docker/volumes + +5b6184c3 2025-05-16 04:22:18 services daily snapshot /etc 124.112 GiB + /home + /var/lib/docker/volumes + +8822a2c3 2025-05-17 04:38:23 services daily snapshot /etc 124.122 GiB + /home + /var/lib/docker/volumes + +acf45b97 2025-05-18 04:28:16 services daily snapshot /etc 124.123 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +e9d918c0 2025-05-15 04:39:36 services /etc 124.083 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +86f10b59 2025-04-30 04:00:06 morganna monthly snapshot /etc 1.094 GiB + /home + /var/lib/docker/volumes + +76e3ed05 2025-05-11 04:00:08 morganna weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/volumes + +ede40401 2025-05-15 04:00:07 morganna daily snapshot /etc 1.098 GiB + /home + /var/lib/docker/volumes + +30a40b7b 2025-05-16 04:00:07 morganna daily snapshot /etc 1.099 GiB + /home + /var/lib/docker/volumes + +7866e7ba 2025-05-17 04:00:08 morganna daily snapshot /etc 1.099 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 39 snapshots +[0:27] 100.00% 39 / 39 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:02] 100.00% 10561 / 10561 packs processed + +to repack: 2382 blobs / 109.568 MiB +this removes: 1185 blobs / 94.546 MiB +to delete: 0 blobs / 0 B +total prune: 1185 blobs / 94.546 MiB +remaining: 770189 blobs / 170.929 GiB +unused size after prune: 8.538 GiB (5.00% of remaining size) + +repacking packs +[0:03] 100.00% 9 / 9 packs repacked +rebuilding index +[0:02] 100.00% 18 / 18 indexes processed +[0:00] 100.00% 8 / 8 old indexes deleted +removing 9 old packs +[0:00] 100.00% 9 / 9 files deleted +done +2025-05-18_03:30:01 Backup script done +2025-05-19_03:30:02 Starting backup +User: ccalifice +2025-05-19_03:30:02 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/maybe-finance +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/typebot +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-19_03:30:02 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot acf45b97 + +Files: 76 new, 535 changed, 156692 unmodified +Dirs: 23 new, 197 changed, 38143 unmodified +Added to the repository: 418.164 MiB (123.353 MiB stored) + +processed 157303 files, 124.134 GiB in 0:16 +snapshot 573d048a saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/maybe-finance +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/typebot +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-19_03:30:02 Backup complete. +2025-05-19_03:30:02 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +f5564faa 2025-04-30 03:00:35 arr-stack monthly snapshot /etc 8.732 GiB + /home + /var/lib/docker/volumes + +3f44b25b 2025-05-17 03:00:26 arr-stack daily snapshot /etc 8.461 GiB + /home + /var/lib/docker/volumes + +788d16c0 2025-05-18 03:00:28 arr-stack daily snapshot /etc 8.460 GiB + weekly snapshot /home + /var/lib/docker/volumes + +1fda5f93 2025-05-19 03:00:28 arr-stack daily snapshot /etc 8.466 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +5 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +b303861b 2025-04-30 04:09:47 services monthly snapshot /etc 122.770 GiB + /home + /var/lib/docker/volumes + +8822a2c3 2025-05-17 04:38:23 services daily snapshot /etc 124.122 GiB + /home + /var/lib/docker/volumes + +acf45b97 2025-05-18 04:28:16 services daily snapshot /etc 124.123 GiB + weekly snapshot /home + /var/lib/docker/volumes + +573d048a 2025-05-19 04:36:54 services daily snapshot /etc 124.134 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +5 snapshots + +remove 2 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +04a5529f 2025-05-11 04:35:57 services /etc 123.654 GiB + /home + /var/lib/docker/volumes + +5b6184c3 2025-05-16 04:22:18 services /etc 124.112 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +2 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +86f10b59 2025-04-30 04:00:06 morganna monthly snapshot /etc 1.094 GiB + /home + /var/lib/docker/volumes + +76e3ed05 2025-05-11 04:00:08 morganna weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/volumes + +ede40401 2025-05-15 04:00:07 morganna daily snapshot /etc 1.098 GiB + /home + /var/lib/docker/volumes + +30a40b7b 2025-05-16 04:00:07 morganna daily snapshot /etc 1.099 GiB + /home + /var/lib/docker/volumes + +7866e7ba 2025-05-17 04:00:08 morganna daily snapshot /etc 1.099 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +[0:00] 100.00% 2 / 2 files deleted +2 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 37 snapshots +[0:28] 100.00% 37 / 37 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:01] 100.00% 10563 / 10563 packs processed + +to repack: 5902 blobs / 258.846 MiB +this removes: 2358 blobs / 231.229 MiB +to delete: 150 blobs / 74.285 MiB +total prune: 2508 blobs / 305.513 MiB +remaining: 768462 blobs / 170.737 GiB +unused size after prune: 8.535 GiB (5.00% of remaining size) + +repacking packs +[0:06] 100.00% 20 / 20 packs repacked +rebuilding index +[0:02] 100.00% 17 / 17 indexes processed +[0:00] 100.00% 9 / 9 old indexes deleted +removing 25 old packs +[0:00] 100.00% 25 / 25 files deleted +done +2025-05-19_03:30:02 Backup script done +2025-05-20_03:30:01 Starting backup +User: ccalifice +2025-05-20_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/maybe-finance +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/typebot +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-20_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 573d048a + +Files: 165 new, 514 changed, 156337 unmodified +Dirs: 32 new, 255 changed, 38097 unmodified +Added to the repository: 443.974 MiB (138.610 MiB stored) + +processed 157016 files, 124.148 GiB in 0:18 +snapshot b6ea4603 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/maybe-finance +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/typebot +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-20_03:30:01 Backup complete. +2025-05-20_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +f5564faa 2025-04-30 03:00:35 arr-stack monthly snapshot /etc 8.732 GiB + /home + /var/lib/docker/volumes + +788d16c0 2025-05-18 03:00:28 arr-stack daily snapshot /etc 8.460 GiB + weekly snapshot /home + /var/lib/docker/volumes + +1fda5f93 2025-05-19 03:00:28 arr-stack daily snapshot /etc 8.466 GiB + /home + /var/lib/docker/volumes + +72b8fc96 2025-05-20 03:00:28 arr-stack daily snapshot /etc 8.467 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +5 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +b303861b 2025-04-30 04:09:47 services monthly snapshot /etc 122.770 GiB + /home + /var/lib/docker/volumes + +acf45b97 2025-05-18 04:28:16 services daily snapshot /etc 124.123 GiB + weekly snapshot /home + /var/lib/docker/volumes + +573d048a 2025-05-19 04:36:54 services daily snapshot /etc 124.134 GiB + /home + /var/lib/docker/volumes + +b6ea4603 2025-05-20 04:27:48 services daily snapshot /etc 124.148 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +5 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +8822a2c3 2025-05-17 04:38:23 services /etc 124.122 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +86f10b59 2025-04-30 04:00:06 morganna monthly snapshot /etc 1.094 GiB + /home + /var/lib/docker/volumes + +76e3ed05 2025-05-11 04:00:08 morganna weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/volumes + +ede40401 2025-05-15 04:00:07 morganna daily snapshot /etc 1.098 GiB + /home + /var/lib/docker/volumes + +30a40b7b 2025-05-16 04:00:07 morganna daily snapshot /etc 1.099 GiB + /home + /var/lib/docker/volumes + +7866e7ba 2025-05-17 04:00:08 morganna daily snapshot /etc 1.099 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 37 snapshots +[0:27] 100.00% 37 / 37 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:01] 100.00% 10553 / 10553 packs processed + +to repack: 3714 blobs / 116.860 MiB +this removes: 1018 blobs / 101.297 MiB +to delete: 132 blobs / 49.998 MiB +total prune: 1150 blobs / 151.294 MiB +remaining: 768431 blobs / 170.726 GiB +unused size after prune: 8.535 GiB (5.00% of remaining size) + +repacking packs +[0:03] 100.00% 10 / 10 packs repacked +rebuilding index +[0:01] 100.00% 17 / 17 indexes processed +[0:00] 100.00% 7 / 7 old indexes deleted +removing 13 old packs +[0:00] 100.00% 13 / 13 files deleted +done +2025-05-20_03:30:01 Backup script done +2025-05-21_03:30:01 Starting backup +User: ccalifice +2025-05-21_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/maybe-finance +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/typebot +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-21_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot b6ea4603 + +Files: 149 new, 779 changed, 155783 unmodified +Dirs: 33 new, 231 changed, 38140 unmodified +Added to the repository: 482.278 MiB (156.986 MiB stored) + +processed 156711 files, 124.124 GiB in 0:17 +snapshot f357757a saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/maybe-finance +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/typebot +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-21_03:30:01 Backup complete. +2025-05-21_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +f5564faa 2025-04-30 03:00:35 arr-stack monthly snapshot /etc 8.732 GiB + /home + /var/lib/docker/volumes + +788d16c0 2025-05-18 03:00:28 arr-stack weekly snapshot /etc 8.460 GiB + /home + /var/lib/docker/volumes + +1fda5f93 2025-05-19 03:00:28 arr-stack daily snapshot /etc 8.466 GiB + /home + /var/lib/docker/volumes + +72b8fc96 2025-05-20 03:00:28 arr-stack daily snapshot /etc 8.467 GiB + /home + /var/lib/docker/volumes + +ecdb63c0 2025-05-21 03:00:28 arr-stack daily snapshot /etc 8.477 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +b303861b 2025-04-30 04:09:47 services monthly snapshot /etc 122.770 GiB + /home + /var/lib/docker/volumes + +acf45b97 2025-05-18 04:28:16 services weekly snapshot /etc 124.123 GiB + /home + /var/lib/docker/volumes + +573d048a 2025-05-19 04:36:54 services daily snapshot /etc 124.134 GiB + /home + /var/lib/docker/volumes + +b6ea4603 2025-05-20 04:27:48 services daily snapshot /etc 124.148 GiB + /home + /var/lib/docker/volumes + +f357757a 2025-05-21 04:26:48 services daily snapshot /etc 124.124 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +86f10b59 2025-04-30 04:00:06 morganna monthly snapshot /etc 1.094 GiB + /home + /var/lib/docker/volumes + +76e3ed05 2025-05-11 04:00:08 morganna weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/volumes + +ede40401 2025-05-15 04:00:07 morganna daily snapshot /etc 1.098 GiB + /home + /var/lib/docker/volumes + +30a40b7b 2025-05-16 04:00:07 morganna daily snapshot /etc 1.099 GiB + /home + /var/lib/docker/volumes + +7866e7ba 2025-05-17 04:00:08 morganna daily snapshot /etc 1.099 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +2025-05-21_03:30:01 Backup script done +2025-05-22_03:30:01 Starting backup +User: ccalifice +2025-05-22_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/maybe-finance +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/typebot +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-22_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot f357757a + +Files: 154 new, 779 changed, 153307 unmodified +Dirs: 33 new, 246 changed, 38151 unmodified +Added to the repository: 490.502 MiB (156.285 MiB stored) + +processed 154240 files, 124.140 GiB in 0:24 +snapshot 266aa0f6 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/maybe-finance +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/typebot +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-22_03:30:01 Backup complete. +2025-05-22_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +f5564faa 2025-04-30 03:00:35 arr-stack monthly snapshot /etc 8.732 GiB + /home + /var/lib/docker/volumes + +788d16c0 2025-05-18 03:00:28 arr-stack weekly snapshot /etc 8.460 GiB + /home + /var/lib/docker/volumes + +72b8fc96 2025-05-20 03:00:28 arr-stack daily snapshot /etc 8.467 GiB + /home + /var/lib/docker/volumes + +ecdb63c0 2025-05-21 03:00:28 arr-stack daily snapshot /etc 8.477 GiB + /home + /var/lib/docker/volumes + +d5a17123 2025-05-22 03:00:30 arr-stack daily snapshot /etc 8.588 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +b303861b 2025-04-30 04:09:47 services monthly snapshot /etc 122.770 GiB + /home + /var/lib/docker/volumes + +acf45b97 2025-05-18 04:28:16 services weekly snapshot /etc 124.123 GiB + /home + /var/lib/docker/volumes + +b6ea4603 2025-05-20 04:27:48 services daily snapshot /etc 124.148 GiB + /home + /var/lib/docker/volumes + +f357757a 2025-05-21 04:26:48 services daily snapshot /etc 124.124 GiB + /home + /var/lib/docker/volumes + +266aa0f6 2025-05-22 04:45:31 services daily snapshot /etc 124.140 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +573d048a 2025-05-19 04:36:54 services /etc 124.134 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +86f10b59 2025-04-30 04:00:06 morganna monthly snapshot /etc 1.094 GiB + /home + /var/lib/docker/volumes + +76e3ed05 2025-05-11 04:00:08 morganna weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/volumes + +ede40401 2025-05-15 04:00:07 morganna daily snapshot /etc 1.098 GiB + /home + /var/lib/docker/volumes + +30a40b7b 2025-05-16 04:00:07 morganna daily snapshot /etc 1.099 GiB + /home + /var/lib/docker/volumes + +7866e7ba 2025-05-17 04:00:08 morganna daily snapshot /etc 1.099 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 39 snapshots +[0:33] 100.00% 39 / 39 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:01] 100.00% 10577 / 10577 packs processed + +to repack: 3242 blobs / 103.029 MiB +this removes: 3179 blobs / 90.243 MiB +to delete: 0 blobs / 0 B +total prune: 3179 blobs / 90.243 MiB +remaining: 768893 blobs / 171.095 GiB +unused size after prune: 8.546 GiB (4.99% of remaining size) + +repacking packs +[0:03] 100.00% 8 / 8 packs repacked +rebuilding index +[0:02] 100.00% 18 / 18 indexes processed +[0:00] 100.00% 8 / 8 old indexes deleted +removing 8 old packs +[0:00] 100.00% 8 / 8 files deleted +done +2025-05-22_03:30:01 Backup script done +2025-05-23_03:30:01 Starting backup +User: ccalifice +2025-05-23_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/maybe-finance +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/typebot +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-23_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 266aa0f6 + +Files: 351 new, 757 changed, 151895 unmodified +Dirs: 27 new, 247 changed, 38165 unmodified +Added to the repository: 513.325 MiB (176.589 MiB stored) + +processed 153003 files, 124.164 GiB in 0:17 +snapshot f56e0a36 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/maybe-finance +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/typebot +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-23_03:30:01 Backup complete. +2025-05-23_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +f5564faa 2025-04-30 03:00:35 arr-stack monthly snapshot /etc 8.732 GiB + /home + /var/lib/docker/volumes + +788d16c0 2025-05-18 03:00:28 arr-stack weekly snapshot /etc 8.460 GiB + /home + /var/lib/docker/volumes + +ecdb63c0 2025-05-21 03:00:28 arr-stack daily snapshot /etc 8.477 GiB + /home + /var/lib/docker/volumes + +d5a17123 2025-05-22 03:00:30 arr-stack daily snapshot /etc 8.588 GiB + /home + /var/lib/docker/volumes + +1f6546b4 2025-05-23 03:00:29 arr-stack daily snapshot /etc 8.592 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +b303861b 2025-04-30 04:09:47 services monthly snapshot /etc 122.770 GiB + /home + /var/lib/docker/volumes + +acf45b97 2025-05-18 04:28:16 services weekly snapshot /etc 124.123 GiB + /home + /var/lib/docker/volumes + +f357757a 2025-05-21 04:26:48 services daily snapshot /etc 124.124 GiB + /home + /var/lib/docker/volumes + +266aa0f6 2025-05-22 04:45:31 services daily snapshot /etc 124.140 GiB + /home + /var/lib/docker/volumes + +f56e0a36 2025-05-23 04:27:42 services daily snapshot /etc 124.164 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +b6ea4603 2025-05-20 04:27:48 services /etc 124.148 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +86f10b59 2025-04-30 04:00:06 morganna monthly snapshot /etc 1.094 GiB + /home + /var/lib/docker/volumes + +76e3ed05 2025-05-11 04:00:08 morganna weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/volumes + +ede40401 2025-05-15 04:00:07 morganna daily snapshot /etc 1.098 GiB + /home + /var/lib/docker/volumes + +30a40b7b 2025-05-16 04:00:07 morganna daily snapshot /etc 1.099 GiB + /home + /var/lib/docker/volumes + +7866e7ba 2025-05-17 04:00:08 morganna daily snapshot /etc 1.099 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 39 snapshots +[0:31] 100.00% 39 / 39 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:01] 100.00% 10584 / 10584 packs processed + +to repack: 1365 blobs / 99.792 MiB +this removes: 1136 blobs / 87.932 MiB +to delete: 62 blobs / 20.547 MiB +total prune: 1198 blobs / 108.479 MiB +remaining: 769516 blobs / 171.172 GiB +unused size after prune: 8.551 GiB (5.00% of remaining size) + +repacking packs +[0:02] 100.00% 7 / 7 packs repacked +rebuilding index +[0:02] 100.00% 18 / 18 indexes processed +[0:00] 100.00% 7 / 7 old indexes deleted +removing 9 old packs +[0:00] 100.00% 9 / 9 files deleted +done +2025-05-23_03:30:01 Backup script done +2025-05-24_03:30:01 Starting backup +User: ccalifice +2025-05-24_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/maybe-finance +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/typebot +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-24_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot f56e0a36 + +Files: 294 new, 890 changed, 150429 unmodified +Dirs: 24 new, 273 changed, 38152 unmodified +Added to the repository: 532.001 MiB (180.454 MiB stored) + +processed 151613 files, 124.137 GiB in 0:20 +snapshot 9d82c829 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/maybe-finance +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/typebot +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-24_03:30:01 Backup complete. +2025-05-24_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +f5564faa 2025-04-30 03:00:35 arr-stack monthly snapshot /etc 8.732 GiB + /home + /var/lib/docker/volumes + +788d16c0 2025-05-18 03:00:28 arr-stack weekly snapshot /etc 8.460 GiB + /home + /var/lib/docker/volumes + +d5a17123 2025-05-22 03:00:30 arr-stack daily snapshot /etc 8.588 GiB + /home + /var/lib/docker/volumes + +1f6546b4 2025-05-23 03:00:29 arr-stack daily snapshot /etc 8.592 GiB + /home + /var/lib/docker/volumes + +17e69a04 2025-05-24 03:00:29 arr-stack daily snapshot /etc 8.588 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +b303861b 2025-04-30 04:09:47 services monthly snapshot /etc 122.770 GiB + /home + /var/lib/docker/volumes + +acf45b97 2025-05-18 04:28:16 services weekly snapshot /etc 124.123 GiB + /home + /var/lib/docker/volumes + +266aa0f6 2025-05-22 04:45:31 services daily snapshot /etc 124.140 GiB + /home + /var/lib/docker/volumes + +f56e0a36 2025-05-23 04:27:42 services daily snapshot /etc 124.164 GiB + /home + /var/lib/docker/volumes + +9d82c829 2025-05-24 05:37:42 services daily snapshot /etc 124.137 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +f357757a 2025-05-21 04:26:48 services /etc 124.124 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +86f10b59 2025-04-30 04:00:06 morganna monthly snapshot /etc 1.094 GiB + /home + /var/lib/docker/volumes + +76e3ed05 2025-05-11 04:00:08 morganna weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/volumes + +ede40401 2025-05-15 04:00:07 morganna daily snapshot /etc 1.098 GiB + /home + /var/lib/docker/volumes + +30a40b7b 2025-05-16 04:00:07 morganna daily snapshot /etc 1.099 GiB + /home + /var/lib/docker/volumes + +7866e7ba 2025-05-17 04:00:08 morganna daily snapshot /etc 1.099 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 39 snapshots +[0:31] 100.00% 39 / 39 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:01] 100.00% 10590 / 10590 packs processed + +to repack: 1050 blobs / 115.436 MiB +this removes: 873 blobs / 100.427 MiB +to delete: 0 blobs / 0 B +total prune: 873 blobs / 100.427 MiB +remaining: 770300 blobs / 171.246 GiB +unused size after prune: 8.553 GiB (4.99% of remaining size) + +repacking packs +[0:03] 100.00% 10 / 10 packs repacked +rebuilding index +[0:03] 100.00% 18 / 18 indexes processed +[0:00] 100.00% 8 / 8 old indexes deleted +removing 10 old packs +[0:00] 100.00% 10 / 10 files deleted +done +2025-05-24_03:30:01 Backup script done +2025-05-25_03:30:01 Starting backup +User: ccalifice +2025-05-25_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/maybe-finance +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/typebot +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-25_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 9d82c829 + +Files: 136 new, 833 changed, 150434 unmodified +Dirs: 22 new, 205 changed, 38234 unmodified +Added to the repository: 484.180 MiB (154.708 MiB stored) + +processed 151403 files, 124.150 GiB in 0:17 +snapshot 4730aa81 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/maybe-finance +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/typebot +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-25_03:30:01 Backup complete. +2025-05-25_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +b303861b 2025-04-30 04:09:47 services monthly snapshot /etc 122.770 GiB + /home + /var/lib/docker/volumes + +acf45b97 2025-05-18 04:28:16 services weekly snapshot /etc 124.123 GiB + /home + /var/lib/docker/volumes + +f56e0a36 2025-05-23 04:27:42 services daily snapshot /etc 124.164 GiB + /home + /var/lib/docker/volumes + +9d82c829 2025-05-24 05:37:42 services daily snapshot /etc 124.137 GiB + /home + /var/lib/docker/volumes + +4730aa81 2025-05-25 04:44:48 services daily snapshot /etc 124.150 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +266aa0f6 2025-05-22 04:45:31 services /etc 124.140 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +86f10b59 2025-04-30 04:00:06 morganna monthly snapshot /etc 1.094 GiB + /home + /var/lib/docker/volumes + +30a40b7b 2025-05-16 04:00:07 morganna daily snapshot /etc 1.099 GiB + /home + /var/lib/docker/volumes + +7866e7ba 2025-05-17 04:00:08 morganna daily snapshot /etc 1.099 GiB + weekly snapshot /home + /var/lib/docker/volumes + +77ba2c3d 2025-05-25 04:00:07 morganna daily snapshot /etc 1.718 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +5 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +f5564faa 2025-04-30 03:00:35 arr-stack monthly snapshot /etc 8.732 GiB + /home + /var/lib/docker/volumes + +788d16c0 2025-05-18 03:00:28 arr-stack weekly snapshot /etc 8.460 GiB + /home + /var/lib/docker/volumes + +1f6546b4 2025-05-23 03:00:29 arr-stack daily snapshot /etc 8.592 GiB + /home + /var/lib/docker/volumes + +17e69a04 2025-05-24 03:00:29 arr-stack daily snapshot /etc 8.588 GiB + /home + /var/lib/docker/volumes + +6e547f43 2025-05-25 03:00:29 arr-stack daily snapshot /etc 8.591 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 38 snapshots +[0:32] 100.00% 38 / 38 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:01] 100.00% 10598 / 10598 packs processed + +to repack: 1743 blobs / 124.868 MiB +this removes: 1541 blobs / 109.977 MiB +to delete: 0 blobs / 0 B +total prune: 1541 blobs / 109.977 MiB +remaining: 773664 blobs / 171.326 GiB +unused size after prune: 8.561 GiB (5.00% of remaining size) + +repacking packs +[0:03] 100.00% 12 / 12 packs repacked +rebuilding index +[0:03] 100.00% 18 / 18 indexes processed +[0:00] 100.00% 10 / 10 old indexes deleted +removing 12 old packs +[0:00] 100.00% 12 / 12 files deleted +done +2025-05-25_03:30:01 Backup script done +2025-05-26_03:30:01 Starting backup +User: ccalifice +2025-05-26_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/maybe-finance +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/typebot +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-26_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 4730aa81 + +Files: 141 new, 880 changed, 150292 unmodified +Dirs: 24 new, 202 changed, 38251 unmodified +Added to the repository: 498.923 MiB (162.619 MiB stored) + +processed 151313 files, 124.212 GiB in 0:18 +snapshot 3382c333 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/maybe-finance +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/typebot +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-26_03:30:01 Backup complete. +2025-05-26_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +f5564faa 2025-04-30 03:00:35 arr-stack monthly snapshot /etc 8.732 GiB + /home + /var/lib/docker/volumes + +17e69a04 2025-05-24 03:00:29 arr-stack daily snapshot /etc 8.588 GiB + /home + /var/lib/docker/volumes + +6e547f43 2025-05-25 03:00:29 arr-stack daily snapshot /etc 8.591 GiB + weekly snapshot /home + /var/lib/docker/volumes + +ae172b93 2025-05-26 03:00:29 arr-stack daily snapshot /etc 8.596 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +5 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +b303861b 2025-04-30 04:09:47 services monthly snapshot /etc 122.770 GiB + /home + /var/lib/docker/volumes + +9d82c829 2025-05-24 05:37:42 services daily snapshot /etc 124.137 GiB + /home + /var/lib/docker/volumes + +4730aa81 2025-05-25 04:44:48 services daily snapshot /etc 124.150 GiB + weekly snapshot /home + /var/lib/docker/volumes + +3382c333 2025-05-26 04:35:25 services daily snapshot /etc 124.212 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +5 snapshots + +remove 2 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +acf45b97 2025-05-18 04:28:16 services /etc 124.123 GiB + /home + /var/lib/docker/volumes + +f56e0a36 2025-05-23 04:27:42 services /etc 124.164 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +2 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +86f10b59 2025-04-30 04:00:06 morganna monthly snapshot /etc 1.094 GiB + /home + /var/lib/docker/volumes + +7866e7ba 2025-05-17 04:00:08 morganna daily snapshot /etc 1.099 GiB + /home + /var/lib/docker/volumes + +77ba2c3d 2025-05-25 04:00:07 morganna daily snapshot /etc 1.718 GiB + weekly snapshot /home + /var/lib/docker/volumes + +06323c37 2025-05-26 04:00:06 morganna daily snapshot /etc 1.718 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +5 snapshots + +[0:00] 100.00% 2 / 2 files deleted +2 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 36 snapshots +[0:28] 100.00% 36 / 36 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:01] 100.00% 10600 / 10600 packs processed + +to repack: 5556 blobs / 276.302 MiB +this removes: 2894 blobs / 259.175 MiB +to delete: 315 blobs / 212.018 MiB +total prune: 3209 blobs / 471.193 MiB +remaining: 771688 blobs / 171.014 GiB +unused size after prune: 8.538 GiB (4.99% of remaining size) + +repacking packs +[0:05] 100.00% 22 / 22 packs repacked +rebuilding index +[0:02] 100.00% 18 / 18 indexes processed +[0:00] 100.00% 10 / 10 old indexes deleted +removing 35 old packs +[0:00] 100.00% 35 / 35 files deleted +done +2025-05-26_03:30:01 Backup script done +2025-05-27_03:30:01 Starting backup +User: ccalifice +2025-05-27_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/maybe-finance +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/typebot +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-27_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 3382c333 + +Files: 141 new, 877 changed, 150327 unmodified +Dirs: 22 new, 202 changed, 38261 unmodified +Added to the repository: 542.872 MiB (176.707 MiB stored) + +processed 151345 files, 124.185 GiB in 0:17 +snapshot d003ca8b saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/maybe-finance +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/typebot +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-27_03:30:01 Backup complete. +2025-05-27_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +b303861b 2025-04-30 04:09:47 services monthly snapshot /etc 122.770 GiB + /home + /var/lib/docker/volumes + +4730aa81 2025-05-25 04:44:48 services daily snapshot /etc 124.150 GiB + weekly snapshot /home + /var/lib/docker/volumes + +3382c333 2025-05-26 04:35:25 services daily snapshot /etc 124.212 GiB + /home + /var/lib/docker/volumes + +d003ca8b 2025-05-27 05:29:52 services daily snapshot /etc 124.185 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +5 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +9d82c829 2025-05-24 05:37:42 services /etc 124.137 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +86f10b59 2025-04-30 04:00:06 morganna monthly snapshot /etc 1.094 GiB + /home + /var/lib/docker/volumes + +77ba2c3d 2025-05-25 04:00:07 morganna daily snapshot /etc 1.718 GiB + weekly snapshot /home + /var/lib/docker/volumes + +06323c37 2025-05-26 04:00:06 morganna daily snapshot /etc 1.718 GiB + /home + /var/lib/docker/volumes + +31fda1c7 2025-05-27 04:00:08 morganna daily snapshot /etc 2.061 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +5 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +f5564faa 2025-04-30 03:00:35 arr-stack monthly snapshot /etc 8.732 GiB + /home + /var/lib/docker/volumes + +6e547f43 2025-05-25 03:00:29 arr-stack daily snapshot /etc 8.591 GiB + weekly snapshot /home + /var/lib/docker/volumes + +ae172b93 2025-05-26 03:00:29 arr-stack daily snapshot /etc 8.596 GiB + /home + /var/lib/docker/volumes + +bb70b195 2025-05-27 03:00:29 arr-stack daily snapshot /etc 8.591 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +5 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 36 snapshots +[0:30] 100.00% 36 / 36 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:01] 100.00% 10588 / 10588 packs processed + +to repack: 3561 blobs / 121.235 MiB +this removes: 1090 blobs / 109.086 MiB +to delete: 45 blobs / 32.628 MiB +total prune: 1135 blobs / 141.714 MiB +remaining: 774986 blobs / 171.158 GiB +unused size after prune: 8.553 GiB (5.00% of remaining size) + +repacking packs +[0:03] 100.00% 11 / 11 packs repacked +rebuilding index +[0:03] 100.00% 18 / 18 indexes processed +[0:00] 100.00% 11 / 11 old indexes deleted +removing 13 old packs +[0:01] 100.00% 13 / 13 files deleted +done +2025-05-27_03:30:01 Backup script done +2025-05-28_03:30:01 Starting backup +User: ccalifice +2025-05-28_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/maybe-finance +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/typebot +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-28_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot d003ca8b + +Files: 193 new, 851 changed, 149939 unmodified +Dirs: 24 new, 243 changed, 38234 unmodified +Added to the repository: 559.297 MiB (177.390 MiB stored) + +processed 150983 files, 124.196 GiB in 0:18 +snapshot 027e68c8 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/maybe-finance +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/typebot +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-28_03:30:01 Backup complete. +2025-05-28_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +b303861b 2025-04-30 04:09:47 services monthly snapshot /etc 122.770 GiB + /home + /var/lib/docker/volumes + +4730aa81 2025-05-25 04:44:48 services weekly snapshot /etc 124.150 GiB + /home + /var/lib/docker/volumes + +3382c333 2025-05-26 04:35:25 services daily snapshot /etc 124.212 GiB + /home + /var/lib/docker/volumes + +d003ca8b 2025-05-27 05:29:52 services daily snapshot /etc 124.185 GiB + /home + /var/lib/docker/volumes + +027e68c8 2025-05-28 04:45:10 services daily snapshot /etc 124.196 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +86f10b59 2025-04-30 04:00:06 morganna monthly snapshot /etc 1.094 GiB + /home + /var/lib/docker/volumes + +77ba2c3d 2025-05-25 04:00:07 morganna weekly snapshot /etc 1.718 GiB + /home + /var/lib/docker/volumes + +06323c37 2025-05-26 04:00:06 morganna daily snapshot /etc 1.718 GiB + /home + /var/lib/docker/volumes + +31fda1c7 2025-05-27 04:00:08 morganna daily snapshot /etc 2.061 GiB + /home + /var/lib/docker/volumes + +a09b9cf6 2025-05-28 04:00:09 morganna daily snapshot /etc 2.103 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +f5564faa 2025-04-30 03:00:35 arr-stack monthly snapshot /etc 8.732 GiB + /home + /var/lib/docker/volumes + +6e547f43 2025-05-25 03:00:29 arr-stack weekly snapshot /etc 8.591 GiB + /home + /var/lib/docker/volumes + +ae172b93 2025-05-26 03:00:29 arr-stack daily snapshot /etc 8.596 GiB + /home + /var/lib/docker/volumes + +bb70b195 2025-05-27 03:00:29 arr-stack daily snapshot /etc 8.591 GiB + /home + /var/lib/docker/volumes + +a41ae7f9 2025-05-28 03:00:28 arr-stack daily snapshot /etc 8.591 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +2025-05-28_03:30:01 Backup script done +2025-05-29_03:30:01 Starting backup +User: ccalifice +2025-05-29_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/maybe-finance +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/typebot +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-29_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 027e68c8 + +Files: 173 new, 874 changed, 149898 unmodified +Dirs: 24 new, 202 changed, 38289 unmodified +Added to the repository: 590.410 MiB (183.983 MiB stored) + +processed 150945 files, 124.205 GiB in 0:18 +snapshot 23de19a9 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/maybe-finance +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/typebot +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-29_03:30:01 Backup complete. +2025-05-29_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +f5564faa 2025-04-30 03:00:35 arr-stack monthly snapshot /etc 8.732 GiB + /home + /var/lib/docker/volumes + +6e547f43 2025-05-25 03:00:29 arr-stack weekly snapshot /etc 8.591 GiB + /home + /var/lib/docker/volumes + +bb70b195 2025-05-27 03:00:29 arr-stack daily snapshot /etc 8.591 GiB + /home + /var/lib/docker/volumes + +a41ae7f9 2025-05-28 03:00:28 arr-stack daily snapshot /etc 8.591 GiB + /home + /var/lib/docker/volumes + +8eb192d9 2025-05-29 03:00:28 arr-stack daily snapshot /etc 8.569 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +b303861b 2025-04-30 04:09:47 services monthly snapshot /etc 122.770 GiB + /home + /var/lib/docker/volumes + +4730aa81 2025-05-25 04:44:48 services weekly snapshot /etc 124.150 GiB + /home + /var/lib/docker/volumes + +d003ca8b 2025-05-27 05:29:52 services daily snapshot /etc 124.185 GiB + /home + /var/lib/docker/volumes + +027e68c8 2025-05-28 04:45:10 services daily snapshot /etc 124.196 GiB + /home + /var/lib/docker/volumes + +23de19a9 2025-05-29 05:35:21 services daily snapshot /etc 124.205 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +3382c333 2025-05-26 04:35:25 services /etc 124.212 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +86f10b59 2025-04-30 04:00:06 morganna monthly snapshot /etc 1.094 GiB + /home + /var/lib/docker/volumes + +77ba2c3d 2025-05-25 04:00:07 morganna weekly snapshot /etc 1.718 GiB + /home + /var/lib/docker/volumes + +31fda1c7 2025-05-27 04:00:08 morganna daily snapshot /etc 2.061 GiB + /home + /var/lib/docker/volumes + +a09b9cf6 2025-05-28 04:00:09 morganna daily snapshot /etc 2.103 GiB + /home + /var/lib/docker/volumes + +7746fca4 2025-05-29 04:00:08 morganna daily snapshot /etc 2.113 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 39 snapshots +[0:31] 100.00% 39 / 39 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:01] 100.00% 10603 / 10603 packs processed + +to repack: 1710 blobs / 132.526 MiB +this removes: 1470 blobs / 119.990 MiB +to delete: 0 blobs / 0 B +total prune: 1470 blobs / 119.990 MiB +remaining: 777579 blobs / 171.465 GiB +unused size after prune: 8.570 GiB (5.00% of remaining size) + +repacking packs +[0:03] 100.00% 9 / 9 packs repacked +rebuilding index +[0:02] 100.00% 18 / 18 indexes processed +[0:00] 100.00% 7 / 7 old indexes deleted +removing 9 old packs +[0:00] 100.00% 9 / 9 files deleted +done +2025-05-29_03:30:01 Backup script done +2025-05-30_03:30:01 Starting backup +User: ccalifice +2025-05-30_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/maybe-finance +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/typebot +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-30_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 23de19a9 + +Files: 314 new, 928 changed, 146827 unmodified +Dirs: 21 new, 213 changed, 38288 unmodified +Added to the repository: 633.235 MiB (214.906 MiB stored) + +processed 148069 files, 124.182 GiB in 0:19 +snapshot d7d56631 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/maybe-finance +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/typebot +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-30_03:30:01 Backup complete. +2025-05-30_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +f5564faa 2025-04-30 03:00:35 arr-stack monthly snapshot /etc 8.732 GiB + /home + /var/lib/docker/volumes + +6e547f43 2025-05-25 03:00:29 arr-stack weekly snapshot /etc 8.591 GiB + /home + /var/lib/docker/volumes + +a41ae7f9 2025-05-28 03:00:28 arr-stack daily snapshot /etc 8.591 GiB + /home + /var/lib/docker/volumes + +8eb192d9 2025-05-29 03:00:28 arr-stack daily snapshot /etc 8.569 GiB + /home + /var/lib/docker/volumes + +fd0a8c17 2025-05-30 03:00:29 arr-stack daily snapshot /etc 8.572 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +b303861b 2025-04-30 04:09:47 services monthly snapshot /etc 122.770 GiB + /home + /var/lib/docker/volumes + +4730aa81 2025-05-25 04:44:48 services weekly snapshot /etc 124.150 GiB + /home + /var/lib/docker/volumes + +027e68c8 2025-05-28 04:45:10 services daily snapshot /etc 124.196 GiB + /home + /var/lib/docker/volumes + +23de19a9 2025-05-29 05:35:21 services daily snapshot /etc 124.205 GiB + /home + /var/lib/docker/volumes + +d7d56631 2025-05-30 05:40:07 services daily snapshot /etc 124.182 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +d003ca8b 2025-05-27 05:29:52 services /etc 124.185 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +86f10b59 2025-04-30 04:00:06 morganna monthly snapshot /etc 1.094 GiB + /home + /var/lib/docker/volumes + +77ba2c3d 2025-05-25 04:00:07 morganna weekly snapshot /etc 1.718 GiB + /home + /var/lib/docker/volumes + +a09b9cf6 2025-05-28 04:00:09 morganna daily snapshot /etc 2.103 GiB + /home + /var/lib/docker/volumes + +7746fca4 2025-05-29 04:00:08 morganna daily snapshot /etc 2.113 GiB + /home + /var/lib/docker/volumes + +1a1afc44 2025-05-30 04:00:08 morganna daily snapshot /etc 2.115 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 39 snapshots +[0:31] 100.00% 39 / 39 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:01] 100.00% 10616 / 10616 packs processed + +to repack: 1624 blobs / 129.851 MiB +this removes: 1403 blobs / 116.060 MiB +to delete: 0 blobs / 0 B +total prune: 1403 blobs / 116.060 MiB +remaining: 778310 blobs / 171.579 GiB +unused size after prune: 8.576 GiB (5.00% of remaining size) + +repacking packs +[0:03] 100.00% 9 / 9 packs repacked +rebuilding index +[0:02] 100.00% 18 / 18 indexes processed +[0:00] 100.00% 7 / 7 old indexes deleted +removing 9 old packs +[0:00] 100.00% 9 / 9 files deleted +done +2025-05-30_03:30:01 Backup script done +2025-05-31_03:30:01 Starting backup +User: ccalifice +2025-05-31_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/maybe-finance +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/typebot +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-31_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot d7d56631 + +Files: 152 new, 573 changed, 144682 unmodified +Dirs: 23 new, 202 changed, 38313 unmodified +Added to the repository: 511.465 MiB (153.822 MiB stored) + +processed 145407 files, 124.194 GiB in 0:17 +snapshot bd50686b saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/maybe-finance +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/typebot +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-05-31_03:30:01 Backup complete. +2025-05-31_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +86f10b59 2025-04-30 04:00:06 morganna monthly snapshot /etc 1.094 GiB + /home + /var/lib/docker/volumes + +77ba2c3d 2025-05-25 04:00:07 morganna weekly snapshot /etc 1.718 GiB + /home + /var/lib/docker/volumes + +7746fca4 2025-05-29 04:00:08 morganna daily snapshot /etc 2.113 GiB + /home + /var/lib/docker/volumes + +1a1afc44 2025-05-30 04:00:08 morganna daily snapshot /etc 2.115 GiB + /home + /var/lib/docker/volumes + +bd00342a 2025-05-31 04:00:07 morganna daily snapshot /etc 2.127 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +b303861b 2025-04-30 04:09:47 services monthly snapshot /etc 122.770 GiB + /home + /var/lib/docker/volumes + +4730aa81 2025-05-25 04:44:48 services weekly snapshot /etc 124.150 GiB + /home + /var/lib/docker/volumes + +23de19a9 2025-05-29 05:35:21 services daily snapshot /etc 124.205 GiB + /home + /var/lib/docker/volumes + +d7d56631 2025-05-30 05:40:07 services daily snapshot /etc 124.182 GiB + /home + /var/lib/docker/volumes + +bd50686b 2025-05-31 04:34:38 services daily snapshot /etc 124.194 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +027e68c8 2025-05-28 04:45:10 services /etc 124.196 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +f5564faa 2025-04-30 03:00:35 arr-stack monthly snapshot /etc 8.732 GiB + /home + /var/lib/docker/volumes + +6e547f43 2025-05-25 03:00:29 arr-stack weekly snapshot /etc 8.591 GiB + /home + /var/lib/docker/volumes + +8eb192d9 2025-05-29 03:00:28 arr-stack daily snapshot /etc 8.569 GiB + /home + /var/lib/docker/volumes + +fd0a8c17 2025-05-30 03:00:29 arr-stack daily snapshot /etc 8.572 GiB + /home + /var/lib/docker/volumes + +c03c4c08 2025-05-31 03:00:28 arr-stack daily snapshot /etc 8.459 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 39 snapshots +[0:28] 100.00% 39 / 39 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:01] 100.00% 10627 / 10627 packs processed + +to repack: 1530 blobs / 143.162 MiB +this removes: 1295 blobs / 125.837 MiB +to delete: 0 blobs / 0 B +total prune: 1295 blobs / 125.837 MiB +remaining: 778709 blobs / 171.648 GiB +unused size after prune: 8.580 GiB (5.00% of remaining size) + +repacking packs +[0:03] 100.00% 11 / 11 packs repacked +rebuilding index +[0:01] 100.00% 18 / 18 indexes processed +[0:00] 100.00% 9 / 9 old indexes deleted +removing 11 old packs +[0:00] 100.00% 11 / 11 files deleted +done +2025-05-31_03:30:01 Backup script done +2025-06-01_03:30:01 Starting backup +User: ccalifice +2025-06-01_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/maybe-finance +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/typebot +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-06-01_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot bd50686b + +Files: 94 new, 774 changed, 141560 unmodified +Dirs: 26 new, 203 changed, 38325 unmodified +Added to the repository: 511.072 MiB (158.113 MiB stored) + +processed 142428 files, 124.199 GiB in 0:17 +snapshot 62c961bf saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/maybe-finance +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/typebot +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-06-01_03:30:01 Backup complete. +2025-06-01_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +4730aa81 2025-05-25 04:44:48 services weekly snapshot /etc 124.150 GiB + /home + /var/lib/docker/volumes + +d7d56631 2025-05-30 05:40:07 services daily snapshot /etc 124.182 GiB + /home + /var/lib/docker/volumes + +bd50686b 2025-05-31 04:34:38 services daily snapshot /etc 124.194 GiB + monthly snapshot /home + /var/lib/docker/volumes + +62c961bf 2025-06-01 04:41:03 services daily snapshot /etc 124.199 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +5 snapshots + +remove 2 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +b303861b 2025-04-30 04:09:47 services /etc 122.770 GiB + /home + /var/lib/docker/volumes + +23de19a9 2025-05-29 05:35:21 services /etc 124.205 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +2 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +6e547f43 2025-05-25 03:00:29 arr-stack weekly snapshot /etc 8.591 GiB + /home + /var/lib/docker/volumes + +fd0a8c17 2025-05-30 03:00:29 arr-stack daily snapshot /etc 8.572 GiB + /home + /var/lib/docker/volumes + +c03c4c08 2025-05-31 03:00:28 arr-stack daily snapshot /etc 8.459 GiB + monthly snapshot /home + /var/lib/docker/volumes + +e1f500c8 2025-06-01 03:00:28 arr-stack daily snapshot /etc 8.478 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +5 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +77ba2c3d 2025-05-25 04:00:07 morganna weekly snapshot /etc 1.718 GiB + /home + /var/lib/docker/volumes + +1a1afc44 2025-05-30 04:00:08 morganna daily snapshot /etc 2.115 GiB + /home + /var/lib/docker/volumes + +bd00342a 2025-05-31 04:00:07 morganna daily snapshot /etc 2.127 GiB + monthly snapshot /home + /var/lib/docker/volumes + +46fb4686 2025-06-01 04:00:08 morganna daily snapshot /etc 2.137 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +5 snapshots + +[0:00] 100.00% 2 / 2 files deleted +2 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 36 snapshots +[0:28] 100.00% 36 / 36 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:01] 100.00% 10615 / 10615 packs processed + +to repack: 7417 blobs / 312.606 MiB +this removes: 4007 blobs / 281.615 MiB +to delete: 263 blobs / 95.173 MiB +total prune: 4270 blobs / 376.788 MiB +remaining: 774748 blobs / 171.337 GiB +unused size after prune: 8.557 GiB (4.99% of remaining size) + +repacking packs +[0:05] 100.00% 22 / 22 packs repacked +rebuilding index +[0:02] 100.00% 18 / 18 indexes processed +[0:00] 100.00% 16 / 16 old indexes deleted +removing 28 old packs +[0:00] 100.00% 28 / 28 files deleted +done +2025-06-01_03:30:01 Backup script done +2025-06-02_03:30:01 Starting backup +User: ccalifice +2025-06-02_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/maybe-finance +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/typebot +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-06-02_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 62c961bf + +Files: 104 new, 776 changed, 141517 unmodified +Dirs: 24 new, 193 changed, 38348 unmodified +Added to the repository: 543.228 MiB (168.949 MiB stored) + +processed 142397 files, 124.172 GiB in 0:18 +snapshot 0fd5f373 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/maybe-finance +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/typebot +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-06-02_03:30:01 Backup complete. +2025-06-02_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 4 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +bd50686b 2025-05-31 04:34:38 services daily snapshot /etc 124.194 GiB + monthly snapshot /home + /var/lib/docker/volumes + +62c961bf 2025-06-01 04:41:03 services daily snapshot /etc 124.199 GiB + weekly snapshot /home + /var/lib/docker/volumes + +0fd5f373 2025-06-02 04:47:22 services daily snapshot /etc 124.172 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +4 snapshots + +remove 2 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +4730aa81 2025-05-25 04:44:48 services /etc 124.150 GiB + /home + /var/lib/docker/volumes + +d7d56631 2025-05-30 05:40:07 services /etc 124.182 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +2 snapshots + +keep 4 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +c03c4c08 2025-05-31 03:00:28 arr-stack daily snapshot /etc 8.459 GiB + monthly snapshot /home + /var/lib/docker/volumes + +e1f500c8 2025-06-01 03:00:28 arr-stack daily snapshot /etc 8.478 GiB + weekly snapshot /home + /var/lib/docker/volumes + +ce81f716 2025-06-02 03:00:28 arr-stack daily snapshot /etc 8.479 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +4 snapshots + +keep 4 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +bd00342a 2025-05-31 04:00:07 morganna daily snapshot /etc 2.127 GiB + monthly snapshot /home + /var/lib/docker/volumes + +46fb4686 2025-06-01 04:00:08 morganna daily snapshot /etc 2.137 GiB + weekly snapshot /home + /var/lib/docker/volumes + +40948328 2025-06-02 04:00:07 morganna daily snapshot /etc 2.147 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +4 snapshots + +[0:00] 100.00% 2 / 2 files deleted +2 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 33 snapshots +[0:26] 100.00% 33 / 33 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:01] 100.00% 10601 / 10601 packs processed + +to repack: 7270 blobs / 352.507 MiB +this removes: 2817 blobs / 314.339 MiB +to delete: 182 blobs / 151.832 MiB +total prune: 2999 blobs / 466.171 MiB +remaining: 771830 blobs / 171.003 GiB +unused size after prune: 8.547 GiB (5.00% of remaining size) + +repacking packs +[0:06] 100.00% 26 / 26 packs repacked +rebuilding index +[0:02] 100.00% 18 / 18 indexes processed +[0:00] 100.00% 13 / 13 old indexes deleted +removing 35 old packs +[0:01] 100.00% 35 / 35 files deleted +done +2025-06-02_03:30:01 Backup script done +2025-06-03_03:30:01 Starting backup +User: ccalifice +2025-06-03_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/maybe-finance +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/typebot +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-06-03_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 0fd5f373 + +Files: 115 new, 770 changed, 141211 unmodified +Dirs: 22 new, 198 changed, 38360 unmodified +Added to the repository: 504.956 MiB (157.217 MiB stored) + +processed 142096 files, 124.189 GiB in 0:17 +snapshot a922efbc saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/maybe-finance +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/typebot +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-06-03_03:30:01 Backup complete. +2025-06-03_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +bd50686b 2025-05-31 04:34:38 services monthly snapshot /etc 124.194 GiB + /home + /var/lib/docker/volumes + +62c961bf 2025-06-01 04:41:03 services daily snapshot /etc 124.199 GiB + weekly snapshot /home + /var/lib/docker/volumes + +0fd5f373 2025-06-02 04:47:22 services daily snapshot /etc 124.172 GiB + /home + /var/lib/docker/volumes + +a922efbc 2025-06-03 04:45:49 services daily snapshot /etc 124.189 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +5 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +bd00342a 2025-05-31 04:00:07 morganna monthly snapshot /etc 2.127 GiB + /home + /var/lib/docker/volumes + +46fb4686 2025-06-01 04:00:08 morganna daily snapshot /etc 2.137 GiB + weekly snapshot /home + /var/lib/docker/volumes + +40948328 2025-06-02 04:00:07 morganna daily snapshot /etc 2.147 GiB + /home + /var/lib/docker/volumes + +b038c4aa 2025-06-03 04:00:08 morganna daily snapshot /etc 2.252 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +5 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +c03c4c08 2025-05-31 03:00:28 arr-stack monthly snapshot /etc 8.459 GiB + /home + /var/lib/docker/volumes + +e1f500c8 2025-06-01 03:00:28 arr-stack daily snapshot /etc 8.478 GiB + weekly snapshot /home + /var/lib/docker/volumes + +ce81f716 2025-06-02 03:00:28 arr-stack daily snapshot /etc 8.479 GiB + /home + /var/lib/docker/volumes + +e92c5194 2025-06-03 03:00:28 arr-stack daily snapshot /etc 8.476 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +5 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +2025-06-03_03:30:01 Backup script done +2025-06-04_03:30:01 Starting backup +User: ccalifice +2025-06-04_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/maybe-finance +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/typebot +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-06-04_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot a922efbc + +Files: 135 new, 823 changed, 140379 unmodified +Dirs: 26 new, 197 changed, 38374 unmodified +Added to the repository: 567.010 MiB (177.007 MiB stored) + +processed 141337 files, 124.209 GiB in 0:18 +snapshot 97d8b3b8 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/maybe-finance +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/typebot +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-06-04_03:30:01 Backup complete. +2025-06-04_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +bd00342a 2025-05-31 04:00:07 morganna monthly snapshot /etc 2.127 GiB + /home + /var/lib/docker/volumes + +46fb4686 2025-06-01 04:00:08 morganna weekly snapshot /etc 2.137 GiB + /home + /var/lib/docker/volumes + +40948328 2025-06-02 04:00:07 morganna daily snapshot /etc 2.147 GiB + /home + /var/lib/docker/volumes + +b038c4aa 2025-06-03 04:00:08 morganna daily snapshot /etc 2.252 GiB + /home + /var/lib/docker/volumes + +60b24fae 2025-06-04 04:00:08 morganna daily snapshot /etc 2.192 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +c03c4c08 2025-05-31 03:00:28 arr-stack monthly snapshot /etc 8.459 GiB + /home + /var/lib/docker/volumes + +e1f500c8 2025-06-01 03:00:28 arr-stack weekly snapshot /etc 8.478 GiB + /home + /var/lib/docker/volumes + +ce81f716 2025-06-02 03:00:28 arr-stack daily snapshot /etc 8.479 GiB + /home + /var/lib/docker/volumes + +e92c5194 2025-06-03 03:00:28 arr-stack daily snapshot /etc 8.476 GiB + /home + /var/lib/docker/volumes + +b3c7bb0d 2025-06-04 03:00:31 arr-stack daily snapshot /etc 8.475 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +bd50686b 2025-05-31 04:34:38 services monthly snapshot /etc 124.194 GiB + /home + /var/lib/docker/volumes + +62c961bf 2025-06-01 04:41:03 services weekly snapshot /etc 124.199 GiB + /home + /var/lib/docker/volumes + +0fd5f373 2025-06-02 04:47:22 services daily snapshot /etc 124.172 GiB + /home + /var/lib/docker/volumes + +a922efbc 2025-06-03 04:45:49 services daily snapshot /etc 124.189 GiB + /home + /var/lib/docker/volumes + +97d8b3b8 2025-06-04 04:43:40 services daily snapshot /etc 124.209 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +2025-06-04_03:30:01 Backup script done +2025-06-05_03:30:01 Starting backup +User: ccalifice +2025-06-05_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/maybe-finance +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/typebot +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-06-05_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 97d8b3b8 + +Files: 110 new, 719 changed, 140393 unmodified +Dirs: 24 new, 197 changed, 38387 unmodified +Added to the repository: 560.661 MiB (176.071 MiB stored) + +processed 141222 files, 124.186 GiB in 0:17 +snapshot aa47afe0 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/maybe-finance +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/typebot +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-06-05_03:30:01 Backup complete. +2025-06-05_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +c03c4c08 2025-05-31 03:00:28 arr-stack monthly snapshot /etc 8.459 GiB + /home + /var/lib/docker/volumes + +e1f500c8 2025-06-01 03:00:28 arr-stack weekly snapshot /etc 8.478 GiB + /home + /var/lib/docker/volumes + +e92c5194 2025-06-03 03:00:28 arr-stack daily snapshot /etc 8.476 GiB + /home + /var/lib/docker/volumes + +b3c7bb0d 2025-06-04 03:00:31 arr-stack daily snapshot /etc 8.475 GiB + /home + /var/lib/docker/volumes + +af1ccdbc 2025-06-05 03:00:29 arr-stack daily snapshot /etc 8.476 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +bd50686b 2025-05-31 04:34:38 services monthly snapshot /etc 124.194 GiB + /home + /var/lib/docker/volumes + +62c961bf 2025-06-01 04:41:03 services weekly snapshot /etc 124.199 GiB + /home + /var/lib/docker/volumes + +a922efbc 2025-06-03 04:45:49 services daily snapshot /etc 124.189 GiB + /home + /var/lib/docker/volumes + +97d8b3b8 2025-06-04 04:43:40 services daily snapshot /etc 124.209 GiB + /home + /var/lib/docker/volumes + +aa47afe0 2025-06-05 04:33:08 services daily snapshot /etc 124.186 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +0fd5f373 2025-06-02 04:47:22 services /etc 124.172 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +bd00342a 2025-05-31 04:00:07 morganna monthly snapshot /etc 2.127 GiB + /home + /var/lib/docker/volumes + +46fb4686 2025-06-01 04:00:08 morganna weekly snapshot /etc 2.137 GiB + /home + /var/lib/docker/volumes + +b038c4aa 2025-06-03 04:00:08 morganna daily snapshot /etc 2.252 GiB + /home + /var/lib/docker/volumes + +60b24fae 2025-06-04 04:00:08 morganna daily snapshot /etc 2.192 GiB + /home + /var/lib/docker/volumes + +1b2dd779 2025-06-05 04:00:08 morganna daily snapshot /etc 2.202 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 39 snapshots +[0:29] 100.00% 39 / 39 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:01] 100.00% 10636 / 10636 packs processed + +to repack: 1377 blobs / 95.782 MiB +this removes: 1230 blobs / 83.055 MiB +to delete: 0 blobs / 0 B +total prune: 1230 blobs / 83.055 MiB +remaining: 777168 blobs / 171.773 GiB +unused size after prune: 8.580 GiB (5.00% of remaining size) + +repacking packs +[0:03] 100.00% 7 / 7 packs repacked +rebuilding index +[0:02] 100.00% 18 / 18 indexes processed +[0:00] 100.00% 6 / 6 old indexes deleted +removing 7 old packs +[0:00] 100.00% 7 / 7 files deleted +done +2025-06-05_03:30:01 Backup script done +2025-06-06_03:30:01 Starting backup +User: ccalifice +2025-06-06_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/maybe-finance +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/typebot +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-06-06_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot aa47afe0 + +Files: 246 new, 511 changed, 140264 unmodified +Dirs: 22 new, 207 changed, 38380 unmodified +Added to the repository: 525.695 MiB (162.623 MiB stored) + +processed 141021 files, 124.217 GiB in 0:17 +snapshot f3303354 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/maybe-finance +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/typebot +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-06-06_03:30:01 Backup complete. +2025-06-06_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +bd50686b 2025-05-31 04:34:38 services monthly snapshot /etc 124.194 GiB + /home + /var/lib/docker/volumes + +62c961bf 2025-06-01 04:41:03 services weekly snapshot /etc 124.199 GiB + /home + /var/lib/docker/volumes + +97d8b3b8 2025-06-04 04:43:40 services daily snapshot /etc 124.209 GiB + /home + /var/lib/docker/volumes + +aa47afe0 2025-06-05 04:33:08 services daily snapshot /etc 124.186 GiB + /home + /var/lib/docker/volumes + +f3303354 2025-06-06 04:20:48 services daily snapshot /etc 124.217 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +a922efbc 2025-06-03 04:45:49 services /etc 124.189 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +bd00342a 2025-05-31 04:00:07 morganna monthly snapshot /etc 2.127 GiB + /home + /var/lib/docker/volumes + +46fb4686 2025-06-01 04:00:08 morganna weekly snapshot /etc 2.137 GiB + /home + /var/lib/docker/volumes + +60b24fae 2025-06-04 04:00:08 morganna daily snapshot /etc 2.192 GiB + /home + /var/lib/docker/volumes + +1b2dd779 2025-06-05 04:00:08 morganna daily snapshot /etc 2.202 GiB + /home + /var/lib/docker/volumes + +babbc7c0 2025-06-06 04:00:08 morganna daily snapshot /etc 2.212 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +c03c4c08 2025-05-31 03:00:28 arr-stack monthly snapshot /etc 8.459 GiB + /home + /var/lib/docker/volumes + +e1f500c8 2025-06-01 03:00:28 arr-stack weekly snapshot /etc 8.478 GiB + /home + /var/lib/docker/volumes + +b3c7bb0d 2025-06-04 03:00:31 arr-stack daily snapshot /etc 8.475 GiB + /home + /var/lib/docker/volumes + +af1ccdbc 2025-06-05 03:00:29 arr-stack daily snapshot /etc 8.476 GiB + /home + /var/lib/docker/volumes + +f7cbb6d6 2025-06-06 03:00:29 arr-stack daily snapshot /etc 8.475 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 39 snapshots +[0:29] 100.00% 39 / 39 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:01] 100.00% 10632 / 10632 packs processed + +to repack: 1440 blobs / 138.345 MiB +this removes: 1205 blobs / 118.697 MiB +to delete: 0 blobs / 0 B +total prune: 1205 blobs / 118.697 MiB +remaining: 776850 blobs / 171.765 GiB +unused size after prune: 8.587 GiB (5.00% of remaining size) + +repacking packs +[0:04] 100.00% 11 / 11 packs repacked +rebuilding index +[0:02] 100.00% 18 / 18 indexes processed +[0:00] 100.00% 9 / 9 old indexes deleted +removing 11 old packs +[0:00] 100.00% 11 / 11 files deleted +done +2025-06-06_03:30:01 Backup script done +2025-06-07_03:30:01 Starting backup +User: ccalifice +2025-06-07_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/maybe-finance +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/typebot +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-06-07_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot f3303354 + +Files: 165 new, 854 changed, 139518 unmodified +Dirs: 24 new, 202 changed, 38397 unmodified +Added to the repository: 551.246 MiB (174.593 MiB stored) + +processed 140537 files, 124.247 GiB in 0:21 +snapshot d02deecf saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/maybe-finance +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/typebot +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-06-07_03:30:01 Backup complete. +2025-06-07_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +c03c4c08 2025-05-31 03:00:28 arr-stack monthly snapshot /etc 8.459 GiB + /home + /var/lib/docker/volumes + +e1f500c8 2025-06-01 03:00:28 arr-stack weekly snapshot /etc 8.478 GiB + /home + /var/lib/docker/volumes + +af1ccdbc 2025-06-05 03:00:29 arr-stack daily snapshot /etc 8.476 GiB + /home + /var/lib/docker/volumes + +f7cbb6d6 2025-06-06 03:00:29 arr-stack daily snapshot /etc 8.475 GiB + /home + /var/lib/docker/volumes + +402a17ab 2025-06-07 03:00:28 arr-stack daily snapshot /etc 8.478 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +bd50686b 2025-05-31 04:34:38 services monthly snapshot /etc 124.194 GiB + /home + /var/lib/docker/volumes + +62c961bf 2025-06-01 04:41:03 services weekly snapshot /etc 124.199 GiB + /home + /var/lib/docker/volumes + +aa47afe0 2025-06-05 04:33:08 services daily snapshot /etc 124.186 GiB + /home + /var/lib/docker/volumes + +f3303354 2025-06-06 04:20:48 services daily snapshot /etc 124.217 GiB + /home + /var/lib/docker/volumes + +d02deecf 2025-06-07 04:16:14 services daily snapshot /etc 124.247 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +97d8b3b8 2025-06-04 04:43:40 services /etc 124.209 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +bd00342a 2025-05-31 04:00:07 morganna monthly snapshot /etc 2.127 GiB + /home + /var/lib/docker/volumes + +46fb4686 2025-06-01 04:00:08 morganna weekly snapshot /etc 2.137 GiB + /home + /var/lib/docker/volumes + +1b2dd779 2025-06-05 04:00:08 morganna daily snapshot /etc 2.202 GiB + /home + /var/lib/docker/volumes + +babbc7c0 2025-06-06 04:00:08 morganna daily snapshot /etc 2.212 GiB + /home + /var/lib/docker/volumes + +67ea2bab 2025-06-07 04:00:08 morganna daily snapshot /etc 2.222 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 39 snapshots +[0:30] 100.00% 39 / 39 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:01] 100.00% 10640 / 10640 packs processed + +to repack: 2267 blobs / 139.133 MiB +this removes: 1937 blobs / 120.205 MiB +to delete: 0 blobs / 0 B +total prune: 1937 blobs / 120.205 MiB +remaining: 776682 blobs / 171.823 GiB +unused size after prune: 8.591 GiB (5.00% of remaining size) + +repacking packs +[0:04] 100.00% 11 / 11 packs repacked +rebuilding index +[0:02] 100.00% 18 / 18 indexes processed +[0:00] 100.00% 8 / 8 old indexes deleted +removing 11 old packs +[0:01] 100.00% 11 / 11 files deleted +done +2025-06-07_03:30:01 Backup script done +2025-06-08_03:30:01 Starting backup +User: ccalifice +2025-06-08_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/maybe-finance +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/typebot +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-06-08_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot d02deecf + +Files: 114 new, 581 changed, 139405 unmodified +Dirs: 23 new, 202 changed, 38407 unmodified +Added to the repository: 571.669 MiB (169.433 MiB stored) + +processed 140100 files, 124.239 GiB in 0:18 +snapshot 0f9a0672 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/maybe-finance +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/typebot +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-06-08_03:30:01 Backup complete. +2025-06-08_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +bd50686b 2025-05-31 04:34:38 services monthly snapshot /etc 124.194 GiB + /home + /var/lib/docker/volumes + +62c961bf 2025-06-01 04:41:03 services weekly snapshot /etc 124.199 GiB + /home + /var/lib/docker/volumes + +f3303354 2025-06-06 04:20:48 services daily snapshot /etc 124.217 GiB + /home + /var/lib/docker/volumes + +d02deecf 2025-06-07 04:16:14 services daily snapshot /etc 124.247 GiB + /home + /var/lib/docker/volumes + +0f9a0672 2025-06-08 04:28:11 services daily snapshot /etc 124.239 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +aa47afe0 2025-06-05 04:33:08 services /etc 124.186 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +bd00342a 2025-05-31 04:00:07 morganna monthly snapshot /etc 2.127 GiB + /home + /var/lib/docker/volumes + +46fb4686 2025-06-01 04:00:08 morganna weekly snapshot /etc 2.137 GiB + /home + /var/lib/docker/volumes + +babbc7c0 2025-06-06 04:00:08 morganna daily snapshot /etc 2.212 GiB + /home + /var/lib/docker/volumes + +67ea2bab 2025-06-07 04:00:08 morganna daily snapshot /etc 2.222 GiB + /home + /var/lib/docker/volumes + +8b753b18 2025-06-08 04:00:07 morganna daily snapshot /etc 2.232 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +c03c4c08 2025-05-31 03:00:28 arr-stack monthly snapshot /etc 8.459 GiB + /home + /var/lib/docker/volumes + +e1f500c8 2025-06-01 03:00:28 arr-stack weekly snapshot /etc 8.478 GiB + /home + /var/lib/docker/volumes + +f7cbb6d6 2025-06-06 03:00:29 arr-stack daily snapshot /etc 8.475 GiB + /home + /var/lib/docker/volumes + +402a17ab 2025-06-07 03:00:28 arr-stack daily snapshot /etc 8.478 GiB + /home + /var/lib/docker/volumes + +f1bfb0ea 2025-06-08 03:00:28 arr-stack daily snapshot /etc 8.476 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 39 snapshots +[0:29] 100.00% 39 / 39 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:01] 100.00% 10648 / 10648 packs processed + +to repack: 1246 blobs / 116.245 MiB +this removes: 898 blobs / 97.698 MiB +to delete: 0 blobs / 0 B +total prune: 898 blobs / 97.698 MiB +remaining: 777137 blobs / 171.901 GiB +unused size after prune: 8.589 GiB (5.00% of remaining size) + +repacking packs +[0:04] 100.00% 11 / 11 packs repacked +rebuilding index +[0:02] 100.00% 18 / 18 indexes processed +[0:00] 100.00% 10 / 10 old indexes deleted +removing 11 old packs +[0:00] 100.00% 11 / 11 files deleted +done +2025-06-08_03:30:01 Backup script done +2025-06-09_03:30:01 Starting backup +User: ccalifice +2025-06-09_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/maybe-finance +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/typebot +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-06-09_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 0f9a0672 + +Files: 124 new, 560 changed, 139462 unmodified +Dirs: 22 new, 203 changed, 38420 unmodified +Added to the repository: 518.031 MiB (151.478 MiB stored) + +processed 140146 files, 124.269 GiB in 0:16 +snapshot 2aecdcff saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/maybe-finance +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/typebot +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-06-09_03:30:01 Backup complete. +2025-06-09_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +c03c4c08 2025-05-31 03:00:28 arr-stack monthly snapshot /etc 8.459 GiB + /home + /var/lib/docker/volumes + +402a17ab 2025-06-07 03:00:28 arr-stack daily snapshot /etc 8.478 GiB + /home + /var/lib/docker/volumes + +f1bfb0ea 2025-06-08 03:00:28 arr-stack daily snapshot /etc 8.476 GiB + weekly snapshot /home + /var/lib/docker/volumes + +24fdaad6 2025-06-09 03:00:29 arr-stack daily snapshot /etc 8.477 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +5 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +bd50686b 2025-05-31 04:34:38 services monthly snapshot /etc 124.194 GiB + /home + /var/lib/docker/volumes + +d02deecf 2025-06-07 04:16:14 services daily snapshot /etc 124.247 GiB + /home + /var/lib/docker/volumes + +0f9a0672 2025-06-08 04:28:11 services daily snapshot /etc 124.239 GiB + weekly snapshot /home + /var/lib/docker/volumes + +2aecdcff 2025-06-09 04:31:58 services daily snapshot /etc 124.269 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +5 snapshots + +remove 2 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +62c961bf 2025-06-01 04:41:03 services /etc 124.199 GiB + /home + /var/lib/docker/volumes + +f3303354 2025-06-06 04:20:48 services /etc 124.217 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +2 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +bd00342a 2025-05-31 04:00:07 morganna monthly snapshot /etc 2.127 GiB + /home + /var/lib/docker/volumes + +67ea2bab 2025-06-07 04:00:08 morganna daily snapshot /etc 2.222 GiB + /home + /var/lib/docker/volumes + +8b753b18 2025-06-08 04:00:07 morganna daily snapshot /etc 2.232 GiB + weekly snapshot /home + /var/lib/docker/volumes + +6250bd4d 2025-06-09 04:00:08 morganna daily snapshot /etc 2.241 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +5 snapshots + +[0:00] 100.00% 2 / 2 files deleted +2 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 36 snapshots +[0:29] 100.00% 36 / 36 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:01] 100.00% 10652 / 10652 packs processed + +to repack: 7360 blobs / 302.415 MiB +this removes: 2790 blobs / 258.557 MiB +to delete: 0 blobs / 0 B +total prune: 2790 blobs / 258.557 MiB +remaining: 775383 blobs / 171.799 GiB +unused size after prune: 8.578 GiB (4.99% of remaining size) + +repacking packs +[0:09] 100.00% 23 / 23 packs repacked +rebuilding index +[0:03] 100.00% 18 / 18 indexes processed +[0:00] 100.00% 14 / 14 old indexes deleted +removing 23 old packs +[0:00] 100.00% 23 / 23 files deleted +done +2025-06-09_03:30:01 Backup script done +2025-06-10_03:30:01 Starting backup +User: ccalifice +2025-06-10_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/maybe-finance +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/typebot +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-06-10_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 2aecdcff + +Files: 129 new, 546 changed, 139505 unmodified +Dirs: 24 new, 199 changed, 38436 unmodified +Added to the repository: 544.433 MiB (161.694 MiB stored) + +processed 140180 files, 124.287 GiB in 0:18 +snapshot da76cf4e saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/maybe-finance +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/typebot +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-06-10_03:30:01 Backup complete. +2025-06-10_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +c03c4c08 2025-05-31 03:00:28 arr-stack monthly snapshot /etc 8.459 GiB + /home + /var/lib/docker/volumes + +f1bfb0ea 2025-06-08 03:00:28 arr-stack daily snapshot /etc 8.476 GiB + weekly snapshot /home + /var/lib/docker/volumes + +24fdaad6 2025-06-09 03:00:29 arr-stack daily snapshot /etc 8.477 GiB + /home + /var/lib/docker/volumes + +4a997585 2025-06-10 03:00:28 arr-stack daily snapshot /etc 7.357 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +5 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +bd50686b 2025-05-31 04:34:38 services monthly snapshot /etc 124.194 GiB + /home + /var/lib/docker/volumes + +0f9a0672 2025-06-08 04:28:11 services daily snapshot /etc 124.239 GiB + weekly snapshot /home + /var/lib/docker/volumes + +2aecdcff 2025-06-09 04:31:58 services daily snapshot /etc 124.269 GiB + /home + /var/lib/docker/volumes + +da76cf4e 2025-06-10 04:26:41 services daily snapshot /etc 124.287 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +5 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +d02deecf 2025-06-07 04:16:14 services /etc 124.247 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +bd00342a 2025-05-31 04:00:07 morganna monthly snapshot /etc 2.127 GiB + /home + /var/lib/docker/volumes + +8b753b18 2025-06-08 04:00:07 morganna daily snapshot /etc 2.232 GiB + weekly snapshot /home + /var/lib/docker/volumes + +6250bd4d 2025-06-09 04:00:08 morganna daily snapshot /etc 2.241 GiB + /home + /var/lib/docker/volumes + +3e8a501a 2025-06-10 04:00:08 morganna daily snapshot /etc 2.251 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +5 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 36 snapshots +[0:29] 100.00% 36 / 36 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:01] 100.00% 10648 / 10648 packs processed + +to repack: 1658 blobs / 142.670 MiB +this removes: 1383 blobs / 123.057 MiB +to delete: 0 blobs / 0 B +total prune: 1383 blobs / 123.057 MiB +remaining: 776457 blobs / 171.875 GiB +unused size after prune: 8.586 GiB (5.00% of remaining size) + +repacking packs +[0:05] 100.00% 11 / 11 packs repacked +rebuilding index +[0:02] 100.00% 18 / 18 indexes processed +[0:00] 100.00% 10 / 10 old indexes deleted +removing 11 old packs +[0:00] 100.00% 11 / 11 files deleted +done +2025-06-10_03:30:01 Backup script done +2025-06-11_03:30:01 Starting backup +User: ccalifice +2025-06-11_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/maybe-finance +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/typebot +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-06-11_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot da76cf4e + +Files: 170 new, 498 changed, 139384 unmodified +Dirs: 22 new, 204 changed, 38441 unmodified +Added to the repository: 552.090 MiB (169.572 MiB stored) + +processed 140052 files, 124.267 GiB in 0:17 +snapshot d30a4b52 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/maybe-finance +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/typebot +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-06-11_03:30:01 Backup complete. +2025-06-11_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +bd50686b 2025-05-31 04:34:38 services monthly snapshot /etc 124.194 GiB + /home + /var/lib/docker/volumes + +0f9a0672 2025-06-08 04:28:11 services weekly snapshot /etc 124.239 GiB + /home + /var/lib/docker/volumes + +2aecdcff 2025-06-09 04:31:58 services daily snapshot /etc 124.269 GiB + /home + /var/lib/docker/volumes + +da76cf4e 2025-06-10 04:26:41 services daily snapshot /etc 124.287 GiB + /home + /var/lib/docker/volumes + +d30a4b52 2025-06-11 04:28:46 services daily snapshot /etc 124.267 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +bd00342a 2025-05-31 04:00:07 morganna monthly snapshot /etc 2.127 GiB + /home + /var/lib/docker/volumes + +8b753b18 2025-06-08 04:00:07 morganna weekly snapshot /etc 2.232 GiB + /home + /var/lib/docker/volumes + +6250bd4d 2025-06-09 04:00:08 morganna daily snapshot /etc 2.241 GiB + /home + /var/lib/docker/volumes + +3e8a501a 2025-06-10 04:00:08 morganna daily snapshot /etc 2.251 GiB + /home + /var/lib/docker/volumes + +5efafa21 2025-06-11 04:00:08 morganna daily snapshot /etc 1.900 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +c03c4c08 2025-05-31 03:00:28 arr-stack monthly snapshot /etc 8.459 GiB + /home + /var/lib/docker/volumes + +f1bfb0ea 2025-06-08 03:00:28 arr-stack weekly snapshot /etc 8.476 GiB + /home + /var/lib/docker/volumes + +24fdaad6 2025-06-09 03:00:29 arr-stack daily snapshot /etc 8.477 GiB + /home + /var/lib/docker/volumes + +4a997585 2025-06-10 03:00:28 arr-stack daily snapshot /etc 7.357 GiB + /home + /var/lib/docker/volumes + +8c56e881 2025-06-11 03:00:28 arr-stack daily snapshot /etc 7.367 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +2025-06-11_03:30:01 Backup script done +2025-06-12_03:30:01 Starting backup +User: ccalifice +2025-06-12_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/maybe-finance +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/typebot +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-06-12_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot d30a4b52 + +Files: 906 new, 634 changed, 138714 unmodified +Dirs: 495 new, 629 changed, 38024 unmodified +Added to the repository: 1.373 GiB (977.634 MiB stored) + +processed 140254 files, 125.056 GiB in 0:39 +snapshot bac9d8ac saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/maybe-finance +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/typebot +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-06-12_03:30:01 Backup complete. +2025-06-12_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +bd50686b 2025-05-31 04:34:38 services monthly snapshot /etc 124.194 GiB + /home + /var/lib/docker/volumes + +0f9a0672 2025-06-08 04:28:11 services weekly snapshot /etc 124.239 GiB + /home + /var/lib/docker/volumes + +da76cf4e 2025-06-10 04:26:41 services daily snapshot /etc 124.287 GiB + /home + /var/lib/docker/volumes + +d30a4b52 2025-06-11 04:28:46 services daily snapshot /etc 124.267 GiB + /home + /var/lib/docker/volumes + +bac9d8ac 2025-06-12 04:27:42 services daily snapshot /etc 125.056 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +2aecdcff 2025-06-09 04:31:58 services /etc 124.269 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +bd00342a 2025-05-31 04:00:07 morganna monthly snapshot /etc 2.127 GiB + /home + /var/lib/docker/volumes + +8b753b18 2025-06-08 04:00:07 morganna weekly snapshot /etc 2.232 GiB + /home + /var/lib/docker/volumes + +3e8a501a 2025-06-10 04:00:08 morganna daily snapshot /etc 2.251 GiB + /home + /var/lib/docker/volumes + +5efafa21 2025-06-11 04:00:08 morganna daily snapshot /etc 1.900 GiB + /home + /var/lib/docker/volumes + +a80be6f2 2025-06-12 04:00:08 morganna daily snapshot /etc 1.900 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +c03c4c08 2025-05-31 03:00:28 arr-stack monthly snapshot /etc 8.459 GiB + /home + /var/lib/docker/volumes + +f1bfb0ea 2025-06-08 03:00:28 arr-stack weekly snapshot /etc 8.476 GiB + /home + /var/lib/docker/volumes + +4a997585 2025-06-10 03:00:28 arr-stack daily snapshot /etc 7.357 GiB + /home + /var/lib/docker/volumes + +8c56e881 2025-06-11 03:00:28 arr-stack daily snapshot /etc 7.367 GiB + /home + /var/lib/docker/volumes + +4ed7abe9 2025-06-12 03:00:27 arr-stack daily snapshot /etc 7.913 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 39 snapshots +[0:31] 100.00% 39 / 39 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:01] 100.00% 10744 / 10744 packs processed + +to repack: 2416 blobs / 47.648 MiB +this removes: 544 blobs / 43.202 MiB +to delete: 0 blobs / 0 B +total prune: 544 blobs / 43.202 MiB +remaining: 797667 blobs / 173.362 GiB +unused size after prune: 8.660 GiB (5.00% of remaining size) + +repacking packs +[0:01] 100.00% 15 / 15 packs repacked +rebuilding index +[0:02] 100.00% 18 / 18 indexes processed +[0:00] 100.00% 8 / 8 old indexes deleted +removing 15 old packs +[0:00] 100.00% 15 / 15 files deleted +done +2025-06-12_03:30:01 Backup script done +2025-06-13_03:30:01 Starting backup +User: ccalifice +2025-06-13_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/maybe-finance +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/typebot +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-06-13_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot bac9d8ac + +Files: 223 new, 546 changed, 139050 unmodified +Dirs: 30 new, 210 changed, 38925 unmodified +Added to the repository: 559.459 MiB (186.027 MiB stored) + +processed 139819 files, 125.089 GiB in 0:18 +snapshot 12311e15 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/maybe-finance +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/typebot +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-06-13_03:30:01 Backup complete. +2025-06-13_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +bd50686b 2025-05-31 04:34:38 services monthly snapshot /etc 124.194 GiB + /home + /var/lib/docker/volumes + +0f9a0672 2025-06-08 04:28:11 services weekly snapshot /etc 124.239 GiB + /home + /var/lib/docker/volumes + +d30a4b52 2025-06-11 04:28:46 services daily snapshot /etc 124.267 GiB + /home + /var/lib/docker/volumes + +bac9d8ac 2025-06-12 04:27:42 services daily snapshot /etc 125.056 GiB + /home + /var/lib/docker/volumes + +12311e15 2025-06-13 04:29:16 services daily snapshot /etc 125.089 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +da76cf4e 2025-06-10 04:26:41 services /etc 124.287 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +bd00342a 2025-05-31 04:00:07 morganna monthly snapshot /etc 2.127 GiB + /home + /var/lib/docker/volumes + +8b753b18 2025-06-08 04:00:07 morganna weekly snapshot /etc 2.232 GiB + /home + /var/lib/docker/volumes + +5efafa21 2025-06-11 04:00:08 morganna daily snapshot /etc 1.900 GiB + /home + /var/lib/docker/volumes + +a80be6f2 2025-06-12 04:00:08 morganna daily snapshot /etc 1.900 GiB + /home + /var/lib/docker/volumes + +5c44134e 2025-06-13 04:00:09 morganna daily snapshot /etc 1.900 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +c03c4c08 2025-05-31 03:00:28 arr-stack monthly snapshot /etc 8.459 GiB + /home + /var/lib/docker/volumes + +f1bfb0ea 2025-06-08 03:00:28 arr-stack weekly snapshot /etc 8.476 GiB + /home + /var/lib/docker/volumes + +8c56e881 2025-06-11 03:00:28 arr-stack daily snapshot /etc 7.367 GiB + /home + /var/lib/docker/volumes + +4ed7abe9 2025-06-12 03:00:27 arr-stack daily snapshot /etc 7.913 GiB + /home + /var/lib/docker/volumes + +8612ee03 2025-06-13 03:00:29 arr-stack daily snapshot /etc 7.912 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 39 snapshots +[0:29] 100.00% 39 / 39 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:01] 100.00% 10747 / 10747 packs processed + +to repack: 3458 blobs / 118.684 MiB +this removes: 1941 blobs / 98.840 MiB +to delete: 24 blobs / 16.372 MiB +total prune: 1965 blobs / 115.212 MiB +remaining: 796667 blobs / 173.415 GiB +unused size after prune: 8.662 GiB (5.00% of remaining size) + +repacking packs +[0:03] 100.00% 10 / 10 packs repacked +rebuilding index +[0:02] 100.00% 18 / 18 indexes processed +[0:00] 100.00% 9 / 9 old indexes deleted +removing 11 old packs +[0:00] 100.00% 11 / 11 files deleted +done +2025-06-13_03:30:01 Backup script done +2025-06-14_03:30:01 Starting backup +User: ccalifice +2025-06-14_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/maybe-finance +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/typebot +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-06-14_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 12311e15 + +Files: 126 new, 702 changed, 138459 unmodified +Dirs: 23 new, 203 changed, 38948 unmodified +Added to the repository: 539.520 MiB (171.219 MiB stored) + +processed 139287 files, 125.052 GiB in 0:20 +snapshot d1b3bb99 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/maybe-finance +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/typebot +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-06-14_03:30:01 Backup complete. +2025-06-14_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +bd00342a 2025-05-31 04:00:07 morganna monthly snapshot /etc 2.127 GiB + /home + /var/lib/docker/volumes + +8b753b18 2025-06-08 04:00:07 morganna weekly snapshot /etc 2.232 GiB + /home + /var/lib/docker/volumes + +a80be6f2 2025-06-12 04:00:08 morganna daily snapshot /etc 1.900 GiB + /home + /var/lib/docker/volumes + +5c44134e 2025-06-13 04:00:09 morganna daily snapshot /etc 1.900 GiB + /home + /var/lib/docker/volumes + +235fcd91 2025-06-14 04:00:09 morganna daily snapshot /etc 1.900 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +c03c4c08 2025-05-31 03:00:28 arr-stack monthly snapshot /etc 8.459 GiB + /home + /var/lib/docker/volumes + +f1bfb0ea 2025-06-08 03:00:28 arr-stack weekly snapshot /etc 8.476 GiB + /home + /var/lib/docker/volumes + +4ed7abe9 2025-06-12 03:00:27 arr-stack daily snapshot /etc 7.913 GiB + /home + /var/lib/docker/volumes + +8612ee03 2025-06-13 03:00:29 arr-stack daily snapshot /etc 7.912 GiB + /home + /var/lib/docker/volumes + +317bde14 2025-06-14 03:00:40 arr-stack daily snapshot /etc 8.972 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +bd50686b 2025-05-31 04:34:38 services monthly snapshot /etc 124.194 GiB + /home + /var/lib/docker/volumes + +0f9a0672 2025-06-08 04:28:11 services weekly snapshot /etc 124.239 GiB + /home + /var/lib/docker/volumes + +bac9d8ac 2025-06-12 04:27:42 services daily snapshot /etc 125.056 GiB + /home + /var/lib/docker/volumes + +12311e15 2025-06-13 04:29:16 services daily snapshot /etc 125.089 GiB + /home + /var/lib/docker/volumes + +d1b3bb99 2025-06-14 04:27:25 services daily snapshot /etc 125.052 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +d30a4b52 2025-06-11 04:28:46 services /etc 124.267 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 39 snapshots +[0:28] 100.00% 39 / 39 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:01] 100.00% 10778 / 10778 packs processed + +to repack: 1434 blobs / 109.537 MiB +this removes: 1209 blobs / 92.264 MiB +to delete: 14 blobs / 2.702 MiB +total prune: 1223 blobs / 94.966 MiB +remaining: 802900 blobs / 173.879 GiB +unused size after prune: 8.685 GiB (4.99% of remaining size) + +repacking packs +[0:03] 100.00% 8 / 8 packs repacked +rebuilding index +[0:03] 100.00% 18 / 18 indexes processed +[0:00] 100.00% 8 / 8 old indexes deleted +removing 9 old packs +[0:00] 100.00% 9 / 9 files deleted +done +2025-06-14_03:30:01 Backup script done +2025-06-15_03:30:01 Starting backup +User: ccalifice +2025-06-15_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/maybe-finance +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/typebot +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-06-15_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot d1b3bb99 + +Files: 81 new, 668 changed, 138145 unmodified +Dirs: 22 new, 192 changed, 38975 unmodified +Added to the repository: 473.433 MiB (140.318 MiB stored) + +processed 138894 files, 125.077 GiB in 0:16 +snapshot 4d8c0b67 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/maybe-finance +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/typebot +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-06-15_03:30:01 Backup complete. +2025-06-15_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +c03c4c08 2025-05-31 03:00:28 arr-stack monthly snapshot /etc 8.459 GiB + /home + /var/lib/docker/volumes + +f1bfb0ea 2025-06-08 03:00:28 arr-stack weekly snapshot /etc 8.476 GiB + /home + /var/lib/docker/volumes + +8612ee03 2025-06-13 03:00:29 arr-stack daily snapshot /etc 7.912 GiB + /home + /var/lib/docker/volumes + +317bde14 2025-06-14 03:00:40 arr-stack daily snapshot /etc 8.972 GiB + /home + /var/lib/docker/volumes + +4d8968e4 2025-06-15 03:00:28 arr-stack daily snapshot /etc 8.973 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +bd50686b 2025-05-31 04:34:38 services monthly snapshot /etc 124.194 GiB + /home + /var/lib/docker/volumes + +0f9a0672 2025-06-08 04:28:11 services weekly snapshot /etc 124.239 GiB + /home + /var/lib/docker/volumes + +12311e15 2025-06-13 04:29:16 services daily snapshot /etc 125.089 GiB + /home + /var/lib/docker/volumes + +d1b3bb99 2025-06-14 04:27:25 services daily snapshot /etc 125.052 GiB + /home + /var/lib/docker/volumes + +4d8c0b67 2025-06-15 04:34:16 services daily snapshot /etc 125.077 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +bac9d8ac 2025-06-12 04:27:42 services /etc 125.056 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +bd00342a 2025-05-31 04:00:07 morganna monthly snapshot /etc 2.127 GiB + /home + /var/lib/docker/volumes + +8b753b18 2025-06-08 04:00:07 morganna weekly snapshot /etc 2.232 GiB + /home + /var/lib/docker/volumes + +5c44134e 2025-06-13 04:00:09 morganna daily snapshot /etc 1.900 GiB + /home + /var/lib/docker/volumes + +235fcd91 2025-06-14 04:00:09 morganna daily snapshot /etc 1.900 GiB + /home + /var/lib/docker/volumes + +ed414112 2025-06-15 04:00:08 morganna daily snapshot /etc 1.901 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 39 snapshots +[0:26] 100.00% 39 / 39 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:01] 100.00% 10785 / 10785 packs processed + +to repack: 1754 blobs / 127.191 MiB +this removes: 1021 blobs / 106.217 MiB +to delete: 0 blobs / 0 B +total prune: 1021 blobs / 106.217 MiB +remaining: 802498 blobs / 173.908 GiB +unused size after prune: 8.694 GiB (5.00% of remaining size) + +repacking packs +[0:04] 100.00% 9 / 9 packs repacked +rebuilding index +[0:01] 100.00% 18 / 18 indexes processed +[0:00] 100.00% 9 / 9 old indexes deleted +removing 9 old packs +[0:00] 100.00% 9 / 9 files deleted +done +2025-06-15_03:30:01 Backup script done +2025-06-16_03:30:01 Starting backup +User: ccalifice +2025-06-16_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/maybe-finance +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/typebot +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-06-16_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 4d8c0b67 + +Files: 107 new, 702 changed, 138149 unmodified +Dirs: 25 new, 193 changed, 38987 unmodified +Added to the repository: 481.545 MiB (144.233 MiB stored) + +processed 138958 files, 125.098 GiB in 0:20 +snapshot f10f7dec saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/maybe-finance +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/typebot +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-06-16_03:30:01 Backup complete. +2025-06-16_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +bd50686b 2025-05-31 04:34:38 services monthly snapshot /etc 124.194 GiB + /home + /var/lib/docker/volumes + +d1b3bb99 2025-06-14 04:27:25 services daily snapshot /etc 125.052 GiB + /home + /var/lib/docker/volumes + +4d8c0b67 2025-06-15 04:34:16 services daily snapshot /etc 125.077 GiB + weekly snapshot /home + /var/lib/docker/volumes + +f10f7dec 2025-06-16 04:33:37 services daily snapshot /etc 125.098 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +5 snapshots + +remove 2 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +0f9a0672 2025-06-08 04:28:11 services /etc 124.239 GiB + /home + /var/lib/docker/volumes + +12311e15 2025-06-13 04:29:16 services /etc 125.089 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +2 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +bd00342a 2025-05-31 04:00:07 morganna monthly snapshot /etc 2.127 GiB + /home + /var/lib/docker/volumes + +235fcd91 2025-06-14 04:00:09 morganna daily snapshot /etc 1.900 GiB + /home + /var/lib/docker/volumes + +ed414112 2025-06-15 04:00:08 morganna daily snapshot /etc 1.901 GiB + weekly snapshot /home + /var/lib/docker/volumes + +6a85867e 2025-06-16 04:00:08 morganna daily snapshot /etc 1.901 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +5 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +c03c4c08 2025-05-31 03:00:28 arr-stack monthly snapshot /etc 8.459 GiB + /home + /var/lib/docker/volumes + +317bde14 2025-06-14 03:00:40 arr-stack daily snapshot /etc 8.972 GiB + /home + /var/lib/docker/volumes + +4d8968e4 2025-06-15 03:00:28 arr-stack daily snapshot /etc 8.973 GiB + weekly snapshot /home + /var/lib/docker/volumes + +1a252d7d 2025-06-16 03:00:28 arr-stack daily snapshot /etc 8.970 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +5 snapshots + +[0:00] 100.00% 2 / 2 files deleted +2 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 36 snapshots +[0:27] 100.00% 36 / 36 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:01] 100.00% 10778 / 10778 packs processed + +to repack: 7237 blobs / 288.008 MiB +this removes: 2032 blobs / 247.378 MiB +to delete: 34 blobs / 16.509 MiB +total prune: 2066 blobs / 263.887 MiB +remaining: 800546 blobs / 173.678 GiB +unused size after prune: 8.673 GiB (4.99% of remaining size) + +repacking packs +[0:08] 100.00% 23 / 23 packs repacked +rebuilding index +[0:01] 100.00% 18 / 18 indexes processed +[0:00] 100.00% 13 / 13 old indexes deleted +removing 24 old packs +[0:00] 100.00% 24 / 24 files deleted +done +2025-06-16_03:30:01 Backup script done +2025-06-17_03:30:01 Starting backup +User: ccalifice +2025-06-17_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/maybe-finance +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/typebot +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-06-17_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot f10f7dec + +Files: 134 new, 701 changed, 138148 unmodified +Dirs: 23 new, 195 changed, 38997 unmodified +Added to the repository: 520.485 MiB (157.378 MiB stored) + +processed 138983 files, 125.083 GiB in 0:18 +snapshot 2c10d808 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/maybe-finance +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/typebot +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-06-17_03:30:01 Backup complete. +2025-06-17_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +c03c4c08 2025-05-31 03:00:28 arr-stack monthly snapshot /etc 8.459 GiB + /home + /var/lib/docker/volumes + +4d8968e4 2025-06-15 03:00:28 arr-stack daily snapshot /etc 8.973 GiB + weekly snapshot /home + /var/lib/docker/volumes + +1a252d7d 2025-06-16 03:00:28 arr-stack daily snapshot /etc 8.970 GiB + /home + /var/lib/docker/volumes + +b31b9a20 2025-06-17 03:00:40 arr-stack daily snapshot /etc 8.990 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +5 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +bd50686b 2025-05-31 04:34:38 services monthly snapshot /etc 124.194 GiB + /home + /var/lib/docker/volumes + +4d8c0b67 2025-06-15 04:34:16 services daily snapshot /etc 125.077 GiB + weekly snapshot /home + /var/lib/docker/volumes + +f10f7dec 2025-06-16 04:33:37 services daily snapshot /etc 125.098 GiB + /home + /var/lib/docker/volumes + +2c10d808 2025-06-17 04:20:56 services daily snapshot /etc 125.083 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +5 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +d1b3bb99 2025-06-14 04:27:25 services /etc 125.052 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +bd00342a 2025-05-31 04:00:07 morganna monthly snapshot /etc 2.127 GiB + /home + /var/lib/docker/volumes + +ed414112 2025-06-15 04:00:08 morganna daily snapshot /etc 1.901 GiB + weekly snapshot /home + /var/lib/docker/volumes + +6a85867e 2025-06-16 04:00:08 morganna daily snapshot /etc 1.901 GiB + /home + /var/lib/docker/volumes + +70e7acf3 2025-06-17 04:00:08 morganna daily snapshot /etc 1.901 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +5 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 36 snapshots +[0:25] 100.00% 36 / 36 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:01] 100.00% 10775 / 10775 packs processed + +to repack: 3368 blobs / 133.933 MiB +this removes: 1382 blobs / 110.060 MiB +to delete: 0 blobs / 0 B +total prune: 1382 blobs / 110.060 MiB +remaining: 801590 blobs / 173.776 GiB +unused size after prune: 8.679 GiB (4.99% of remaining size) + +repacking packs +[0:04] 100.00% 21 / 21 packs repacked +rebuilding index +[0:01] 100.00% 18 / 18 indexes processed +[0:00] 100.00% 10 / 10 old indexes deleted +removing 21 old packs +[0:00] 100.00% 21 / 21 files deleted +done +2025-06-17_03:30:01 Backup script done +2025-06-18_03:30:01 Starting backup +User: ccalifice +2025-06-18_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/maybe-finance +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/typebot +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-06-18_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 2c10d808 + +Files: 232 new, 672 changed, 137597 unmodified +Dirs: 21 new, 199 changed, 39002 unmodified +Added to the repository: 527.252 MiB (165.505 MiB stored) + +processed 138501 files, 125.124 GiB in 0:21 +snapshot 77db2fbc saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/maybe-finance +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/typebot +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-06-18_03:30:01 Backup complete. +2025-06-18_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +c03c4c08 2025-05-31 03:00:28 arr-stack monthly snapshot /etc 8.459 GiB + /home + /var/lib/docker/volumes + +4d8968e4 2025-06-15 03:00:28 arr-stack weekly snapshot /etc 8.973 GiB + /home + /var/lib/docker/volumes + +1a252d7d 2025-06-16 03:00:28 arr-stack daily snapshot /etc 8.970 GiB + /home + /var/lib/docker/volumes + +b31b9a20 2025-06-17 03:00:40 arr-stack daily snapshot /etc 8.990 GiB + /home + /var/lib/docker/volumes + +d9fdea61 2025-06-18 03:00:50 arr-stack daily snapshot /etc 8.991 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +bd50686b 2025-05-31 04:34:38 services monthly snapshot /etc 124.194 GiB + /home + /var/lib/docker/volumes + +4d8c0b67 2025-06-15 04:34:16 services weekly snapshot /etc 125.077 GiB + /home + /var/lib/docker/volumes + +f10f7dec 2025-06-16 04:33:37 services daily snapshot /etc 125.098 GiB + /home + /var/lib/docker/volumes + +2c10d808 2025-06-17 04:20:56 services daily snapshot /etc 125.083 GiB + /home + /var/lib/docker/volumes + +77db2fbc 2025-06-18 04:20:08 services daily snapshot /etc 125.124 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +bd00342a 2025-05-31 04:00:07 morganna monthly snapshot /etc 2.127 GiB + /home + /var/lib/docker/volumes + +ed414112 2025-06-15 04:00:08 morganna weekly snapshot /etc 1.901 GiB + /home + /var/lib/docker/volumes + +6a85867e 2025-06-16 04:00:08 morganna daily snapshot /etc 1.901 GiB + /home + /var/lib/docker/volumes + +70e7acf3 2025-06-17 04:00:08 morganna daily snapshot /etc 1.901 GiB + /home + /var/lib/docker/volumes + +318de266 2025-06-18 04:00:07 morganna daily snapshot /etc 2.428 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +2025-06-18_03:30:01 Backup script done +2025-06-19_03:30:01 Starting backup +User: ccalifice +2025-06-19_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/maybe-finance +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/typebot +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-06-19_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 77db2fbc + +Files: 279 new, 751 changed, 137144 unmodified +Dirs: 85 new, 271 changed, 38936 unmodified +Added to the repository: 627.015 MiB (241.258 MiB stored) + +processed 138174 files, 125.205 GiB in 0:19 +snapshot eabec344 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/maybe-finance +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/typebot +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-06-19_03:30:01 Backup complete. +2025-06-19_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +c03c4c08 2025-05-31 03:00:28 arr-stack monthly snapshot /etc 8.459 GiB + /home + /var/lib/docker/volumes + +4d8968e4 2025-06-15 03:00:28 arr-stack weekly snapshot /etc 8.973 GiB + /home + /var/lib/docker/volumes + +b31b9a20 2025-06-17 03:00:40 arr-stack daily snapshot /etc 8.990 GiB + /home + /var/lib/docker/volumes + +d9fdea61 2025-06-18 03:00:50 arr-stack daily snapshot /etc 8.991 GiB + /home + /var/lib/docker/volumes + +9f609281 2025-06-19 03:00:39 arr-stack daily snapshot /etc 8.808 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +bd50686b 2025-05-31 04:34:38 services monthly snapshot /etc 124.194 GiB + /home + /var/lib/docker/volumes + +4d8c0b67 2025-06-15 04:34:16 services weekly snapshot /etc 125.077 GiB + /home + /var/lib/docker/volumes + +2c10d808 2025-06-17 04:20:56 services daily snapshot /etc 125.083 GiB + /home + /var/lib/docker/volumes + +77db2fbc 2025-06-18 04:20:08 services daily snapshot /etc 125.124 GiB + /home + /var/lib/docker/volumes + +eabec344 2025-06-19 04:25:11 services daily snapshot /etc 125.205 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +f10f7dec 2025-06-16 04:33:37 services /etc 125.098 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +bd00342a 2025-05-31 04:00:07 morganna monthly snapshot /etc 2.127 GiB + /home + /var/lib/docker/volumes + +ed414112 2025-06-15 04:00:08 morganna weekly snapshot /etc 1.901 GiB + /home + /var/lib/docker/volumes + +70e7acf3 2025-06-17 04:00:08 morganna daily snapshot /etc 1.901 GiB + /home + /var/lib/docker/volumes + +318de266 2025-06-18 04:00:07 morganna daily snapshot /etc 2.428 GiB + /home + /var/lib/docker/volumes + +580d223b 2025-06-19 04:00:10 morganna daily snapshot /etc 2.429 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 39 snapshots +[0:28] 100.00% 39 / 39 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:01] 100.00% 10800 / 10800 packs processed + +to repack: 891 blobs / 94.521 MiB +this removes: 779 blobs / 82.513 MiB +to delete: 40 blobs / 17.030 MiB +total prune: 819 blobs / 99.543 MiB +remaining: 814058 blobs / 174.218 GiB +unused size after prune: 8.699 GiB (4.99% of remaining size) + +repacking packs +[0:02] 100.00% 7 / 7 packs repacked +rebuilding index +[0:01] 100.00% 18 / 18 indexes processed +[0:00] 100.00% 5 / 5 old indexes deleted +removing 8 old packs +[0:00] 100.00% 8 / 8 files deleted +done +2025-06-19_03:30:01 Backup script done +2025-06-20_03:30:01 Starting backup +User: ccalifice +2025-06-20_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/maybe-finance +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/typebot +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-06-20_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot eabec344 + +Files: 140 new, 687 changed, 136884 unmodified +Dirs: 22 new, 206 changed, 39070 unmodified +Added to the repository: 606.011 MiB (186.196 MiB stored) + +processed 137711 files, 125.198 GiB in 0:19 +snapshot af2eadb0 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/maybe-finance +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/typebot +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-06-20_03:30:01 Backup complete. +2025-06-20_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +c03c4c08 2025-05-31 03:00:28 arr-stack monthly snapshot /etc 8.459 GiB + /home + /var/lib/docker/volumes + +4d8968e4 2025-06-15 03:00:28 arr-stack weekly snapshot /etc 8.973 GiB + /home + /var/lib/docker/volumes + +d9fdea61 2025-06-18 03:00:50 arr-stack daily snapshot /etc 8.991 GiB + /home + /var/lib/docker/volumes + +9f609281 2025-06-19 03:00:39 arr-stack daily snapshot /etc 8.808 GiB + /home + /var/lib/docker/volumes + +afd18edf 2025-06-20 03:00:49 arr-stack daily snapshot /etc 8.809 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +bd50686b 2025-05-31 04:34:38 services monthly snapshot /etc 124.194 GiB + /home + /var/lib/docker/volumes + +4d8c0b67 2025-06-15 04:34:16 services weekly snapshot /etc 125.077 GiB + /home + /var/lib/docker/volumes + +77db2fbc 2025-06-18 04:20:08 services daily snapshot /etc 125.124 GiB + /home + /var/lib/docker/volumes + +eabec344 2025-06-19 04:25:11 services daily snapshot /etc 125.205 GiB + /home + /var/lib/docker/volumes + +af2eadb0 2025-06-20 04:27:41 services daily snapshot /etc 125.198 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +2c10d808 2025-06-17 04:20:56 services /etc 125.083 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +bd00342a 2025-05-31 04:00:07 morganna monthly snapshot /etc 2.127 GiB + /home + /var/lib/docker/volumes + +ed414112 2025-06-15 04:00:08 morganna weekly snapshot /etc 1.901 GiB + /home + /var/lib/docker/volumes + +318de266 2025-06-18 04:00:07 morganna daily snapshot /etc 2.428 GiB + /home + /var/lib/docker/volumes + +580d223b 2025-06-19 04:00:10 morganna daily snapshot /etc 2.429 GiB + /home + /var/lib/docker/volumes + +8f0ec854 2025-06-20 04:00:09 morganna daily snapshot /etc 2.544 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 39 snapshots +[0:31] 100.00% 39 / 39 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:01] 100.00% 10813 / 10813 packs processed + +to repack: 1099 blobs / 117.229 MiB +this removes: 977 blobs / 97.932 MiB +to delete: 0 blobs / 0 B +total prune: 977 blobs / 97.932 MiB +remaining: 819657 blobs / 174.338 GiB +unused size after prune: 8.710 GiB (5.00% of remaining size) + +repacking packs +[0:03] 100.00% 11 / 11 packs repacked +rebuilding index +[0:03] 100.00% 18 / 18 indexes processed +[0:00] 100.00% 9 / 9 old indexes deleted +removing 11 old packs +[0:00] 100.00% 11 / 11 files deleted +done +2025-06-20_03:30:01 Backup script done +2025-06-21_03:30:01 Starting backup +User: ccalifice +2025-06-21_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/maybe-finance +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/typebot +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-06-21_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot af2eadb0 + +Files: 141 new, 438 changed, 136703 unmodified +Dirs: 22 new, 200 changed, 39090 unmodified +Added to the repository: 561.325 MiB (159.877 MiB stored) + +processed 137282 files, 125.219 GiB in 0:18 +snapshot 1ec17593 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/maybe-finance +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/typebot +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-06-21_03:30:01 Backup complete. +2025-06-21_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +c03c4c08 2025-05-31 03:00:28 arr-stack monthly snapshot /etc 8.459 GiB + /home + /var/lib/docker/volumes + +4d8968e4 2025-06-15 03:00:28 arr-stack weekly snapshot /etc 8.973 GiB + /home + /var/lib/docker/volumes + +9f609281 2025-06-19 03:00:39 arr-stack daily snapshot /etc 8.808 GiB + /home + /var/lib/docker/volumes + +afd18edf 2025-06-20 03:00:49 arr-stack daily snapshot /etc 8.809 GiB + /home + /var/lib/docker/volumes + +d92b577c 2025-06-21 03:00:50 arr-stack daily snapshot /etc 8.816 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +bd50686b 2025-05-31 04:34:38 services monthly snapshot /etc 124.194 GiB + /home + /var/lib/docker/volumes + +4d8c0b67 2025-06-15 04:34:16 services weekly snapshot /etc 125.077 GiB + /home + /var/lib/docker/volumes + +eabec344 2025-06-19 04:25:11 services daily snapshot /etc 125.205 GiB + /home + /var/lib/docker/volumes + +af2eadb0 2025-06-20 04:27:41 services daily snapshot /etc 125.198 GiB + /home + /var/lib/docker/volumes + +1ec17593 2025-06-21 04:35:40 services daily snapshot /etc 125.219 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +77db2fbc 2025-06-18 04:20:08 services /etc 125.124 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +bd00342a 2025-05-31 04:00:07 morganna monthly snapshot /etc 2.127 GiB + /home + /var/lib/docker/volumes + +ed414112 2025-06-15 04:00:08 morganna weekly snapshot /etc 1.901 GiB + /home + /var/lib/docker/volumes + +580d223b 2025-06-19 04:00:10 morganna daily snapshot /etc 2.429 GiB + /home + /var/lib/docker/volumes + +8f0ec854 2025-06-20 04:00:09 morganna daily snapshot /etc 2.544 GiB + /home + /var/lib/docker/volumes + +1b4d37ea 2025-06-21 04:00:09 morganna daily snapshot /etc 2.785 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 39 snapshots +[0:33] 100.00% 39 / 39 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:01] 100.00% 10819 / 10819 packs processed + +to repack: 1159 blobs / 98.785 MiB +this removes: 996 blobs / 83.554 MiB +to delete: 31 blobs / 16.006 MiB +total prune: 1027 blobs / 99.560 MiB +remaining: 822175 blobs / 174.407 GiB +unused size after prune: 8.718 GiB (5.00% of remaining size) + +repacking packs +[0:04] 100.00% 9 / 9 packs repacked +rebuilding index +[0:02] 100.00% 18 / 18 indexes processed +[0:00] 100.00% 7 / 7 old indexes deleted +removing 10 old packs +[0:00] 100.00% 10 / 10 files deleted +done +2025-06-21_03:30:01 Backup script done +2025-06-22_03:30:01 Starting backup +User: ccalifice +2025-06-22_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/maybe-finance +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/typebot +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-06-22_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 1ec17593 + +Files: 118 new, 492 changed, 136675 unmodified +Dirs: 24 new, 203 changed, 39099 unmodified +Added to the repository: 558.941 MiB (162.574 MiB stored) + +processed 137285 files, 125.245 GiB in 0:19 +snapshot c166c56d saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/maybe-finance +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/typebot +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-06-22_03:30:01 Backup complete. +2025-06-22_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +bd50686b 2025-05-31 04:34:38 services monthly snapshot /etc 124.194 GiB + /home + /var/lib/docker/volumes + +4d8c0b67 2025-06-15 04:34:16 services weekly snapshot /etc 125.077 GiB + /home + /var/lib/docker/volumes + +af2eadb0 2025-06-20 04:27:41 services daily snapshot /etc 125.198 GiB + /home + /var/lib/docker/volumes + +1ec17593 2025-06-21 04:35:40 services daily snapshot /etc 125.219 GiB + /home + /var/lib/docker/volumes + +c166c56d 2025-06-22 04:22:35 services daily snapshot /etc 125.245 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +eabec344 2025-06-19 04:25:11 services /etc 125.205 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +bd00342a 2025-05-31 04:00:07 morganna monthly snapshot /etc 2.127 GiB + /home + /var/lib/docker/volumes + +ed414112 2025-06-15 04:00:08 morganna weekly snapshot /etc 1.901 GiB + /home + /var/lib/docker/volumes + +8f0ec854 2025-06-20 04:00:09 morganna daily snapshot /etc 2.544 GiB + /home + /var/lib/docker/volumes + +1b4d37ea 2025-06-21 04:00:09 morganna daily snapshot /etc 2.785 GiB + /home + /var/lib/docker/volumes + +21c272bc 2025-06-22 04:00:09 morganna daily snapshot /etc 2.818 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +c03c4c08 2025-05-31 03:00:28 arr-stack monthly snapshot /etc 8.459 GiB + /home + /var/lib/docker/volumes + +4d8968e4 2025-06-15 03:00:28 arr-stack weekly snapshot /etc 8.973 GiB + /home + /var/lib/docker/volumes + +afd18edf 2025-06-20 03:00:49 arr-stack daily snapshot /etc 8.809 GiB + /home + /var/lib/docker/volumes + +d92b577c 2025-06-21 03:00:50 arr-stack daily snapshot /etc 8.816 GiB + /home + /var/lib/docker/volumes + +4ff159d6 2025-06-22 03:00:45 arr-stack daily snapshot /etc 8.819 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 39 snapshots +[0:33] 100.00% 39 / 39 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:01] 100.00% 10825 / 10825 packs processed + +to repack: 2800 blobs / 138.320 MiB +this removes: 2231 blobs / 116.768 MiB +to delete: 0 blobs / 0 B +total prune: 2231 blobs / 116.768 MiB +remaining: 823557 blobs / 174.461 GiB +unused size after prune: 8.722 GiB (5.00% of remaining size) + +repacking packs +[0:04] 100.00% 11 / 11 packs repacked +rebuilding index +[0:03] 100.00% 18 / 18 indexes processed +[0:00] 100.00% 9 / 9 old indexes deleted +removing 11 old packs +[0:00] 100.00% 11 / 11 files deleted +done +2025-06-22_03:30:01 Backup script done +2025-06-23_03:30:01 Starting backup +User: ccalifice +2025-06-23_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/maybe-finance +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/typebot +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-06-23_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot c166c56d + +Files: 103 new, 481 changed, 136755 unmodified +Dirs: 22 new, 205 changed, 39107 unmodified +Added to the repository: 565.155 MiB (167.454 MiB stored) + +processed 137339 files, 125.203 GiB in 0:19 +snapshot 205f9060 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/maybe-finance +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/typebot +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-06-23_03:30:01 Backup complete. +2025-06-23_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +bd50686b 2025-05-31 04:34:38 services monthly snapshot /etc 124.194 GiB + /home + /var/lib/docker/volumes + +1ec17593 2025-06-21 04:35:40 services daily snapshot /etc 125.219 GiB + /home + /var/lib/docker/volumes + +c166c56d 2025-06-22 04:22:35 services daily snapshot /etc 125.245 GiB + weekly snapshot /home + /var/lib/docker/volumes + +205f9060 2025-06-23 04:18:18 services daily snapshot /etc 125.203 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +5 snapshots + +remove 2 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +4d8c0b67 2025-06-15 04:34:16 services /etc 125.077 GiB + /home + /var/lib/docker/volumes + +af2eadb0 2025-06-20 04:27:41 services /etc 125.198 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +2 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +bd00342a 2025-05-31 04:00:07 morganna monthly snapshot /etc 2.127 GiB + /home + /var/lib/docker/volumes + +1b4d37ea 2025-06-21 04:00:09 morganna daily snapshot /etc 2.785 GiB + /home + /var/lib/docker/volumes + +21c272bc 2025-06-22 04:00:09 morganna daily snapshot /etc 2.818 GiB + weekly snapshot /home + /var/lib/docker/volumes + +534fa965 2025-06-23 04:00:09 morganna daily snapshot /etc 2.819 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +5 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +c03c4c08 2025-05-31 03:00:28 arr-stack monthly snapshot /etc 8.459 GiB + /home + /var/lib/docker/volumes + +d92b577c 2025-06-21 03:00:50 arr-stack daily snapshot /etc 8.816 GiB + /home + /var/lib/docker/volumes + +4ff159d6 2025-06-22 03:00:45 arr-stack daily snapshot /etc 8.819 GiB + weekly snapshot /home + /var/lib/docker/volumes + +7f2f2124 2025-06-23 03:00:52 arr-stack daily snapshot /etc 8.827 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +5 snapshots + +[0:00] 100.00% 2 / 2 files deleted +2 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 36 snapshots +[0:31] 100.00% 36 / 36 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:01] 100.00% 10826 / 10826 packs processed + +to repack: 16185 blobs / 214.240 MiB +this removes: 1939 blobs / 185.266 MiB +to delete: 483 blobs / 287.127 MiB +total prune: 2422 blobs / 472.393 MiB +remaining: 821167 blobs / 174.154 GiB +unused size after prune: 8.700 GiB (5.00% of remaining size) + +repacking packs +[0:07] 100.00% 17 / 17 packs repacked +rebuilding index +[0:03] 100.00% 18 / 18 indexes processed +[0:00] 100.00% 15 / 15 old indexes deleted +removing 35 old packs +[0:00] 100.00% 35 / 35 files deleted +done +2025-06-23_03:30:01 Backup script done +2025-06-25_03:30:01 Starting backup +User: ccalifice +2025-06-25_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing down Docker Compose in /home/ccalifice/maybe-finance +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing down Docker Compose in /home/ccalifice/typebot +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-06-25_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 205f9060 + +Files: 2146 new, 636 changed, 134982 unmodified +Dirs: 621 new, 38819 changed, 0 unmodified +Added to the repository: 1.367 GiB (484.897 MiB stored) + +processed 137764 files, 125.181 GiB in 0:26 +snapshot dc3665fb saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Bringing up Docker Compose in /home/ccalifice/maybe-finance +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Bringing up Docker Compose in /home/ccalifice/typebot +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-06-25_03:30:01 Backup complete. +2025-06-25_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +bd50686b 2025-05-31 04:34:38 services monthly snapshot /etc 124.194 GiB + /home + /var/lib/docker/volumes + +c166c56d 2025-06-22 04:22:35 services daily snapshot /etc 125.245 GiB + weekly snapshot /home + /var/lib/docker/volumes + +205f9060 2025-06-23 04:18:18 services daily snapshot /etc 125.203 GiB + /home + /var/lib/docker/volumes + +dc3665fb 2025-06-25 04:32:25 services daily snapshot /etc 125.181 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +5 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +1ec17593 2025-06-21 04:35:40 services /etc 125.219 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +bd00342a 2025-05-31 04:00:07 morganna monthly snapshot /etc 2.127 GiB + /home + /var/lib/docker/volumes + +21c272bc 2025-06-22 04:00:09 morganna weekly snapshot /etc 2.818 GiB + /home + /var/lib/docker/volumes + +534fa965 2025-06-23 04:00:09 morganna daily snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +9502afd2 2025-06-24 04:00:10 morganna daily snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +555b3481 2025-06-25 04:00:10 morganna daily snapshot /etc 2.819 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +c03c4c08 2025-05-31 03:00:28 arr-stack monthly snapshot /etc 8.459 GiB + /home + /var/lib/docker/volumes + +4ff159d6 2025-06-22 03:00:45 arr-stack weekly snapshot /etc 8.819 GiB + /home + /var/lib/docker/volumes + +7f2f2124 2025-06-23 03:00:52 arr-stack daily snapshot /etc 8.827 GiB + /home + /var/lib/docker/volumes + +8fc6c26a 2025-06-24 19:49:34 arr-stack daily snapshot /etc 8.696 GiB + /home + /var/lib/docker/volumes + +de0df92e 2025-06-25 03:00:17 arr-stack daily snapshot /etc 8.735 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 38 snapshots +[0:32] 100.00% 38 / 38 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:03] 100.00% 10827 / 10827 packs processed + +to repack: 17037 blobs / 130.874 MiB +this removes: 839 blobs / 102.726 MiB +to delete: 46 blobs / 32.526 MiB +total prune: 885 blobs / 135.251 MiB +remaining: 839174 blobs / 174.589 GiB +unused size after prune: 8.723 GiB (5.00% of remaining size) + +repacking packs +[0:06] 100.00% 10 / 10 packs repacked +rebuilding index +[0:03] 100.00% 19 / 19 indexes processed +[0:00] 100.00% 10 / 10 old indexes deleted +removing 12 old packs +[0:00] 100.00% 12 / 12 files deleted +done +2025-06-25_03:30:01 Backup script done +2025-06-26_03:30:01 Starting backup +User: ccalifice +2025-06-26_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-06-26_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot dc3665fb + +Files: 3170 new, 456 changed, 134155 unmodified +Dirs: 87 new, 175 changed, 39190 unmodified +Added to the repository: 500.790 MiB (141.806 MiB stored) + +processed 137781 files, 125.219 GiB in 0:17 +snapshot 9a6d3547 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-06-26_03:30:01 Backup complete. +2025-06-26_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +c03c4c08 2025-05-31 03:00:28 arr-stack monthly snapshot /etc 8.459 GiB + /home + /var/lib/docker/volumes + +4ff159d6 2025-06-22 03:00:45 arr-stack weekly snapshot /etc 8.819 GiB + /home + /var/lib/docker/volumes + +8fc6c26a 2025-06-24 19:49:34 arr-stack daily snapshot /etc 8.696 GiB + /home + /var/lib/docker/volumes + +de0df92e 2025-06-25 03:00:17 arr-stack daily snapshot /etc 8.735 GiB + /home + /var/lib/docker/volumes + +44f8e703 2025-06-26 03:00:50 arr-stack daily snapshot /etc 8.770 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +bd50686b 2025-05-31 04:34:38 services monthly snapshot /etc 124.194 GiB + /home + /var/lib/docker/volumes + +c166c56d 2025-06-22 04:22:35 services weekly snapshot /etc 125.245 GiB + /home + /var/lib/docker/volumes + +205f9060 2025-06-23 04:18:18 services daily snapshot /etc 125.203 GiB + /home + /var/lib/docker/volumes + +dc3665fb 2025-06-25 04:32:25 services daily snapshot /etc 125.181 GiB + /home + /var/lib/docker/volumes + +9a6d3547 2025-06-26 04:14:41 services daily snapshot /etc 125.219 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +bd00342a 2025-05-31 04:00:07 morganna monthly snapshot /etc 2.127 GiB + /home + /var/lib/docker/volumes + +21c272bc 2025-06-22 04:00:09 morganna weekly snapshot /etc 2.818 GiB + /home + /var/lib/docker/volumes + +9502afd2 2025-06-24 04:00:10 morganna daily snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +555b3481 2025-06-25 04:00:10 morganna daily snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +ca884f8b 2025-06-26 04:00:10 morganna daily snapshot /etc 2.819 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +2025-06-26_03:30:01 Backup script done +2025-06-27_03:30:01 Starting backup +User: ccalifice +2025-06-27_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-06-27_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 9a6d3547 + +Files: 278 new, 434 changed, 136567 unmodified +Dirs: 24 new, 170 changed, 39274 unmodified +Added to the repository: 536.970 MiB (160.436 MiB stored) + +processed 137279 files, 125.273 GiB in 0:17 +snapshot 8a0c1a5f saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-06-27_03:30:01 Backup complete. +2025-06-27_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +c03c4c08 2025-05-31 03:00:28 arr-stack monthly snapshot /etc 8.459 GiB + /home + /var/lib/docker/volumes + +4ff159d6 2025-06-22 03:00:45 arr-stack weekly snapshot /etc 8.819 GiB + /home + /var/lib/docker/volumes + +de0df92e 2025-06-25 03:00:17 arr-stack daily snapshot /etc 8.735 GiB + /home + /var/lib/docker/volumes + +44f8e703 2025-06-26 03:00:50 arr-stack daily snapshot /etc 8.770 GiB + /home + /var/lib/docker/volumes + +a6dc3009 2025-06-27 03:00:49 arr-stack daily snapshot /etc 8.762 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +bd50686b 2025-05-31 04:34:38 services monthly snapshot /etc 124.194 GiB + /home + /var/lib/docker/volumes + +c166c56d 2025-06-22 04:22:35 services weekly snapshot /etc 125.245 GiB + /home + /var/lib/docker/volumes + +dc3665fb 2025-06-25 04:32:25 services daily snapshot /etc 125.181 GiB + /home + /var/lib/docker/volumes + +9a6d3547 2025-06-26 04:14:41 services daily snapshot /etc 125.219 GiB + /home + /var/lib/docker/volumes + +8a0c1a5f 2025-06-27 04:10:27 services daily snapshot /etc 125.273 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +205f9060 2025-06-23 04:18:18 services /etc 125.203 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +bd00342a 2025-05-31 04:00:07 morganna monthly snapshot /etc 2.127 GiB + /home + /var/lib/docker/volumes + +21c272bc 2025-06-22 04:00:09 morganna weekly snapshot /etc 2.818 GiB + /home + /var/lib/docker/volumes + +555b3481 2025-06-25 04:00:10 morganna daily snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +ca884f8b 2025-06-26 04:00:10 morganna daily snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +9927c09e 2025-06-27 04:00:10 morganna daily snapshot /etc 2.819 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 39 snapshots +[0:26] 100.00% 39 / 39 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:03] 100.00% 10849 / 10849 packs processed + +to repack: 425 blobs / 64.313 MiB +this removes: 367 blobs / 58.836 MiB +to delete: 416 blobs / 50.412 MiB +total prune: 783 blobs / 109.248 MiB +remaining: 841201 blobs / 174.845 GiB +unused size after prune: 8.736 GiB (5.00% of remaining size) + +repacking packs +[0:01] 100.00% 4 / 4 packs repacked +rebuilding index +[0:01] 100.00% 19 / 19 indexes processed +[0:00] 100.00% 7 / 7 old indexes deleted +removing 9 old packs +[0:00] 100.00% 9 / 9 files deleted +done +2025-06-27_03:30:01 Backup script done +2025-06-28_03:30:01 Starting backup +User: ccalifice +2025-06-28_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-06-28_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 8a0c1a5f + +Files: 122 new, 638 changed, 136609 unmodified +Dirs: 27 new, 166 changed, 39293 unmodified +Added to the repository: 594.721 MiB (169.501 MiB stored) + +processed 137369 files, 125.315 GiB in 0:17 +snapshot cf5c7a31 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-06-28_03:30:01 Backup complete. +2025-06-28_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +bd50686b 2025-05-31 04:34:38 services monthly snapshot /etc 124.194 GiB + /home + /var/lib/docker/volumes + +c166c56d 2025-06-22 04:22:35 services weekly snapshot /etc 125.245 GiB + /home + /var/lib/docker/volumes + +9a6d3547 2025-06-26 04:14:41 services daily snapshot /etc 125.219 GiB + /home + /var/lib/docker/volumes + +8a0c1a5f 2025-06-27 04:10:27 services daily snapshot /etc 125.273 GiB + /home + /var/lib/docker/volumes + +cf5c7a31 2025-06-28 04:20:02 services daily snapshot /etc 125.315 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +dc3665fb 2025-06-25 04:32:25 services /etc 125.181 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +bd00342a 2025-05-31 04:00:07 morganna monthly snapshot /etc 2.127 GiB + /home + /var/lib/docker/volumes + +21c272bc 2025-06-22 04:00:09 morganna weekly snapshot /etc 2.818 GiB + /home + /var/lib/docker/volumes + +ca884f8b 2025-06-26 04:00:10 morganna daily snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +9927c09e 2025-06-27 04:00:10 morganna daily snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +55687dc9 2025-06-28 04:00:09 morganna daily snapshot /etc 2.819 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +c03c4c08 2025-05-31 03:00:28 arr-stack monthly snapshot /etc 8.459 GiB + /home + /var/lib/docker/volumes + +4ff159d6 2025-06-22 03:00:45 arr-stack weekly snapshot /etc 8.819 GiB + /home + /var/lib/docker/volumes + +44f8e703 2025-06-26 03:00:50 arr-stack daily snapshot /etc 8.770 GiB + /home + /var/lib/docker/volumes + +a6dc3009 2025-06-27 03:00:49 arr-stack daily snapshot /etc 8.762 GiB + /home + /var/lib/docker/volumes + +232ab987 2025-06-28 03:00:29 arr-stack daily snapshot /etc 8.763 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 39 snapshots +[0:27] 100.00% 39 / 39 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:02] 100.00% 10847 / 10847 packs processed + +to repack: 5026 blobs / 115.437 MiB +this removes: 899 blobs / 91.243 MiB +to delete: 0 blobs / 0 B +total prune: 899 blobs / 91.243 MiB +remaining: 841419 blobs / 174.920 GiB +unused size after prune: 8.741 GiB (5.00% of remaining size) + +repacking packs +[0:04] 100.00% 8 / 8 packs repacked +rebuilding index +[0:01] 100.00% 19 / 19 indexes processed +[0:00] 100.00% 10 / 10 old indexes deleted +removing 8 old packs +[0:00] 100.00% 8 / 8 files deleted +done +2025-06-28_03:30:01 Backup script done +2025-06-29_03:30:01 Starting backup +User: ccalifice +2025-06-29_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-06-29_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot cf5c7a31 + +Files: 101 new, 677 changed, 136651 unmodified +Dirs: 24 new, 173 changed, 39300 unmodified +Added to the repository: 629.417 MiB (179.421 MiB stored) + +processed 137429 files, 125.319 GiB in 0:18 +snapshot e8cfe8d0 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-06-29_03:30:01 Backup complete. +2025-06-29_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +c03c4c08 2025-05-31 03:00:28 arr-stack monthly snapshot /etc 8.459 GiB + /home + /var/lib/docker/volumes + +4ff159d6 2025-06-22 03:00:45 arr-stack weekly snapshot /etc 8.819 GiB + /home + /var/lib/docker/volumes + +a6dc3009 2025-06-27 03:00:49 arr-stack daily snapshot /etc 8.762 GiB + /home + /var/lib/docker/volumes + +232ab987 2025-06-28 03:00:29 arr-stack daily snapshot /etc 8.763 GiB + /home + /var/lib/docker/volumes + +d8f5152f 2025-06-29 03:00:50 arr-stack daily snapshot /etc 8.766 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +bd50686b 2025-05-31 04:34:38 services monthly snapshot /etc 124.194 GiB + /home + /var/lib/docker/volumes + +c166c56d 2025-06-22 04:22:35 services weekly snapshot /etc 125.245 GiB + /home + /var/lib/docker/volumes + +8a0c1a5f 2025-06-27 04:10:27 services daily snapshot /etc 125.273 GiB + /home + /var/lib/docker/volumes + +cf5c7a31 2025-06-28 04:20:02 services daily snapshot /etc 125.315 GiB + /home + /var/lib/docker/volumes + +e8cfe8d0 2025-06-29 04:09:16 services daily snapshot /etc 125.319 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +9a6d3547 2025-06-26 04:14:41 services /etc 125.219 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +bd00342a 2025-05-31 04:00:07 morganna monthly snapshot /etc 2.127 GiB + /home + /var/lib/docker/volumes + +21c272bc 2025-06-22 04:00:09 morganna weekly snapshot /etc 2.818 GiB + /home + /var/lib/docker/volumes + +9927c09e 2025-06-27 04:00:10 morganna daily snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +55687dc9 2025-06-28 04:00:09 morganna daily snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +d3b5fdbf 2025-06-29 04:00:10 morganna daily snapshot /etc 2.819 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 39 snapshots +[0:27] 100.00% 39 / 39 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:02] 100.00% 10858 / 10858 packs processed + +to repack: 5187 blobs / 124.434 MiB +this removes: 1012 blobs / 99.202 MiB +to delete: 0 blobs / 0 B +total prune: 1012 blobs / 99.202 MiB +remaining: 841727 blobs / 175.006 GiB +unused size after prune: 8.748 GiB (5.00% of remaining size) + +repacking packs +[0:04] 100.00% 10 / 10 packs repacked +rebuilding index +[0:01] 100.00% 19 / 19 indexes processed +[0:00] 100.00% 9 / 9 old indexes deleted +removing 10 old packs +[0:00] 100.00% 10 / 10 files deleted +done +2025-06-29_03:30:01 Backup script done +2025-06-30_03:30:01 Starting backup +User: ccalifice +2025-06-30_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-06-30_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot e8cfe8d0 + +Files: 87 new, 661 changed, 136737 unmodified +Dirs: 23 new, 162 changed, 39328 unmodified +Added to the repository: 674.004 MiB (188.018 MiB stored) + +processed 137485 files, 125.387 GiB in 0:18 +snapshot 4c0b7734 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-06-30_03:30:01 Backup complete. +2025-06-30_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +bd00342a 2025-05-31 04:00:07 morganna monthly snapshot /etc 2.127 GiB + /home + /var/lib/docker/volumes + +55687dc9 2025-06-28 04:00:09 morganna daily snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +d3b5fdbf 2025-06-29 04:00:10 morganna daily snapshot /etc 2.819 GiB + weekly snapshot /home + /var/lib/docker/volumes + +ce4da403 2025-06-30 04:00:08 morganna daily snapshot /etc 2.819 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +5 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +c03c4c08 2025-05-31 03:00:28 arr-stack monthly snapshot /etc 8.459 GiB + /home + /var/lib/docker/volumes + +232ab987 2025-06-28 03:00:29 arr-stack daily snapshot /etc 8.763 GiB + /home + /var/lib/docker/volumes + +d8f5152f 2025-06-29 03:00:50 arr-stack daily snapshot /etc 8.766 GiB + weekly snapshot /home + /var/lib/docker/volumes + +a1829f91 2025-06-30 03:00:40 arr-stack daily snapshot /etc 8.820 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +5 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +bd50686b 2025-05-31 04:34:38 services monthly snapshot /etc 124.194 GiB + /home + /var/lib/docker/volumes + +cf5c7a31 2025-06-28 04:20:02 services daily snapshot /etc 125.315 GiB + /home + /var/lib/docker/volumes + +e8cfe8d0 2025-06-29 04:09:16 services daily snapshot /etc 125.319 GiB + weekly snapshot /home + /var/lib/docker/volumes + +4c0b7734 2025-06-30 04:18:22 services daily snapshot /etc 125.387 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +5 snapshots + +remove 2 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +c166c56d 2025-06-22 04:22:35 services /etc 125.245 GiB + /home + /var/lib/docker/volumes + +8a0c1a5f 2025-06-27 04:10:27 services /etc 125.273 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +2 snapshots + +[0:00] 100.00% 2 / 2 files deleted +2 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 36 snapshots +[0:27] 100.00% 36 / 36 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:03] 100.00% 10866 / 10866 packs processed + +to repack: 29660 blobs / 295.858 MiB +this removes: 3070 blobs / 258.390 MiB +to delete: 1034 blobs / 335.454 MiB +total prune: 4104 blobs / 593.844 MiB +remaining: 835359 blobs / 174.597 GiB +unused size after prune: 8.718 GiB (4.99% of remaining size) + +repacking packs +[0:10] 100.00% 21 / 21 packs repacked +rebuilding index +[0:03] 100.00% 18 / 18 indexes processed +[0:00] 100.00% 16 / 16 old indexes deleted +removing 43 old packs +[0:01] 100.00% 43 / 43 files deleted +done +2025-06-30_03:30:01 Backup script done +2025-07-01_03:30:01 Starting backup +User: ccalifice +2025-07-01_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-01_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 4c0b7734 + +Files: 116 new, 644 changed, 136743 unmodified +Dirs: 25 new, 163 changed, 39341 unmodified +Added to the repository: 615.863 MiB (178.362 MiB stored) + +processed 137503 files, 125.408 GiB in 0:18 +snapshot 23c1874b saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-01_03:30:01 Backup complete. +2025-07-01_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 4 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +e8cfe8d0 2025-06-29 04:09:16 services daily snapshot /etc 125.319 GiB + weekly snapshot /home + /var/lib/docker/volumes + +4c0b7734 2025-06-30 04:18:22 services daily snapshot /etc 125.387 GiB + monthly snapshot /home + /var/lib/docker/volumes + +23c1874b 2025-07-01 04:11:26 services daily snapshot /etc 125.408 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +4 snapshots + +remove 2 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +bd50686b 2025-05-31 04:34:38 services /etc 124.194 GiB + /home + /var/lib/docker/volumes + +cf5c7a31 2025-06-28 04:20:02 services /etc 125.315 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +2 snapshots + +keep 4 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +d3b5fdbf 2025-06-29 04:00:10 morganna daily snapshot /etc 2.819 GiB + weekly snapshot /home + /var/lib/docker/volumes + +ce4da403 2025-06-30 04:00:08 morganna daily snapshot /etc 2.819 GiB + monthly snapshot /home + /var/lib/docker/volumes + +c7d07dc7 2025-07-01 04:00:10 morganna daily snapshot /etc 2.819 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +4 snapshots + +keep 4 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +d8f5152f 2025-06-29 03:00:50 arr-stack daily snapshot /etc 8.766 GiB + weekly snapshot /home + /var/lib/docker/volumes + +a1829f91 2025-06-30 03:00:40 arr-stack daily snapshot /etc 8.820 GiB + monthly snapshot /home + /var/lib/docker/volumes + +b65f26cc 2025-07-01 03:00:28 arr-stack daily snapshot /etc 8.827 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +4 snapshots + +[0:00] 100.00% 2 / 2 files deleted +2 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 33 snapshots +[0:25] 100.00% 33 / 33 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:03] 100.00% 10822 / 10822 packs processed + +to repack: 27446 blobs / 363.535 MiB +this removes: 3743 blobs / 343.232 MiB +to delete: 1566 blobs / 632.125 MiB +total prune: 5309 blobs / 975.358 MiB +remaining: 828554 blobs / 173.561 GiB +unused size after prune: 8.673 GiB (5.00% of remaining size) + +repacking packs +[0:06] 100.00% 24 / 24 packs repacked +rebuilding index +[0:01] 100.00% 19 / 19 indexes processed +[0:00] 100.00% 17 / 17 old indexes deleted +removing 67 old packs +[0:01] 100.00% 67 / 67 files deleted +done +2025-07-01_03:30:01 Backup script done +2025-07-02_03:30:01 Starting backup +User: ccalifice +2025-07-02_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-02_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 23c1874b + +Files: 171 new, 691 changed, 136661 unmodified +Dirs: 24 new, 174 changed, 39342 unmodified +Added to the repository: 561.147 MiB (177.743 MiB stored) + +processed 137523 files, 125.376 GiB in 0:17 +snapshot 83b79362 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-02_03:30:01 Backup complete. +2025-07-02_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +e8cfe8d0 2025-06-29 04:09:16 services weekly snapshot /etc 125.319 GiB + /home + /var/lib/docker/volumes + +4c0b7734 2025-06-30 04:18:22 services daily snapshot /etc 125.387 GiB + monthly snapshot /home + /var/lib/docker/volumes + +23c1874b 2025-07-01 04:11:26 services daily snapshot /etc 125.408 GiB + /home + /var/lib/docker/volumes + +83b79362 2025-07-02 04:23:04 services daily snapshot /etc 125.376 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +5 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +d3b5fdbf 2025-06-29 04:00:10 morganna weekly snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +ce4da403 2025-06-30 04:00:08 morganna daily snapshot /etc 2.819 GiB + monthly snapshot /home + /var/lib/docker/volumes + +c7d07dc7 2025-07-01 04:00:10 morganna daily snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +90f4f07e 2025-07-02 04:00:10 morganna daily snapshot /etc 2.819 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +5 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +d8f5152f 2025-06-29 03:00:50 arr-stack weekly snapshot /etc 8.766 GiB + /home + /var/lib/docker/volumes + +a1829f91 2025-06-30 03:00:40 arr-stack daily snapshot /etc 8.820 GiB + monthly snapshot /home + /var/lib/docker/volumes + +b65f26cc 2025-07-01 03:00:28 arr-stack daily snapshot /etc 8.827 GiB + /home + /var/lib/docker/volumes + +57493935 2025-07-02 03:00:29 arr-stack daily snapshot /etc 8.832 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +5 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +51102b38 2024-12-31 03:30:12 services rewrite yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +d7419ddc 2024-12-31 03:30:12 services oldest yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +2025-07-02_03:30:01 Backup script done +2025-07-03_03:30:01 Starting backup +User: ccalifice +2025-07-03_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-03_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 83b79362 + +Files: 102 new, 632 changed, 136854 unmodified +Dirs: 23 new, 166 changed, 39367 unmodified +Added to the repository: 490.259 MiB (145.083 MiB stored) + +processed 137588 files, 125.400 GiB in 0:17 +snapshot e9bd95e0 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-03_03:30:01 Backup complete. +2025-07-03_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +e8cfe8d0 2025-06-29 04:09:16 services weekly snapshot /etc 125.319 GiB + /home + /var/lib/docker/volumes + +4c0b7734 2025-06-30 04:18:22 services monthly snapshot /etc 125.387 GiB + /home + /var/lib/docker/volumes + +23c1874b 2025-07-01 04:11:26 services daily snapshot /etc 125.408 GiB + /home + /var/lib/docker/volumes + +83b79362 2025-07-02 04:23:04 services daily snapshot /etc 125.376 GiB + /home + /var/lib/docker/volumes + +e9bd95e0 2025-07-03 04:13:58 services daily snapshot /etc 125.400 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +d8f5152f 2025-06-29 03:00:50 arr-stack weekly snapshot /etc 8.766 GiB + /home + /var/lib/docker/volumes + +a1829f91 2025-06-30 03:00:40 arr-stack monthly snapshot /etc 8.820 GiB + /home + /var/lib/docker/volumes + +b65f26cc 2025-07-01 03:00:28 arr-stack daily snapshot /etc 8.827 GiB + /home + /var/lib/docker/volumes + +57493935 2025-07-02 03:00:29 arr-stack daily snapshot /etc 8.832 GiB + /home + /var/lib/docker/volumes + +015021a2 2025-07-03 03:00:30 arr-stack daily snapshot /etc 8.836 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +d3b5fdbf 2025-06-29 04:00:10 morganna weekly snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +ce4da403 2025-06-30 04:00:08 morganna monthly snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +c7d07dc7 2025-07-01 04:00:10 morganna daily snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +90f4f07e 2025-07-02 04:00:10 morganna daily snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +40b6e179 2025-07-03 04:00:09 morganna daily snapshot /etc 2.819 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +2025-07-03_03:30:01 Backup script done +2025-07-04_03:30:01 Starting backup +User: ccalifice +2025-07-04_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-04_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot e9bd95e0 + +Files: 442 new, 705 changed, 136789 unmodified +Dirs: 177 new, 343 changed, 39198 unmodified +Added to the repository: 1.257 GiB (860.845 MiB stored) + +processed 137936 files, 126.136 GiB in 0:41 +snapshot e84e1458 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-04_03:30:01 Backup complete. +2025-07-04_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +d8f5152f 2025-06-29 03:00:50 arr-stack weekly snapshot /etc 8.766 GiB + /home + /var/lib/docker/volumes + +a1829f91 2025-06-30 03:00:40 arr-stack monthly snapshot /etc 8.820 GiB + /home + /var/lib/docker/volumes + +57493935 2025-07-02 03:00:29 arr-stack daily snapshot /etc 8.832 GiB + /home + /var/lib/docker/volumes + +015021a2 2025-07-03 03:00:30 arr-stack daily snapshot /etc 8.836 GiB + /home + /var/lib/docker/volumes + +917be1bb 2025-07-04 03:00:29 arr-stack daily snapshot /etc 8.843 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +e8cfe8d0 2025-06-29 04:09:16 services weekly snapshot /etc 125.319 GiB + /home + /var/lib/docker/volumes + +4c0b7734 2025-06-30 04:18:22 services monthly snapshot /etc 125.387 GiB + /home + /var/lib/docker/volumes + +83b79362 2025-07-02 04:23:04 services daily snapshot /etc 125.376 GiB + /home + /var/lib/docker/volumes + +e9bd95e0 2025-07-03 04:13:58 services daily snapshot /etc 125.400 GiB + /home + /var/lib/docker/volumes + +e84e1458 2025-07-04 04:04:12 services daily snapshot /etc 126.136 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +23c1874b 2025-07-01 04:11:26 services /etc 125.408 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +d3b5fdbf 2025-06-29 04:00:10 morganna weekly snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +ce4da403 2025-06-30 04:00:08 morganna monthly snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +90f4f07e 2025-07-02 04:00:10 morganna daily snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +40b6e179 2025-07-03 04:00:09 morganna daily snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +b465310e 2025-07-04 04:00:10 morganna daily snapshot /etc 2.819 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 39 snapshots +[0:27] 100.00% 39 / 39 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:03] 100.00% 10833 / 10833 packs processed + +to repack: 1222 blobs / 84.272 MiB +this removes: 1071 blobs / 78.322 MiB +to delete: 0 blobs / 0 B +total prune: 1071 blobs / 78.322 MiB +remaining: 833459 blobs / 174.691 GiB +unused size after prune: 8.724 GiB (4.99% of remaining size) + +repacking packs +[0:01] 100.00% 6 / 6 packs repacked +rebuilding index +[0:01] 100.00% 18 / 18 indexes processed +[0:00] 100.00% 8 / 8 old indexes deleted +removing 6 old packs +[0:00] 100.00% 6 / 6 files deleted +done +2025-07-04_03:30:01 Backup script done +2025-07-05_03:30:01 Starting backup +User: ccalifice +2025-07-05_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-05_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot e84e1458 + +Files: 132 new, 655 changed, 137187 unmodified +Dirs: 23 new, 162 changed, 39543 unmodified +Added to the repository: 586.496 MiB (176.280 MiB stored) + +processed 137974 files, 126.120 GiB in 0:18 +snapshot 9cf22af3 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-05_03:30:01 Backup complete. +2025-07-05_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +d3b5fdbf 2025-06-29 04:00:10 morganna weekly snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +ce4da403 2025-06-30 04:00:08 morganna monthly snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +40b6e179 2025-07-03 04:00:09 morganna daily snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +b465310e 2025-07-04 04:00:10 morganna daily snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +86b6d2cd 2025-07-05 04:00:10 morganna daily snapshot /etc 2.819 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +d8f5152f 2025-06-29 03:00:50 arr-stack weekly snapshot /etc 8.766 GiB + /home + /var/lib/docker/volumes + +a1829f91 2025-06-30 03:00:40 arr-stack monthly snapshot /etc 8.820 GiB + /home + /var/lib/docker/volumes + +015021a2 2025-07-03 03:00:30 arr-stack daily snapshot /etc 8.836 GiB + /home + /var/lib/docker/volumes + +917be1bb 2025-07-04 03:00:29 arr-stack daily snapshot /etc 8.843 GiB + /home + /var/lib/docker/volumes + +0250bad6 2025-07-05 03:00:28 arr-stack daily snapshot /etc 8.844 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +e8cfe8d0 2025-06-29 04:09:16 services weekly snapshot /etc 125.319 GiB + /home + /var/lib/docker/volumes + +4c0b7734 2025-06-30 04:18:22 services monthly snapshot /etc 125.387 GiB + /home + /var/lib/docker/volumes + +e9bd95e0 2025-07-03 04:13:58 services daily snapshot /etc 125.400 GiB + /home + /var/lib/docker/volumes + +e84e1458 2025-07-04 04:04:12 services daily snapshot /etc 126.136 GiB + /home + /var/lib/docker/volumes + +9cf22af3 2025-07-05 04:17:20 services daily snapshot /etc 126.120 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +83b79362 2025-07-02 04:23:04 services /etc 125.376 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 39 snapshots +[0:27] 100.00% 39 / 39 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:02] 100.00% 10845 / 10845 packs processed + +to repack: 969 blobs / 107.288 MiB +this removes: 773 blobs / 95.173 MiB +to delete: 0 blobs / 0 B +total prune: 773 blobs / 95.173 MiB +remaining: 834107 blobs / 174.770 GiB +unused size after prune: 8.730 GiB (5.00% of remaining size) + +repacking packs +[0:02] 100.00% 8 / 8 packs repacked +rebuilding index +[0:01] 100.00% 18 / 18 indexes processed +[0:00] 100.00% 9 / 9 old indexes deleted +removing 8 old packs +[0:00] 100.00% 8 / 8 files deleted +done +2025-07-05_03:30:01 Backup script done +2025-07-06_03:30:01 Starting backup +User: ccalifice +2025-07-06_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-06_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 9cf22af3 + +Files: 96 new, 664 changed, 137133 unmodified +Dirs: 24 new, 161 changed, 39560 unmodified +Added to the repository: 466.171 MiB (139.134 MiB stored) + +processed 137893 files, 126.124 GiB in 0:16 +snapshot 71cf007f saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-06_03:30:01 Backup complete. +2025-07-06_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +e8cfe8d0 2025-06-29 04:09:16 services weekly snapshot /etc 125.319 GiB + /home + /var/lib/docker/volumes + +4c0b7734 2025-06-30 04:18:22 services monthly snapshot /etc 125.387 GiB + /home + /var/lib/docker/volumes + +e84e1458 2025-07-04 04:04:12 services daily snapshot /etc 126.136 GiB + /home + /var/lib/docker/volumes + +9cf22af3 2025-07-05 04:17:20 services daily snapshot /etc 126.120 GiB + /home + /var/lib/docker/volumes + +71cf007f 2025-07-06 04:09:22 services daily snapshot /etc 126.124 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +e9bd95e0 2025-07-03 04:13:58 services /etc 125.400 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +d3b5fdbf 2025-06-29 04:00:10 morganna weekly snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +ce4da403 2025-06-30 04:00:08 morganna monthly snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +b465310e 2025-07-04 04:00:10 morganna daily snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +86b6d2cd 2025-07-05 04:00:10 morganna daily snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +f57e61a1 2025-07-06 04:00:09 morganna daily snapshot /etc 2.819 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +d8f5152f 2025-06-29 03:00:50 arr-stack weekly snapshot /etc 8.766 GiB + /home + /var/lib/docker/volumes + +a1829f91 2025-06-30 03:00:40 arr-stack monthly snapshot /etc 8.820 GiB + /home + /var/lib/docker/volumes + +917be1bb 2025-07-04 03:00:29 arr-stack daily snapshot /etc 8.843 GiB + /home + /var/lib/docker/volumes + +0250bad6 2025-07-05 03:00:28 arr-stack daily snapshot /etc 8.844 GiB + /home + /var/lib/docker/volumes + +e5e1e281 2025-07-06 03:00:28 arr-stack daily snapshot /etc 8.849 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 39 snapshots +[0:27] 100.00% 39 / 39 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:03] 100.00% 10844 / 10844 packs processed + +to repack: 1250 blobs / 143.697 MiB +this removes: 1100 blobs / 123.002 MiB +to delete: 0 blobs / 0 B +total prune: 1100 blobs / 123.002 MiB +remaining: 834458 blobs / 174.801 GiB +unused size after prune: 8.728 GiB (4.99% of remaining size) + +repacking packs +[0:03] 100.00% 10 / 10 packs repacked +rebuilding index +[0:01] 100.00% 18 / 18 indexes processed +[0:00] 100.00% 8 / 8 old indexes deleted +removing 10 old packs +[0:00] 100.00% 10 / 10 files deleted +done +2025-07-06_03:30:01 Backup script done +2025-07-07_03:30:01 Starting backup +User: ccalifice +2025-07-07_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-07_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 71cf007f + +Files: 105 new, 639 changed, 137214 unmodified +Dirs: 26 new, 162 changed, 39574 unmodified +Added to the repository: 530.554 MiB (154.324 MiB stored) + +processed 137958 files, 126.183 GiB in 0:17 +snapshot a83e6baf saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-07_03:30:01 Backup complete. +2025-07-07_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +a1829f91 2025-06-30 03:00:40 arr-stack monthly snapshot /etc 8.820 GiB + /home + /var/lib/docker/volumes + +0250bad6 2025-07-05 03:00:28 arr-stack daily snapshot /etc 8.844 GiB + /home + /var/lib/docker/volumes + +e5e1e281 2025-07-06 03:00:28 arr-stack daily snapshot /etc 8.849 GiB + weekly snapshot /home + /var/lib/docker/volumes + +2ecfb2f4 2025-07-07 03:00:29 arr-stack daily snapshot /etc 8.853 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +5 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +4c0b7734 2025-06-30 04:18:22 services monthly snapshot /etc 125.387 GiB + /home + /var/lib/docker/volumes + +9cf22af3 2025-07-05 04:17:20 services daily snapshot /etc 126.120 GiB + /home + /var/lib/docker/volumes + +71cf007f 2025-07-06 04:09:22 services daily snapshot /etc 126.124 GiB + weekly snapshot /home + /var/lib/docker/volumes + +a83e6baf 2025-07-07 04:10:13 services daily snapshot /etc 126.183 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +5 snapshots + +remove 2 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +e8cfe8d0 2025-06-29 04:09:16 services /etc 125.319 GiB + /home + /var/lib/docker/volumes + +e84e1458 2025-07-04 04:04:12 services /etc 126.136 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +2 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +ce4da403 2025-06-30 04:00:08 morganna monthly snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +86b6d2cd 2025-07-05 04:00:10 morganna daily snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +f57e61a1 2025-07-06 04:00:09 morganna daily snapshot /etc 2.819 GiB + weekly snapshot /home + /var/lib/docker/volumes + +7200c842 2025-07-07 04:00:09 morganna daily snapshot /etc 2.819 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +5 snapshots + +[0:00] 100.00% 2 / 2 files deleted +2 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 36 snapshots +[0:21] 100.00% 36 / 36 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:03] 100.00% 10851 / 10851 packs processed + +to repack: 27734 blobs / 310.601 MiB +this removes: 2281 blobs / 246.878 MiB +to delete: 76 blobs / 50.103 MiB +total prune: 2357 blobs / 296.981 MiB +remaining: 833284 blobs / 174.663 GiB +unused size after prune: 8.732 GiB (5.00% of remaining size) + +repacking packs +[0:12] 100.00% 23 / 23 packs repacked +rebuilding index +[0:03] 100.00% 18 / 18 indexes processed +[0:00] 100.00% 12 / 12 old indexes deleted +removing 26 old packs +[0:01] 100.00% 26 / 26 files deleted +done +2025-07-07_03:30:01 Backup script done +2025-07-08_03:30:01 Starting backup +User: ccalifice +2025-07-08_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-08_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot a83e6baf + +Files: 125 new, 573 changed, 136728 unmodified +Dirs: 26 new, 177 changed, 39542 unmodified +Added to the repository: 521.201 MiB (149.810 MiB stored) + +processed 137426 files, 126.124 GiB in 0:17 +snapshot eaa1a387 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-08_03:30:01 Backup complete. +2025-07-08_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +a1829f91 2025-06-30 03:00:40 arr-stack monthly snapshot /etc 8.820 GiB + /home + /var/lib/docker/volumes + +e5e1e281 2025-07-06 03:00:28 arr-stack daily snapshot /etc 8.849 GiB + weekly snapshot /home + /var/lib/docker/volumes + +2ecfb2f4 2025-07-07 03:00:29 arr-stack daily snapshot /etc 8.853 GiB + /home + /var/lib/docker/volumes + +c58a2bfa 2025-07-08 03:00:28 arr-stack daily snapshot /etc 9.498 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +5 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +4c0b7734 2025-06-30 04:18:22 services monthly snapshot /etc 125.387 GiB + /home + /var/lib/docker/volumes + +71cf007f 2025-07-06 04:09:22 services daily snapshot /etc 126.124 GiB + weekly snapshot /home + /var/lib/docker/volumes + +a83e6baf 2025-07-07 04:10:13 services daily snapshot /etc 126.183 GiB + /home + /var/lib/docker/volumes + +eaa1a387 2025-07-08 04:12:18 services daily snapshot /etc 126.124 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +5 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +9cf22af3 2025-07-05 04:17:20 services /etc 126.120 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +ce4da403 2025-06-30 04:00:08 morganna monthly snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +f57e61a1 2025-07-06 04:00:09 morganna daily snapshot /etc 2.819 GiB + weekly snapshot /home + /var/lib/docker/volumes + +7200c842 2025-07-07 04:00:09 morganna daily snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +a03100ca 2025-07-08 04:00:08 morganna daily snapshot /etc 2.819 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +5 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 36 snapshots +[0:25] 100.00% 36 / 36 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:03] 100.00% 10872 / 10872 packs processed + +to repack: 1246 blobs / 109.466 MiB +this removes: 1034 blobs / 90.564 MiB +to delete: 0 blobs / 0 B +total prune: 1034 blobs / 90.564 MiB +remaining: 837630 blobs / 175.178 GiB +unused size after prune: 8.755 GiB (5.00% of remaining size) + +repacking packs +[0:03] 100.00% 9 / 9 packs repacked +rebuilding index +[0:01] 100.00% 18 / 18 indexes processed +[0:00] 100.00% 7 / 7 old indexes deleted +removing 9 old packs +[0:00] 100.00% 9 / 9 files deleted +done +2025-07-08_03:30:01 Backup script done +2025-07-09_03:30:01 Starting backup +User: ccalifice +2025-07-09_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-09_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot eaa1a387 + +Files: 181 new, 525 changed, 136840 unmodified +Dirs: 24 new, 165 changed, 39571 unmodified +Added to the repository: 532.425 MiB (158.479 MiB stored) + +processed 137546 files, 126.196 GiB in 0:18 +snapshot 3c4fad55 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-09_03:30:01 Backup complete. +2025-07-09_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +a1829f91 2025-06-30 03:00:40 arr-stack monthly snapshot /etc 8.820 GiB + /home + /var/lib/docker/volumes + +e5e1e281 2025-07-06 03:00:28 arr-stack weekly snapshot /etc 8.849 GiB + /home + /var/lib/docker/volumes + +2ecfb2f4 2025-07-07 03:00:29 arr-stack daily snapshot /etc 8.853 GiB + /home + /var/lib/docker/volumes + +c58a2bfa 2025-07-08 03:00:28 arr-stack daily snapshot /etc 9.498 GiB + /home + /var/lib/docker/volumes + +62335c84 2025-07-09 03:00:31 arr-stack daily snapshot /etc 9.489 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +4c0b7734 2025-06-30 04:18:22 services monthly snapshot /etc 125.387 GiB + /home + /var/lib/docker/volumes + +71cf007f 2025-07-06 04:09:22 services weekly snapshot /etc 126.124 GiB + /home + /var/lib/docker/volumes + +a83e6baf 2025-07-07 04:10:13 services daily snapshot /etc 126.183 GiB + /home + /var/lib/docker/volumes + +eaa1a387 2025-07-08 04:12:18 services daily snapshot /etc 126.124 GiB + /home + /var/lib/docker/volumes + +3c4fad55 2025-07-09 04:08:32 services daily snapshot /etc 126.196 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +ce4da403 2025-06-30 04:00:08 morganna monthly snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +f57e61a1 2025-07-06 04:00:09 morganna weekly snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +7200c842 2025-07-07 04:00:09 morganna daily snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +a03100ca 2025-07-08 04:00:08 morganna daily snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +a8f9fda1 2025-07-09 04:00:09 morganna daily snapshot /etc 2.819 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +2025-07-09_03:30:01 Backup script done +2025-07-10_03:30:01 Starting backup +User: ccalifice +2025-07-10_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing down Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-10_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 3c4fad55 + +Files: 156 new, 513 changed, 136959 unmodified +Dirs: 69 new, 172 changed, 39573 unmodified +Added to the repository: 568.858 MiB (156.850 MiB stored) + +processed 137628 files, 126.341 GiB in 0:21 +snapshot 41428ffb saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing up Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-10_03:30:01 Backup complete. +2025-07-10_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +a1829f91 2025-06-30 03:00:40 arr-stack monthly snapshot /etc 8.820 GiB + /home + /var/lib/docker/volumes + +e5e1e281 2025-07-06 03:00:28 arr-stack weekly snapshot /etc 8.849 GiB + /home + /var/lib/docker/volumes + +c58a2bfa 2025-07-08 03:00:28 arr-stack daily snapshot /etc 9.498 GiB + /home + /var/lib/docker/volumes + +62335c84 2025-07-09 03:00:31 arr-stack daily snapshot /etc 9.489 GiB + /home + /var/lib/docker/volumes + +0676a16a 2025-07-10 03:00:37 arr-stack daily snapshot /etc 9.480 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +4c0b7734 2025-06-30 04:18:22 services monthly snapshot /etc 125.387 GiB + /home + /var/lib/docker/volumes + +71cf007f 2025-07-06 04:09:22 services weekly snapshot /etc 126.124 GiB + /home + /var/lib/docker/volumes + +eaa1a387 2025-07-08 04:12:18 services daily snapshot /etc 126.124 GiB + /home + /var/lib/docker/volumes + +3c4fad55 2025-07-09 04:08:32 services daily snapshot /etc 126.196 GiB + /home + /var/lib/docker/volumes + +41428ffb 2025-07-10 04:02:52 services daily snapshot /etc 126.341 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +a83e6baf 2025-07-07 04:10:13 services /etc 126.183 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +ce4da403 2025-06-30 04:00:08 morganna monthly snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +f57e61a1 2025-07-06 04:00:09 morganna weekly snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +a03100ca 2025-07-08 04:00:08 morganna daily snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +a8f9fda1 2025-07-09 04:00:09 morganna daily snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +7eaf3bdb 2025-07-10 04:00:10 morganna daily snapshot /etc 2.819 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 39 snapshots +[0:26] 100.00% 39 / 39 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:02] 100.00% 10896 / 10896 packs processed + +to repack: 1963 blobs / 122.219 MiB +this removes: 852 blobs / 102.619 MiB +to delete: 0 blobs / 0 B +total prune: 852 blobs / 102.619 MiB +remaining: 840426 blobs / 175.430 GiB +unused size after prune: 8.770 GiB (5.00% of remaining size) + +repacking packs +[0:04] 100.00% 20 / 20 packs repacked +rebuilding index +[0:01] 100.00% 19 / 19 indexes processed +[0:00] 100.00% 9 / 9 old indexes deleted +removing 20 old packs +[0:00] 100.00% 20 / 20 files deleted +done +2025-07-10_03:30:01 Backup script done +2025-07-11_03:30:01 Starting backup +User: ccalifice +2025-07-11_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing down Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-11_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 41428ffb + +Files: 257 new, 677 changed, 136862 unmodified +Dirs: 21 new, 190 changed, 39610 unmodified +Added to the repository: 647.845 MiB (185.112 MiB stored) + +processed 137796 files, 126.399 GiB in 0:18 +snapshot 28ab4409 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing up Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-11_03:30:01 Backup complete. +2025-07-11_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +ce4da403 2025-06-30 04:00:08 morganna monthly snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +f57e61a1 2025-07-06 04:00:09 morganna weekly snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +a8f9fda1 2025-07-09 04:00:09 morganna daily snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +7eaf3bdb 2025-07-10 04:00:10 morganna daily snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +0fcaafde 2025-07-11 04:00:09 morganna daily snapshot /etc 2.819 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +a1829f91 2025-06-30 03:00:40 arr-stack monthly snapshot /etc 8.820 GiB + /home + /var/lib/docker/volumes + +e5e1e281 2025-07-06 03:00:28 arr-stack weekly snapshot /etc 8.849 GiB + /home + /var/lib/docker/volumes + +62335c84 2025-07-09 03:00:31 arr-stack daily snapshot /etc 9.489 GiB + /home + /var/lib/docker/volumes + +0676a16a 2025-07-10 03:00:37 arr-stack daily snapshot /etc 9.480 GiB + /home + /var/lib/docker/volumes + +a158cfc8 2025-07-11 03:00:29 arr-stack daily snapshot /etc 9.504 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +4c0b7734 2025-06-30 04:18:22 services monthly snapshot /etc 125.387 GiB + /home + /var/lib/docker/volumes + +71cf007f 2025-07-06 04:09:22 services weekly snapshot /etc 126.124 GiB + /home + /var/lib/docker/volumes + +3c4fad55 2025-07-09 04:08:32 services daily snapshot /etc 126.196 GiB + /home + /var/lib/docker/volumes + +41428ffb 2025-07-10 04:02:52 services daily snapshot /etc 126.341 GiB + /home + /var/lib/docker/volumes + +28ab4409 2025-07-11 04:09:05 services daily snapshot /etc 126.399 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +eaa1a387 2025-07-08 04:12:18 services /etc 126.124 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 39 snapshots +[0:29] 100.00% 39 / 39 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:02] 100.00% 10898 / 10898 packs processed + +to repack: 1057 blobs / 100.521 MiB +this removes: 751 blobs / 84.672 MiB +to delete: 0 blobs / 0 B +total prune: 751 blobs / 84.672 MiB +remaining: 841413 blobs / 175.553 GiB +unused size after prune: 8.774 GiB (5.00% of remaining size) + +repacking packs +[0:03] 100.00% 9 / 9 packs repacked +rebuilding index +[0:02] 100.00% 19 / 19 indexes processed +[0:00] 100.00% 8 / 8 old indexes deleted +removing 9 old packs +[0:00] 100.00% 9 / 9 files deleted +done +2025-07-11_03:30:01 Backup script done +2025-07-12_03:30:01 Starting backup +User: ccalifice +2025-07-12_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing down Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-12_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 28ab4409 + +Files: 152 new, 752 changed, 136791 unmodified +Dirs: 23 new, 179 changed, 39635 unmodified +Added to the repository: 530.641 MiB (162.415 MiB stored) + +processed 137695 files, 126.401 GiB in 0:19 +snapshot ebefc667 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing up Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-12_03:30:01 Backup complete. +2025-07-12_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +a1829f91 2025-06-30 03:00:40 arr-stack monthly snapshot /etc 8.820 GiB + /home + /var/lib/docker/volumes + +e5e1e281 2025-07-06 03:00:28 arr-stack weekly snapshot /etc 8.849 GiB + /home + /var/lib/docker/volumes + +0676a16a 2025-07-10 03:00:37 arr-stack daily snapshot /etc 9.480 GiB + /home + /var/lib/docker/volumes + +a158cfc8 2025-07-11 03:00:29 arr-stack daily snapshot /etc 9.504 GiB + /home + /var/lib/docker/volumes + +403c8a08 2025-07-12 03:00:29 arr-stack daily snapshot /etc 9.513 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +4c0b7734 2025-06-30 04:18:22 services monthly snapshot /etc 125.387 GiB + /home + /var/lib/docker/volumes + +71cf007f 2025-07-06 04:09:22 services weekly snapshot /etc 126.124 GiB + /home + /var/lib/docker/volumes + +41428ffb 2025-07-10 04:02:52 services daily snapshot /etc 126.341 GiB + /home + /var/lib/docker/volumes + +28ab4409 2025-07-11 04:09:05 services daily snapshot /etc 126.399 GiB + /home + /var/lib/docker/volumes + +ebefc667 2025-07-12 04:12:50 services daily snapshot /etc 126.401 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +3c4fad55 2025-07-09 04:08:32 services /etc 126.196 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +ce4da403 2025-06-30 04:00:08 morganna monthly snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +f57e61a1 2025-07-06 04:00:09 morganna weekly snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +7eaf3bdb 2025-07-10 04:00:10 morganna daily snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +0fcaafde 2025-07-11 04:00:09 morganna daily snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +ca3aeea5 2025-07-12 04:00:10 morganna daily snapshot /etc 2.819 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 39 snapshots +[0:31] 100.00% 39 / 39 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:03] 100.00% 10906 / 10906 packs processed + +to repack: 1115 blobs / 125.224 MiB +this removes: 977 blobs / 104.953 MiB +to delete: 0 blobs / 0 B +total prune: 977 blobs / 104.953 MiB +remaining: 841577 blobs / 175.617 GiB +unused size after prune: 8.778 GiB (5.00% of remaining size) + +repacking packs +[0:05] 100.00% 10 / 10 packs repacked +rebuilding index +[0:02] 100.00% 19 / 19 indexes processed +[0:00] 100.00% 7 / 7 old indexes deleted +removing 10 old packs +[0:01] 100.00% 10 / 10 files deleted +done +2025-07-12_03:30:01 Backup script done +2025-07-13_03:30:01 Starting backup +User: ccalifice +2025-07-13_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing down Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-13_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot ebefc667 + +Files: 124 new, 514 changed, 137146 unmodified +Dirs: 48 new, 188 changed, 39638 unmodified +Added to the repository: 568.110 MiB (161.711 MiB stored) + +processed 137784 files, 126.483 GiB in 0:26 +snapshot baf33535 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing up Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-13_03:30:01 Backup complete. +2025-07-13_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +a1829f91 2025-06-30 03:00:40 arr-stack monthly snapshot /etc 8.820 GiB + /home + /var/lib/docker/volumes + +e5e1e281 2025-07-06 03:00:28 arr-stack weekly snapshot /etc 8.849 GiB + /home + /var/lib/docker/volumes + +a158cfc8 2025-07-11 03:00:29 arr-stack daily snapshot /etc 9.504 GiB + /home + /var/lib/docker/volumes + +403c8a08 2025-07-12 03:00:29 arr-stack daily snapshot /etc 9.513 GiB + /home + /var/lib/docker/volumes + +31220066 2025-07-13 03:00:40 arr-stack daily snapshot /etc 9.584 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +4c0b7734 2025-06-30 04:18:22 services monthly snapshot /etc 125.387 GiB + /home + /var/lib/docker/volumes + +71cf007f 2025-07-06 04:09:22 services weekly snapshot /etc 126.124 GiB + /home + /var/lib/docker/volumes + +28ab4409 2025-07-11 04:09:05 services daily snapshot /etc 126.399 GiB + /home + /var/lib/docker/volumes + +ebefc667 2025-07-12 04:12:50 services daily snapshot /etc 126.401 GiB + /home + /var/lib/docker/volumes + +baf33535 2025-07-13 04:08:16 services daily snapshot /etc 126.483 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +41428ffb 2025-07-10 04:02:52 services /etc 126.341 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +ce4da403 2025-06-30 04:00:08 morganna monthly snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +f57e61a1 2025-07-06 04:00:09 morganna weekly snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +0fcaafde 2025-07-11 04:00:09 morganna daily snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +ca3aeea5 2025-07-12 04:00:10 morganna daily snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +ed4b97f1 2025-07-13 04:00:10 morganna daily snapshot /etc 2.819 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 39 snapshots +[0:20] 100.00% 39 / 39 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:03] 100.00% 10908 / 10908 packs processed + +to repack: 4460 blobs / 160.825 MiB +this removes: 1100 blobs / 131.682 MiB +to delete: 0 blobs / 0 B +total prune: 1100 blobs / 131.682 MiB +remaining: 844596 blobs / 175.695 GiB +unused size after prune: 8.772 GiB (4.99% of remaining size) + +repacking packs +[0:08] 100.00% 12 / 12 packs repacked +rebuilding index +[0:02] 100.00% 19 / 19 indexes processed +[0:00] 100.00% 10 / 10 old indexes deleted +removing 12 old packs +[0:00] 100.00% 12 / 12 files deleted +done +2025-07-13_03:30:01 Backup script done +2025-07-14_03:30:01 Starting backup +User: ccalifice +2025-07-14_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing down Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-14_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot baf33535 + +Files: 90 new, 714 changed, 137029 unmodified +Dirs: 22 new, 177 changed, 39683 unmodified +Added to the repository: 640.356 MiB (186.321 MiB stored) + +processed 137833 files, 126.431 GiB in 0:23 +snapshot 2ab1367e saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing up Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-14_03:30:01 Backup complete. +2025-07-14_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------ +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +a1829f91 2025-06-30 03:00:40 arr-stack monthly snapshot /etc 8.820 GiB + /home + /var/lib/docker/volumes + +403c8a08 2025-07-12 03:00:29 arr-stack daily snapshot /etc 9.513 GiB + /home + /var/lib/docker/volumes + +31220066 2025-07-13 03:00:40 arr-stack daily snapshot /etc 9.584 GiB + weekly snapshot /home + /var/lib/docker/volumes + +6c1fabdc 2025-07-14 03:00:28 arr-stack daily snapshot /etc 10.178 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------ +5 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +4c0b7734 2025-06-30 04:18:22 services monthly snapshot /etc 125.387 GiB + /home + /var/lib/docker/volumes + +ebefc667 2025-07-12 04:12:50 services daily snapshot /etc 126.401 GiB + /home + /var/lib/docker/volumes + +baf33535 2025-07-13 04:08:16 services daily snapshot /etc 126.483 GiB + weekly snapshot /home + /var/lib/docker/volumes + +2ab1367e 2025-07-14 04:15:16 services daily snapshot /etc 126.431 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +5 snapshots + +remove 2 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +71cf007f 2025-07-06 04:09:22 services /etc 126.124 GiB + /home + /var/lib/docker/volumes + +28ab4409 2025-07-11 04:09:05 services /etc 126.399 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +2 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +ce4da403 2025-06-30 04:00:08 morganna monthly snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +ca3aeea5 2025-07-12 04:00:10 morganna daily snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +ed4b97f1 2025-07-13 04:00:10 morganna daily snapshot /etc 2.819 GiB + weekly snapshot /home + /var/lib/docker/volumes + +b033790e 2025-07-14 04:00:09 morganna daily snapshot /etc 2.819 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +5 snapshots + +[0:00] 100.00% 2 / 2 files deleted +2 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 36 snapshots +[0:19] 100.00% 36 / 36 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:02] 100.00% 10952 / 10952 packs processed + +to repack: 30389 blobs / 290.595 MiB +this removes: 2351 blobs / 230.681 MiB +to delete: 32 blobs / 16.630 MiB +total prune: 2383 blobs / 247.311 MiB +remaining: 845394 blobs / 176.229 GiB +unused size after prune: 8.800 GiB (4.99% of remaining size) + +repacking packs +[0:13] 100.00% 25 / 25 packs repacked +rebuilding index +[0:03] 100.00% 19 / 19 indexes processed +[0:00] 100.00% 14 / 14 old indexes deleted +removing 26 old packs +[0:00] 100.00% 26 / 26 files deleted +done +2025-07-14_03:30:01 Backup script done +2025-07-15_03:30:01 Starting backup +User: ccalifice +2025-07-15_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing down Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-15_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 2ab1367e + +Files: 89 new, 623 changed, 137186 unmodified +Dirs: 22 new, 171 changed, 39703 unmodified +Added to the repository: 514.966 MiB (152.842 MiB stored) + +processed 137898 files, 126.419 GiB in 0:17 +snapshot dbf2c8b2 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing up Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-15_03:30:01 Backup complete. +2025-07-15_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------ +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +a1829f91 2025-06-30 03:00:40 arr-stack monthly snapshot /etc 8.820 GiB + /home + /var/lib/docker/volumes + +31220066 2025-07-13 03:00:40 arr-stack daily snapshot /etc 9.584 GiB + weekly snapshot /home + /var/lib/docker/volumes + +6c1fabdc 2025-07-14 03:00:28 arr-stack daily snapshot /etc 10.178 GiB + /home + /var/lib/docker/volumes + +8f3fd5b8 2025-07-15 03:00:28 arr-stack daily snapshot /etc 10.423 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------ +5 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +4c0b7734 2025-06-30 04:18:22 services monthly snapshot /etc 125.387 GiB + /home + /var/lib/docker/volumes + +baf33535 2025-07-13 04:08:16 services daily snapshot /etc 126.483 GiB + weekly snapshot /home + /var/lib/docker/volumes + +2ab1367e 2025-07-14 04:15:16 services daily snapshot /etc 126.431 GiB + /home + /var/lib/docker/volumes + +dbf2c8b2 2025-07-15 04:15:26 services daily snapshot /etc 126.419 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +5 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +ebefc667 2025-07-12 04:12:50 services /etc 126.401 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +ce4da403 2025-06-30 04:00:08 morganna monthly snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +ed4b97f1 2025-07-13 04:00:10 morganna daily snapshot /etc 2.819 GiB + weekly snapshot /home + /var/lib/docker/volumes + +b033790e 2025-07-14 04:00:09 morganna daily snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +b6b0c4df 2025-07-15 04:00:09 morganna daily snapshot /etc 2.819 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +5 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 36 snapshots +[0:29] 100.00% 36 / 36 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:01] 100.00% 10961 / 10961 packs processed + +to repack: 29331 blobs / 154.048 MiB +this removes: 1473 blobs / 112.313 MiB +to delete: 0 blobs / 0 B +total prune: 1473 blobs / 112.313 MiB +remaining: 846426 blobs / 176.518 GiB +unused size after prune: 8.818 GiB (5.00% of remaining size) + +repacking packs +[0:09] 100.00% 12 / 12 packs repacked +rebuilding index +[0:02] 100.00% 19 / 19 indexes processed +[0:00] 100.00% 10 / 10 old indexes deleted +removing 12 old packs +[0:00] 100.00% 12 / 12 files deleted +done +2025-07-15_03:30:01 Backup script done +2025-07-16_03:30:01 Starting backup +User: ccalifice +2025-07-16_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing down Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-16_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot dbf2c8b2 + +Files: 143 new, 538 changed, 137327 unmodified +Dirs: 25 new, 179 changed, 39707 unmodified +Added to the repository: 525.373 MiB (161.270 MiB stored) + +processed 138008 files, 126.410 GiB in 0:20 +snapshot 53dc67c4 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing up Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-16_03:30:01 Backup complete. +2025-07-16_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------ +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +a1829f91 2025-06-30 03:00:40 arr-stack monthly snapshot /etc 8.820 GiB + /home + /var/lib/docker/volumes + +31220066 2025-07-13 03:00:40 arr-stack weekly snapshot /etc 9.584 GiB + /home + /var/lib/docker/volumes + +6c1fabdc 2025-07-14 03:00:28 arr-stack daily snapshot /etc 10.178 GiB + /home + /var/lib/docker/volumes + +8f3fd5b8 2025-07-15 03:00:28 arr-stack daily snapshot /etc 10.423 GiB + /home + /var/lib/docker/volumes + +6011243a 2025-07-16 03:00:28 arr-stack daily snapshot /etc 10.416 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------ +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +4c0b7734 2025-06-30 04:18:22 services monthly snapshot /etc 125.387 GiB + /home + /var/lib/docker/volumes + +baf33535 2025-07-13 04:08:16 services weekly snapshot /etc 126.483 GiB + /home + /var/lib/docker/volumes + +2ab1367e 2025-07-14 04:15:16 services daily snapshot /etc 126.431 GiB + /home + /var/lib/docker/volumes + +dbf2c8b2 2025-07-15 04:15:26 services daily snapshot /etc 126.419 GiB + /home + /var/lib/docker/volumes + +53dc67c4 2025-07-16 04:16:02 services daily snapshot /etc 126.410 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +ce4da403 2025-06-30 04:00:08 morganna monthly snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +ed4b97f1 2025-07-13 04:00:10 morganna weekly snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +b033790e 2025-07-14 04:00:09 morganna daily snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +b6b0c4df 2025-07-15 04:00:09 morganna daily snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +2756e519 2025-07-16 04:00:09 morganna daily snapshot /etc 2.819 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +2025-07-16_03:30:01 Backup script done +2025-07-17_03:30:01 Starting backup +User: ccalifice +2025-07-17_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing down Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-17_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 53dc67c4 + +Files: 129 new, 454 changed, 136856 unmodified +Dirs: 23 new, 185 changed, 39700 unmodified +Added to the repository: 566.065 MiB (178.540 MiB stored) + +processed 137439 files, 126.381 GiB in 0:18 +snapshot 1e6c0913 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing up Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-17_03:30:01 Backup complete. +2025-07-17_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------ +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +a1829f91 2025-06-30 03:00:40 arr-stack monthly snapshot /etc 8.820 GiB + /home + /var/lib/docker/volumes + +31220066 2025-07-13 03:00:40 arr-stack weekly snapshot /etc 9.584 GiB + /home + /var/lib/docker/volumes + +8f3fd5b8 2025-07-15 03:00:28 arr-stack daily snapshot /etc 10.423 GiB + /home + /var/lib/docker/volumes + +6011243a 2025-07-16 03:00:28 arr-stack daily snapshot /etc 10.416 GiB + /home + /var/lib/docker/volumes + +a997e06e 2025-07-17 03:00:32 arr-stack daily snapshot /etc 10.419 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------ +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +4c0b7734 2025-06-30 04:18:22 services monthly snapshot /etc 125.387 GiB + /home + /var/lib/docker/volumes + +baf33535 2025-07-13 04:08:16 services weekly snapshot /etc 126.483 GiB + /home + /var/lib/docker/volumes + +dbf2c8b2 2025-07-15 04:15:26 services daily snapshot /etc 126.419 GiB + /home + /var/lib/docker/volumes + +53dc67c4 2025-07-16 04:16:02 services daily snapshot /etc 126.410 GiB + /home + /var/lib/docker/volumes + +1e6c0913 2025-07-17 04:07:29 services daily snapshot /etc 126.381 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +2ab1367e 2025-07-14 04:15:16 services /etc 126.431 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +ce4da403 2025-06-30 04:00:08 morganna monthly snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +ed4b97f1 2025-07-13 04:00:10 morganna weekly snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +b6b0c4df 2025-07-15 04:00:09 morganna daily snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +2756e519 2025-07-16 04:00:09 morganna daily snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +2b09b130 2025-07-17 04:00:09 morganna daily snapshot /etc 2.819 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 39 snapshots +[0:20] 100.00% 39 / 39 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:02] 100.00% 10985 / 10985 packs processed + +to repack: 2957 blobs / 123.303 MiB +this removes: 1990 blobs / 99.461 MiB +to delete: 16 blobs / 2.977 MiB +total prune: 2006 blobs / 102.439 MiB +remaining: 847349 blobs / 176.789 GiB +unused size after prune: 8.835 GiB (5.00% of remaining size) + +repacking packs +[0:05] 100.00% 20 / 20 packs repacked +rebuilding index +[0:01] 100.00% 19 / 19 indexes processed +[0:00] 100.00% 12 / 12 old indexes deleted +removing 21 old packs +[0:00] 100.00% 21 / 21 files deleted +done +2025-07-17_03:30:01 Backup script done +2025-07-18_03:30:01 Starting backup +User: ccalifice +2025-07-18_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing down Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-18_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 1e6c0913 + +Files: 28 new, 213 changed, 137204 unmodified +Dirs: 21 new, 151 changed, 39750 unmodified +Added to the repository: 514.534 MiB (142.240 MiB stored) + +processed 137445 files, 126.455 GiB in 0:17 +snapshot dabcf0c3 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing up Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-18_03:30:01 Backup complete. +2025-07-18_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------ +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +a1829f91 2025-06-30 03:00:40 arr-stack monthly snapshot /etc 8.820 GiB + /home + /var/lib/docker/volumes + +31220066 2025-07-13 03:00:40 arr-stack weekly snapshot /etc 9.584 GiB + /home + /var/lib/docker/volumes + +6011243a 2025-07-16 03:00:28 arr-stack daily snapshot /etc 10.416 GiB + /home + /var/lib/docker/volumes + +a997e06e 2025-07-17 03:00:32 arr-stack daily snapshot /etc 10.419 GiB + /home + /var/lib/docker/volumes + +82d89b95 2025-07-18 03:00:28 arr-stack daily snapshot /etc 10.424 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------ +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +4c0b7734 2025-06-30 04:18:22 services monthly snapshot /etc 125.387 GiB + /home + /var/lib/docker/volumes + +baf33535 2025-07-13 04:08:16 services weekly snapshot /etc 126.483 GiB + /home + /var/lib/docker/volumes + +53dc67c4 2025-07-16 04:16:02 services daily snapshot /etc 126.410 GiB + /home + /var/lib/docker/volumes + +1e6c0913 2025-07-17 04:07:29 services daily snapshot /etc 126.381 GiB + /home + /var/lib/docker/volumes + +dabcf0c3 2025-07-18 04:07:21 services daily snapshot /etc 126.455 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +dbf2c8b2 2025-07-15 04:15:26 services /etc 126.419 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +ce4da403 2025-06-30 04:00:08 morganna monthly snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +ed4b97f1 2025-07-13 04:00:10 morganna weekly snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +2756e519 2025-07-16 04:00:09 morganna daily snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +2b09b130 2025-07-17 04:00:09 morganna daily snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +d933913d 2025-07-18 04:00:10 morganna daily snapshot /etc 2.819 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 39 snapshots +[0:27] 100.00% 39 / 39 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:03] 100.00% 10980 / 10980 packs processed + +to repack: 2365 blobs / 116.413 MiB +this removes: 1028 blobs / 94.832 MiB +to delete: 45 blobs / 20.700 MiB +total prune: 1073 blobs / 115.532 MiB +remaining: 847208 blobs / 176.816 GiB +unused size after prune: 8.831 GiB (4.99% of remaining size) + +repacking packs +[0:05] 100.00% 9 / 9 packs repacked +rebuilding index +[0:01] 100.00% 19 / 19 indexes processed +[0:00] 100.00% 8 / 8 old indexes deleted +removing 11 old packs +[0:00] 100.00% 11 / 11 files deleted +done +2025-07-18_03:30:01 Backup script done +2025-07-19_03:30:01 Starting backup +User: ccalifice +2025-07-19_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing down Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-19_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot dabcf0c3 + +Files: 222 new, 617 changed, 135533 unmodified +Dirs: 25 new, 180 changed, 39733 unmodified +Added to the repository: 607.711 MiB (181.544 MiB stored) + +processed 136372 files, 126.504 GiB in 0:21 +snapshot 859fbff1 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing up Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-19_03:30:01 Backup complete. +2025-07-19_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------ +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +a1829f91 2025-06-30 03:00:40 arr-stack monthly snapshot /etc 8.820 GiB + /home + /var/lib/docker/volumes + +31220066 2025-07-13 03:00:40 arr-stack weekly snapshot /etc 9.584 GiB + /home + /var/lib/docker/volumes + +a997e06e 2025-07-17 03:00:32 arr-stack daily snapshot /etc 10.419 GiB + /home + /var/lib/docker/volumes + +82d89b95 2025-07-18 03:00:28 arr-stack daily snapshot /etc 10.424 GiB + /home + /var/lib/docker/volumes + +09b42174 2025-07-19 03:00:29 arr-stack daily snapshot /etc 10.427 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------ +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +4c0b7734 2025-06-30 04:18:22 services monthly snapshot /etc 125.387 GiB + /home + /var/lib/docker/volumes + +baf33535 2025-07-13 04:08:16 services weekly snapshot /etc 126.483 GiB + /home + /var/lib/docker/volumes + +1e6c0913 2025-07-17 04:07:29 services daily snapshot /etc 126.381 GiB + /home + /var/lib/docker/volumes + +dabcf0c3 2025-07-18 04:07:21 services daily snapshot /etc 126.455 GiB + /home + /var/lib/docker/volumes + +859fbff1 2025-07-19 04:08:33 services daily snapshot /etc 126.504 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +53dc67c4 2025-07-16 04:16:02 services /etc 126.410 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +ce4da403 2025-06-30 04:00:08 morganna monthly snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +ed4b97f1 2025-07-13 04:00:10 morganna weekly snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +2b09b130 2025-07-17 04:00:09 morganna daily snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +d933913d 2025-07-18 04:00:10 morganna daily snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +0f19a943 2025-07-19 04:00:09 morganna daily snapshot /etc 2.820 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 39 snapshots +[0:26] 100.00% 39 / 39 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:02] 100.00% 10989 / 10989 packs processed + +to repack: 1945 blobs / 159.644 MiB +this removes: 822 blobs / 132.815 MiB +to delete: 0 blobs / 0 B +total prune: 822 blobs / 132.815 MiB +remaining: 847910 blobs / 176.880 GiB +unused size after prune: 8.832 GiB (4.99% of remaining size) + +repacking packs +[0:05] 100.00% 14 / 14 packs repacked +rebuilding index +[0:01] 100.00% 19 / 19 indexes processed +[0:00] 100.00% 9 / 9 old indexes deleted +removing 14 old packs +[0:00] 100.00% 14 / 14 files deleted +done +2025-07-19_03:30:01 Backup script done +2025-07-20_03:30:01 Starting backup +User: ccalifice +2025-07-20_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing down Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-20_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 859fbff1 + +Files: 180 new, 677 changed, 134617 unmodified +Dirs: 69 new, 170 changed, 39755 unmodified +Added to the repository: 567.264 MiB (176.234 MiB stored) + +processed 135474 files, 126.449 GiB in 0:17 +snapshot 65acf631 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing up Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-20_03:30:01 Backup complete. +2025-07-20_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------ +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +a1829f91 2025-06-30 03:00:40 arr-stack monthly snapshot /etc 8.820 GiB + /home + /var/lib/docker/volumes + +31220066 2025-07-13 03:00:40 arr-stack weekly snapshot /etc 9.584 GiB + /home + /var/lib/docker/volumes + +82d89b95 2025-07-18 03:00:28 arr-stack daily snapshot /etc 10.424 GiB + /home + /var/lib/docker/volumes + +09b42174 2025-07-19 03:00:29 arr-stack daily snapshot /etc 10.427 GiB + /home + /var/lib/docker/volumes + +1e04be78 2025-07-20 03:00:27 arr-stack daily snapshot /etc 10.427 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------ +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +4c0b7734 2025-06-30 04:18:22 services monthly snapshot /etc 125.387 GiB + /home + /var/lib/docker/volumes + +baf33535 2025-07-13 04:08:16 services weekly snapshot /etc 126.483 GiB + /home + /var/lib/docker/volumes + +dabcf0c3 2025-07-18 04:07:21 services daily snapshot /etc 126.455 GiB + /home + /var/lib/docker/volumes + +859fbff1 2025-07-19 04:08:33 services daily snapshot /etc 126.504 GiB + /home + /var/lib/docker/volumes + +65acf631 2025-07-20 04:14:30 services daily snapshot /etc 126.449 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +1e6c0913 2025-07-17 04:07:29 services /etc 126.381 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +ce4da403 2025-06-30 04:00:08 morganna monthly snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +ed4b97f1 2025-07-13 04:00:10 morganna weekly snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +d933913d 2025-07-18 04:00:10 morganna daily snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +0f19a943 2025-07-19 04:00:09 morganna daily snapshot /etc 2.820 GiB + /home + /var/lib/docker/volumes + +6cc695ed 2025-07-20 04:00:09 morganna daily snapshot /etc 2.820 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 39 snapshots +[0:26] 100.00% 39 / 39 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:02] 100.00% 10984 / 10984 packs processed + +to repack: 828 blobs / 111.563 MiB +this removes: 654 blobs / 95.270 MiB +to delete: 0 blobs / 0 B +total prune: 654 blobs / 95.270 MiB +remaining: 848815 blobs / 176.975 GiB +unused size after prune: 8.843 GiB (5.00% of remaining size) + +repacking packs +[0:03] 100.00% 8 / 8 packs repacked +rebuilding index +[0:02] 100.00% 19 / 19 indexes processed +[0:00] 100.00% 6 / 6 old indexes deleted +removing 8 old packs +[0:00] 100.00% 8 / 8 files deleted +done +2025-07-20_03:30:01 Backup script done +2025-07-21_03:30:01 Starting backup +User: ccalifice +2025-07-21_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing down Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-21_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 65acf631 + +Files: 73 new, 660 changed, 134582 unmodified +Dirs: 22 new, 175 changed, 39806 unmodified +Added to the repository: 522.798 MiB (151.705 MiB stored) + +processed 135315 files, 126.516 GiB in 0:16 +snapshot 20895eb5 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing up Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-21_03:30:01 Backup complete. +2025-07-21_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +ce4da403 2025-06-30 04:00:08 morganna monthly snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +0f19a943 2025-07-19 04:00:09 morganna daily snapshot /etc 2.820 GiB + /home + /var/lib/docker/volumes + +6cc695ed 2025-07-20 04:00:09 morganna daily snapshot /etc 2.820 GiB + weekly snapshot /home + /var/lib/docker/volumes + +840574dd 2025-07-21 04:00:10 morganna daily snapshot /etc 2.820 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +5 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------ +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +a1829f91 2025-06-30 03:00:40 arr-stack monthly snapshot /etc 8.820 GiB + /home + /var/lib/docker/volumes + +09b42174 2025-07-19 03:00:29 arr-stack daily snapshot /etc 10.427 GiB + /home + /var/lib/docker/volumes + +1e04be78 2025-07-20 03:00:27 arr-stack daily snapshot /etc 10.427 GiB + weekly snapshot /home + /var/lib/docker/volumes + +0b23a6f4 2025-07-21 03:00:29 arr-stack daily snapshot /etc 10.425 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------ +5 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c60a6700 2024-12-31 03:13:31 arr-stack oldest yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +4c0b7734 2025-06-30 04:18:22 services monthly snapshot /etc 125.387 GiB + /home + /var/lib/docker/volumes + +859fbff1 2025-07-19 04:08:33 services daily snapshot /etc 126.504 GiB + /home + /var/lib/docker/volumes + +65acf631 2025-07-20 04:14:30 services daily snapshot /etc 126.449 GiB + weekly snapshot /home + /var/lib/docker/volumes + +20895eb5 2025-07-21 04:08:45 services daily snapshot /etc 126.516 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +5 snapshots + +remove 2 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +baf33535 2025-07-13 04:08:16 services /etc 126.483 GiB + /home + /var/lib/docker/volumes + +dabcf0c3 2025-07-18 04:07:21 services /etc 126.455 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +2 snapshots + +[0:00] 100.00% 2 / 2 files deleted +2 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 36 snapshots +[0:26] 100.00% 36 / 36 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:01] 100.00% 10990 / 10990 packs processed + +to repack: 31198 blobs / 292.999 MiB +this removes: 2518 blobs / 250.113 MiB +to delete: 251 blobs / 184.265 MiB +total prune: 2769 blobs / 434.378 MiB +remaining: 846404 blobs / 176.679 GiB +unused size after prune: 8.832 GiB (5.00% of remaining size) + +repacking packs +[0:09] 100.00% 22 / 22 packs repacked +rebuilding index +[0:02] 100.00% 19 / 19 indexes processed +[0:00] 100.00% 15 / 15 old indexes deleted +removing 33 old packs +[0:00] 100.00% 33 / 33 files deleted +done +2025-07-21_03:30:01 Backup script done +2025-07-22_03:30:01 Starting backup +User: ccalifice +2025-07-22_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing down Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-22_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 20895eb5 + +Files: 90 new, 730 changed, 134530 unmodified +Dirs: 24 new, 176 changed, 39806 unmodified +Added to the repository: 553.271 MiB (164.092 MiB stored) + +processed 135350 files, 126.563 GiB in 0:17 +snapshot e43517a6 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing up Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-22_03:30:01 Backup complete. +2025-07-22_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +4c0b7734 2025-06-30 04:18:22 services monthly snapshot /etc 125.387 GiB + /home + /var/lib/docker/volumes + +65acf631 2025-07-20 04:14:30 services daily snapshot /etc 126.449 GiB + weekly snapshot /home + /var/lib/docker/volumes + +20895eb5 2025-07-21 04:08:45 services daily snapshot /etc 126.516 GiB + /home + /var/lib/docker/volumes + +e43517a6 2025-07-22 04:16:06 services daily snapshot /etc 126.563 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +5 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +859fbff1 2025-07-19 04:08:33 services /etc 126.504 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +ce4da403 2025-06-30 04:00:08 morganna monthly snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +6cc695ed 2025-07-20 04:00:09 morganna daily snapshot /etc 2.820 GiB + weekly snapshot /home + /var/lib/docker/volumes + +840574dd 2025-07-21 04:00:10 morganna daily snapshot /etc 2.820 GiB + /home + /var/lib/docker/volumes + +695ffead 2025-07-22 04:00:10 morganna daily snapshot /etc 2.820 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +5 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------ +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +a1829f91 2025-06-30 03:00:40 arr-stack monthly snapshot /etc 8.820 GiB + /home + /var/lib/docker/volumes + +1e04be78 2025-07-20 03:00:27 arr-stack daily snapshot /etc 10.427 GiB + weekly snapshot /home + /var/lib/docker/volumes + +0b23a6f4 2025-07-21 03:00:29 arr-stack daily snapshot /etc 10.425 GiB + /home + /var/lib/docker/volumes + +60ce236e 2025-07-22 03:00:28 arr-stack daily snapshot /etc 10.426 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------ +5 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 36 snapshots +[0:26] 100.00% 36 / 36 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:01] 100.00% 10977 / 10977 packs processed + +to repack: 29534 blobs / 163.932 MiB +this removes: 1113 blobs / 126.135 MiB +to delete: 88 blobs / 66.908 MiB +total prune: 1201 blobs / 193.042 MiB +remaining: 846436 blobs / 176.652 GiB +unused size after prune: 8.828 GiB (5.00% of remaining size) + +repacking packs +[0:08] 100.00% 12 / 12 packs repacked +rebuilding index +[0:01] 100.00% 19 / 19 indexes processed +[0:00] 100.00% 11 / 11 old indexes deleted +removing 16 old packs +[0:00] 100.00% 16 / 16 files deleted +done +2025-07-22_03:30:01 Backup script done +2025-07-23_03:30:01 Starting backup +User: ccalifice +2025-07-23_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing down Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-23_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot e43517a6 + +Files: 126 new, 697 changed, 134605 unmodified +Dirs: 24 new, 181 changed, 39812 unmodified +Added to the repository: 548.864 MiB (168.890 MiB stored) + +processed 135428 files, 126.517 GiB in 0:17 +snapshot c5001d6b saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing up Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-23_03:30:01 Backup complete. +2025-07-23_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +4c0b7734 2025-06-30 04:18:22 services monthly snapshot /etc 125.387 GiB + /home + /var/lib/docker/volumes + +65acf631 2025-07-20 04:14:30 services weekly snapshot /etc 126.449 GiB + /home + /var/lib/docker/volumes + +20895eb5 2025-07-21 04:08:45 services daily snapshot /etc 126.516 GiB + /home + /var/lib/docker/volumes + +e43517a6 2025-07-22 04:16:06 services daily snapshot /etc 126.563 GiB + /home + /var/lib/docker/volumes + +c5001d6b 2025-07-23 04:24:15 services daily snapshot /etc 126.517 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +ce4da403 2025-06-30 04:00:08 morganna monthly snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +6cc695ed 2025-07-20 04:00:09 morganna weekly snapshot /etc 2.820 GiB + /home + /var/lib/docker/volumes + +840574dd 2025-07-21 04:00:10 morganna daily snapshot /etc 2.820 GiB + /home + /var/lib/docker/volumes + +695ffead 2025-07-22 04:00:10 morganna daily snapshot /etc 2.820 GiB + /home + /var/lib/docker/volumes + +03ada145 2025-07-23 04:00:09 morganna daily snapshot /etc 2.820 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------ +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +a1829f91 2025-06-30 03:00:40 arr-stack monthly snapshot /etc 8.820 GiB + /home + /var/lib/docker/volumes + +1e04be78 2025-07-20 03:00:27 arr-stack weekly snapshot /etc 10.427 GiB + /home + /var/lib/docker/volumes + +0b23a6f4 2025-07-21 03:00:29 arr-stack daily snapshot /etc 10.425 GiB + /home + /var/lib/docker/volumes + +60ce236e 2025-07-22 03:00:28 arr-stack daily snapshot /etc 10.426 GiB + /home + /var/lib/docker/volumes + +67115575 2025-07-23 03:00:29 arr-stack daily snapshot /etc 10.439 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------ +6 snapshots + +2025-07-23_03:30:01 Backup script done +2025-07-24_03:30:01 Starting backup +User: ccalifice +2025-07-24_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing down Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-24_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot c5001d6b + +Files: 129 new, 680 changed, 134647 unmodified +Dirs: 23 new, 178 changed, 39821 unmodified +Added to the repository: 475.575 MiB (146.907 MiB stored) + +processed 135456 files, 126.523 GiB in 0:23 +snapshot d7b7d378 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing up Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-24_03:30:01 Backup complete. +2025-07-24_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +ce4da403 2025-06-30 04:00:08 morganna monthly snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +6cc695ed 2025-07-20 04:00:09 morganna weekly snapshot /etc 2.820 GiB + /home + /var/lib/docker/volumes + +695ffead 2025-07-22 04:00:10 morganna daily snapshot /etc 2.820 GiB + /home + /var/lib/docker/volumes + +03ada145 2025-07-23 04:00:09 morganna daily snapshot /etc 2.820 GiB + /home + /var/lib/docker/volumes + +35aa4544 2025-07-24 04:00:07 morganna daily snapshot /etc 2.820 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------ +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +a1829f91 2025-06-30 03:00:40 arr-stack monthly snapshot /etc 8.820 GiB + /home + /var/lib/docker/volumes + +1e04be78 2025-07-20 03:00:27 arr-stack weekly snapshot /etc 10.427 GiB + /home + /var/lib/docker/volumes + +60ce236e 2025-07-22 03:00:28 arr-stack daily snapshot /etc 10.426 GiB + /home + /var/lib/docker/volumes + +67115575 2025-07-23 03:00:29 arr-stack daily snapshot /etc 10.439 GiB + /home + /var/lib/docker/volumes + +c1451b1a 2025-07-24 03:00:28 arr-stack daily snapshot /etc 10.438 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------ +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +4c0b7734 2025-06-30 04:18:22 services monthly snapshot /etc 125.387 GiB + /home + /var/lib/docker/volumes + +65acf631 2025-07-20 04:14:30 services weekly snapshot /etc 126.449 GiB + /home + /var/lib/docker/volumes + +e43517a6 2025-07-22 04:16:06 services daily snapshot /etc 126.563 GiB + /home + /var/lib/docker/volumes + +c5001d6b 2025-07-23 04:24:15 services daily snapshot /etc 126.517 GiB + /home + /var/lib/docker/volumes + +d7b7d378 2025-07-24 04:08:08 services daily snapshot /etc 126.523 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +20895eb5 2025-07-21 04:08:45 services /etc 126.516 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 39 snapshots +[0:27] 100.00% 39 / 39 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:02] 100.00% 10995 / 10995 packs processed + +to repack: 1972 blobs / 137.705 MiB +this removes: 1301 blobs / 115.338 MiB +to delete: 0 blobs / 0 B +total prune: 1301 blobs / 115.338 MiB +remaining: 856345 blobs / 176.882 GiB +unused size after prune: 8.833 GiB (4.99% of remaining size) + +repacking packs +[0:06] 100.00% 21 / 21 packs repacked +rebuilding index +[0:02] 100.00% 19 / 19 indexes processed +[0:00] 100.00% 12 / 12 old indexes deleted +removing 21 old packs +[0:00] 100.00% 21 / 21 files deleted +done +2025-07-24_03:30:01 Backup script done +2025-07-25_03:30:01 Starting backup +User: ccalifice +2025-07-25_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing down Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-25_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot d7b7d378 + +Files: 235 new, 466 changed, 134607 unmodified +Dirs: 24 new, 182 changed, 39825 unmodified +Added to the repository: 478.333 MiB (156.726 MiB stored) + +processed 135308 files, 126.511 GiB in 0:19 +snapshot 0baa3b21 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing up Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-25_03:30:01 Backup complete. +2025-07-25_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +4c0b7734 2025-06-30 04:18:22 services monthly snapshot /etc 125.387 GiB + /home + /var/lib/docker/volumes + +65acf631 2025-07-20 04:14:30 services weekly snapshot /etc 126.449 GiB + /home + /var/lib/docker/volumes + +c5001d6b 2025-07-23 04:24:15 services daily snapshot /etc 126.517 GiB + /home + /var/lib/docker/volumes + +d7b7d378 2025-07-24 04:08:08 services daily snapshot /etc 126.523 GiB + /home + /var/lib/docker/volumes + +0baa3b21 2025-07-25 04:48:21 services daily snapshot /etc 126.511 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +e43517a6 2025-07-22 04:16:06 services /etc 126.563 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +ce4da403 2025-06-30 04:00:08 morganna monthly snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +6cc695ed 2025-07-20 04:00:09 morganna weekly snapshot /etc 2.820 GiB + /home + /var/lib/docker/volumes + +03ada145 2025-07-23 04:00:09 morganna daily snapshot /etc 2.820 GiB + /home + /var/lib/docker/volumes + +35aa4544 2025-07-24 04:00:07 morganna daily snapshot /etc 2.820 GiB + /home + /var/lib/docker/volumes + +e8656db0 2025-07-25 04:00:09 morganna daily snapshot /etc 2.820 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------ +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +a1829f91 2025-06-30 03:00:40 arr-stack monthly snapshot /etc 8.820 GiB + /home + /var/lib/docker/volumes + +1e04be78 2025-07-20 03:00:27 arr-stack weekly snapshot /etc 10.427 GiB + /home + /var/lib/docker/volumes + +67115575 2025-07-23 03:00:29 arr-stack daily snapshot /etc 10.439 GiB + /home + /var/lib/docker/volumes + +c1451b1a 2025-07-24 03:00:28 arr-stack daily snapshot /etc 10.438 GiB + /home + /var/lib/docker/volumes + +808fed55 2025-07-25 03:00:28 arr-stack daily snapshot /etc 10.437 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------ +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 39 snapshots +[0:27] 100.00% 39 / 39 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:02] 100.00% 10992 / 10992 packs processed + +to repack: 1645 blobs / 128.434 MiB +this removes: 1464 blobs / 106.500 MiB +to delete: 30 blobs / 16.123 MiB +total prune: 1494 blobs / 122.622 MiB +remaining: 856183 blobs / 176.930 GiB +unused size after prune: 8.842 GiB (5.00% of remaining size) + +repacking packs +[0:04] 100.00% 11 / 11 packs repacked +rebuilding index +[0:02] 100.00% 19 / 19 indexes processed +[0:00] 100.00% 9 / 9 old indexes deleted +removing 12 old packs +[0:00] 100.00% 12 / 12 files deleted +done +2025-07-25_03:30:01 Backup script done +2025-07-26_03:30:02 Starting backup +User: ccalifice +2025-07-26_03:30:02 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing down Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-26_03:30:02 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 0baa3b21 + +Files: 109 new, 638 changed, 134347 unmodified +Dirs: 23 new, 169 changed, 39849 unmodified +Added to the repository: 486.506 MiB (156.521 MiB stored) + +processed 135094 files, 126.391 GiB in 0:19 +snapshot e671cbdd saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing up Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-26_03:30:02 Backup complete. +2025-07-26_03:30:02 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------ +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +a1829f91 2025-06-30 03:00:40 arr-stack monthly snapshot /etc 8.820 GiB + /home + /var/lib/docker/volumes + +1e04be78 2025-07-20 03:00:27 arr-stack weekly snapshot /etc 10.427 GiB + /home + /var/lib/docker/volumes + +c1451b1a 2025-07-24 03:00:28 arr-stack daily snapshot /etc 10.438 GiB + /home + /var/lib/docker/volumes + +808fed55 2025-07-25 03:00:28 arr-stack daily snapshot /etc 10.437 GiB + /home + /var/lib/docker/volumes + +38a85030 2025-07-26 03:00:29 arr-stack daily snapshot /etc 10.442 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------ +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +4c0b7734 2025-06-30 04:18:22 services monthly snapshot /etc 125.387 GiB + /home + /var/lib/docker/volumes + +65acf631 2025-07-20 04:14:30 services weekly snapshot /etc 126.449 GiB + /home + /var/lib/docker/volumes + +d7b7d378 2025-07-24 04:08:08 services daily snapshot /etc 126.523 GiB + /home + /var/lib/docker/volumes + +0baa3b21 2025-07-25 04:48:21 services daily snapshot /etc 126.511 GiB + /home + /var/lib/docker/volumes + +e671cbdd 2025-07-26 04:20:24 services daily snapshot /etc 126.391 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +c5001d6b 2025-07-23 04:24:15 services /etc 126.517 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +ce4da403 2025-06-30 04:00:08 morganna monthly snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +6cc695ed 2025-07-20 04:00:09 morganna weekly snapshot /etc 2.820 GiB + /home + /var/lib/docker/volumes + +35aa4544 2025-07-24 04:00:07 morganna daily snapshot /etc 2.820 GiB + /home + /var/lib/docker/volumes + +e8656db0 2025-07-25 04:00:09 morganna daily snapshot /etc 2.820 GiB + /home + /var/lib/docker/volumes + +0ed3ebc9 2025-07-26 04:00:08 morganna daily snapshot /etc 2.820 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 39 snapshots +[0:20] 100.00% 39 / 39 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:01] 100.00% 10998 / 10998 packs processed + +to repack: 2414 blobs / 118.247 MiB +this removes: 1715 blobs / 97.613 MiB +to delete: 0 blobs / 0 B +total prune: 1715 blobs / 97.613 MiB +remaining: 855755 blobs / 176.991 GiB +unused size after prune: 8.847 GiB (5.00% of remaining size) + +repacking packs +[0:04] 100.00% 11 / 11 packs repacked +rebuilding index +[0:02] 100.00% 19 / 19 indexes processed +[0:00] 100.00% 7 / 7 old indexes deleted +removing 11 old packs +[0:00] 100.00% 11 / 11 files deleted +done +2025-07-26_03:30:02 Backup script done +2025-07-27_03:30:01 Starting backup +User: ccalifice +2025-07-27_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing down Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-27_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot e671cbdd + +Files: 98 new, 642 changed, 134201 unmodified +Dirs: 34 new, 175 changed, 39856 unmodified +Added to the repository: 465.667 MiB (141.006 MiB stored) + +processed 134941 files, 126.399 GiB in 0:19 +snapshot 0a048cc6 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing up Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-27_03:30:01 Backup complete. +2025-07-27_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------ +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +a1829f91 2025-06-30 03:00:40 arr-stack monthly snapshot /etc 8.820 GiB + /home + /var/lib/docker/volumes + +1e04be78 2025-07-20 03:00:27 arr-stack weekly snapshot /etc 10.427 GiB + /home + /var/lib/docker/volumes + +808fed55 2025-07-25 03:00:28 arr-stack daily snapshot /etc 10.437 GiB + /home + /var/lib/docker/volumes + +38a85030 2025-07-26 03:00:29 arr-stack daily snapshot /etc 10.442 GiB + /home + /var/lib/docker/volumes + +c8f1f912 2025-07-27 03:00:27 arr-stack daily snapshot /etc 10.442 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------ +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +4c0b7734 2025-06-30 04:18:22 services monthly snapshot /etc 125.387 GiB + /home + /var/lib/docker/volumes + +65acf631 2025-07-20 04:14:30 services weekly snapshot /etc 126.449 GiB + /home + /var/lib/docker/volumes + +0baa3b21 2025-07-25 04:48:21 services daily snapshot /etc 126.511 GiB + /home + /var/lib/docker/volumes + +e671cbdd 2025-07-26 04:20:24 services daily snapshot /etc 126.391 GiB + /home + /var/lib/docker/volumes + +0a048cc6 2025-07-27 05:43:34 services daily snapshot /etc 126.399 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +d7b7d378 2025-07-24 04:08:08 services /etc 126.523 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +ce4da403 2025-06-30 04:00:08 morganna monthly snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +6cc695ed 2025-07-20 04:00:09 morganna weekly snapshot /etc 2.820 GiB + /home + /var/lib/docker/volumes + +e8656db0 2025-07-25 04:00:09 morganna daily snapshot /etc 2.820 GiB + /home + /var/lib/docker/volumes + +0ed3ebc9 2025-07-26 04:00:08 morganna daily snapshot /etc 2.820 GiB + /home + /var/lib/docker/volumes + +5b2dd1b4 2025-07-27 04:00:07 morganna daily snapshot /etc 3.252 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 39 snapshots +[0:29] 100.00% 39 / 39 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:02] 100.00% 11004 / 11004 packs processed + +to repack: 1104 blobs / 121.148 MiB +this removes: 814 blobs / 98.714 MiB +to delete: 0 blobs / 0 B +total prune: 814 blobs / 98.714 MiB +remaining: 857308 blobs / 177.047 GiB +unused size after prune: 8.847 GiB (5.00% of remaining size) + +repacking packs +[0:04] 100.00% 10 / 10 packs repacked +rebuilding index +[0:01] 100.00% 19 / 19 indexes processed +[0:00] 100.00% 7 / 7 old indexes deleted +removing 10 old packs +[0:00] 100.00% 10 / 10 files deleted +done +2025-07-27_03:30:01 Backup script done +2025-07-28_03:30:01 Starting backup +User: ccalifice +2025-07-28_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing down Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-28_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 0a048cc6 + +Files: 78 new, 706 changed, 134206 unmodified +Dirs: 23 new, 171 changed, 39885 unmodified +Added to the repository: 489.825 MiB (148.852 MiB stored) + +processed 134990 files, 126.423 GiB in 0:21 +snapshot ef456012 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing up Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-28_03:30:01 Backup complete. +2025-07-28_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------ +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +a1829f91 2025-06-30 03:00:40 arr-stack monthly snapshot /etc 8.820 GiB + /home + /var/lib/docker/volumes + +38a85030 2025-07-26 03:00:29 arr-stack daily snapshot /etc 10.442 GiB + /home + /var/lib/docker/volumes + +c8f1f912 2025-07-27 03:00:27 arr-stack daily snapshot /etc 10.442 GiB + weekly snapshot /home + /var/lib/docker/volumes + +bd628889 2025-07-28 03:00:29 arr-stack daily snapshot /etc 10.441 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------ +5 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +4c0b7734 2025-06-30 04:18:22 services monthly snapshot /etc 125.387 GiB + /home + /var/lib/docker/volumes + +e671cbdd 2025-07-26 04:20:24 services daily snapshot /etc 126.391 GiB + /home + /var/lib/docker/volumes + +0a048cc6 2025-07-27 05:43:34 services daily snapshot /etc 126.399 GiB + weekly snapshot /home + /var/lib/docker/volumes + +ef456012 2025-07-28 04:16:21 services daily snapshot /etc 126.423 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +5 snapshots + +remove 2 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +65acf631 2025-07-20 04:14:30 services /etc 126.449 GiB + /home + /var/lib/docker/volumes + +0baa3b21 2025-07-25 04:48:21 services /etc 126.511 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +2 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +ce4da403 2025-06-30 04:00:08 morganna monthly snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +0ed3ebc9 2025-07-26 04:00:08 morganna daily snapshot /etc 2.820 GiB + /home + /var/lib/docker/volumes + +5b2dd1b4 2025-07-27 04:00:07 morganna daily snapshot /etc 3.252 GiB + weekly snapshot /home + /var/lib/docker/volumes + +046bd5ae 2025-07-28 04:00:07 morganna daily snapshot /etc 3.468 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +5 snapshots + +[0:00] 100.00% 2 / 2 files deleted +2 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 36 snapshots +[0:27] 100.00% 36 / 36 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:02] 100.00% 11009 / 11009 packs processed + +to repack: 31402 blobs / 286.652 MiB +this removes: 2730 blobs / 238.673 MiB +to delete: 315 blobs / 246.879 MiB +total prune: 3045 blobs / 485.553 MiB +remaining: 856159 blobs / 176.727 GiB +unused size after prune: 8.829 GiB (5.00% of remaining size) + +repacking packs +[0:12] 100.00% 22 / 22 packs repacked +rebuilding index +[0:02] 100.00% 19 / 19 indexes processed +[0:00] 100.00% 13 / 13 old indexes deleted +removing 37 old packs +[0:01] 100.00% 37 / 37 files deleted +done +2025-07-28_03:30:01 Backup script done +2025-07-29_03:30:01 Starting backup +User: ccalifice +2025-07-29_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing down Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-29_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot ef456012 + +Files: 121 new, 646 changed, 134286 unmodified +Dirs: 25 new, 177 changed, 39878 unmodified +Added to the repository: 501.057 MiB (157.292 MiB stored) + +processed 135053 files, 126.325 GiB in 0:16 +snapshot 276f1d60 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing up Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-29_03:30:01 Backup complete. +2025-07-29_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +ce4da403 2025-06-30 04:00:08 morganna monthly snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +5b2dd1b4 2025-07-27 04:00:07 morganna daily snapshot /etc 3.252 GiB + weekly snapshot /home + /var/lib/docker/volumes + +046bd5ae 2025-07-28 04:00:07 morganna daily snapshot /etc 3.468 GiB + /home + /var/lib/docker/volumes + +53885531 2025-07-29 04:00:08 morganna daily snapshot /etc 3.468 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +5 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +4c0b7734 2025-06-30 04:18:22 services monthly snapshot /etc 125.387 GiB + /home + /var/lib/docker/volumes + +0a048cc6 2025-07-27 05:43:34 services daily snapshot /etc 126.399 GiB + weekly snapshot /home + /var/lib/docker/volumes + +ef456012 2025-07-28 04:16:21 services daily snapshot /etc 126.423 GiB + /home + /var/lib/docker/volumes + +276f1d60 2025-07-29 04:20:33 services daily snapshot /etc 126.325 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +5 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +e671cbdd 2025-07-26 04:20:24 services /etc 126.391 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------ +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +a1829f91 2025-06-30 03:00:40 arr-stack monthly snapshot /etc 8.820 GiB + /home + /var/lib/docker/volumes + +c8f1f912 2025-07-27 03:00:27 arr-stack daily snapshot /etc 10.442 GiB + weekly snapshot /home + /var/lib/docker/volumes + +bd628889 2025-07-28 03:00:29 arr-stack daily snapshot /etc 10.441 GiB + /home + /var/lib/docker/volumes + +c5526bb0 2025-07-29 03:00:29 arr-stack daily snapshot /etc 10.442 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------ +5 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 36 snapshots +[0:27] 100.00% 36 / 36 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:01] 100.00% 10987 / 10987 packs processed + +to repack: 28798 blobs / 89.879 MiB +this removes: 537 blobs / 63.290 MiB +to delete: 119 blobs / 66.852 MiB +total prune: 656 blobs / 130.141 MiB +remaining: 848753 blobs / 176.750 GiB +unused size after prune: 8.825 GiB (4.99% of remaining size) + +repacking packs +[0:06] 100.00% 8 / 8 packs repacked +rebuilding index +[0:01] 100.00% 19 / 19 indexes processed +[0:00] 100.00% 7 / 7 old indexes deleted +removing 12 old packs +[0:00] 100.00% 12 / 12 files deleted +done +2025-07-29_03:30:01 Backup script done +2025-07-30_03:30:01 Starting backup +User: ccalifice +2025-07-30_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing down Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-30_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 276f1d60 + +Files: 99 new, 650 changed, 134230 unmodified +Dirs: 22 new, 171 changed, 39896 unmodified +Added to the repository: 487.223 MiB (144.686 MiB stored) + +processed 134979 files, 126.363 GiB in 0:18 +snapshot 615ef8e0 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing up Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-30_03:30:01 Backup complete. +2025-07-30_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +4c0b7734 2025-06-30 04:18:22 services monthly snapshot /etc 125.387 GiB + /home + /var/lib/docker/volumes + +0a048cc6 2025-07-27 05:43:34 services weekly snapshot /etc 126.399 GiB + /home + /var/lib/docker/volumes + +ef456012 2025-07-28 04:16:21 services daily snapshot /etc 126.423 GiB + /home + /var/lib/docker/volumes + +276f1d60 2025-07-29 04:20:33 services daily snapshot /etc 126.325 GiB + /home + /var/lib/docker/volumes + +615ef8e0 2025-07-30 04:10:00 services daily snapshot /etc 126.363 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +ce4da403 2025-06-30 04:00:08 morganna monthly snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +5b2dd1b4 2025-07-27 04:00:07 morganna weekly snapshot /etc 3.252 GiB + /home + /var/lib/docker/volumes + +046bd5ae 2025-07-28 04:00:07 morganna daily snapshot /etc 3.468 GiB + /home + /var/lib/docker/volumes + +53885531 2025-07-29 04:00:08 morganna daily snapshot /etc 3.468 GiB + /home + /var/lib/docker/volumes + +65200284 2025-07-30 04:00:30 morganna daily snapshot /etc 3.481 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------ +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +a1829f91 2025-06-30 03:00:40 arr-stack monthly snapshot /etc 8.820 GiB + /home + /var/lib/docker/volumes + +c8f1f912 2025-07-27 03:00:27 arr-stack weekly snapshot /etc 10.442 GiB + /home + /var/lib/docker/volumes + +bd628889 2025-07-28 03:00:29 arr-stack daily snapshot /etc 10.441 GiB + /home + /var/lib/docker/volumes + +c5526bb0 2025-07-29 03:00:29 arr-stack daily snapshot /etc 10.442 GiB + /home + /var/lib/docker/volumes + +9e95f540 2025-07-30 03:00:28 arr-stack daily snapshot /etc 10.445 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------ +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +2025-07-30_03:30:01 Backup script done +2025-07-31_03:30:01 Starting backup +User: ccalifice +2025-07-31_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing down Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-31_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 615ef8e0 + +Files: 152 new, 716 changed, 134152 unmodified +Dirs: 26 new, 191 changed, 39878 unmodified +Added to the repository: 518.324 MiB (157.020 MiB stored) + +processed 135020 files, 126.390 GiB in 0:17 +snapshot 6db29749 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing up Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-07-31_03:30:01 Backup complete. +2025-07-31_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------ +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +a1829f91 2025-06-30 03:00:40 arr-stack monthly snapshot /etc 8.820 GiB + /home + /var/lib/docker/volumes + +c8f1f912 2025-07-27 03:00:27 arr-stack weekly snapshot /etc 10.442 GiB + /home + /var/lib/docker/volumes + +c5526bb0 2025-07-29 03:00:29 arr-stack daily snapshot /etc 10.442 GiB + /home + /var/lib/docker/volumes + +9e95f540 2025-07-30 03:00:28 arr-stack daily snapshot /etc 10.445 GiB + /home + /var/lib/docker/volumes + +aefa3109 2025-07-31 03:00:28 arr-stack daily snapshot /etc 10.442 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------ +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +4c0b7734 2025-06-30 04:18:22 services monthly snapshot /etc 125.387 GiB + /home + /var/lib/docker/volumes + +0a048cc6 2025-07-27 05:43:34 services weekly snapshot /etc 126.399 GiB + /home + /var/lib/docker/volumes + +276f1d60 2025-07-29 04:20:33 services daily snapshot /etc 126.325 GiB + /home + /var/lib/docker/volumes + +615ef8e0 2025-07-30 04:10:00 services daily snapshot /etc 126.363 GiB + /home + /var/lib/docker/volumes + +6db29749 2025-07-31 04:06:14 services daily snapshot /etc 126.390 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +ef456012 2025-07-28 04:16:21 services /etc 126.423 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +ce4da403 2025-06-30 04:00:08 morganna monthly snapshot /etc 2.819 GiB + /home + /var/lib/docker/volumes + +5b2dd1b4 2025-07-27 04:00:07 morganna weekly snapshot /etc 3.252 GiB + /home + /var/lib/docker/volumes + +53885531 2025-07-29 04:00:08 morganna daily snapshot /etc 3.468 GiB + /home + /var/lib/docker/volumes + +65200284 2025-07-30 04:00:30 morganna daily snapshot /etc 3.481 GiB + /home + /var/lib/docker/volumes + +94990c2d 2025-07-31 04:00:06 morganna daily snapshot /etc 3.469 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 39 snapshots +[0:27] 100.00% 39 / 39 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:02] 100.00% 10999 / 10999 packs processed + +to repack: 855 blobs / 121.483 MiB +this removes: 757 blobs / 104.844 MiB +to delete: 0 blobs / 0 B +total prune: 757 blobs / 104.844 MiB +remaining: 851268 blobs / 176.976 GiB +unused size after prune: 8.845 GiB (5.00% of remaining size) + +repacking packs +[0:04] 100.00% 10 / 10 packs repacked +rebuilding index +[0:02] 100.00% 19 / 19 indexes processed +[0:00] 100.00% 7 / 7 old indexes deleted +removing 10 old packs +[0:01] 100.00% 10 / 10 files deleted +done +2025-07-31_03:30:01 Backup script done +2025-08-01_03:30:01 Starting backup +User: ccalifice +2025-08-01_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing down Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-08-01_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 6db29749 + +Files: 286 new, 458 changed, 133537 unmodified +Dirs: 33 new, 183 changed, 39894 unmodified +Added to the repository: 559.677 MiB (178.621 MiB stored) + +processed 134281 files, 126.361 GiB in 0:17 +snapshot 663666d9 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing up Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-08-01_03:30:01 Backup complete. +2025-08-01_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------ +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +c8f1f912 2025-07-27 03:00:27 arr-stack weekly snapshot /etc 10.442 GiB + /home + /var/lib/docker/volumes + +9e95f540 2025-07-30 03:00:28 arr-stack daily snapshot /etc 10.445 GiB + /home + /var/lib/docker/volumes + +aefa3109 2025-07-31 03:00:28 arr-stack daily snapshot /etc 10.442 GiB + monthly snapshot /home + /var/lib/docker/volumes + +ebf1c325 2025-08-01 03:00:29 arr-stack daily snapshot /etc 10.442 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------ +5 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +0a048cc6 2025-07-27 05:43:34 services weekly snapshot /etc 126.399 GiB + /home + /var/lib/docker/volumes + +615ef8e0 2025-07-30 04:10:00 services daily snapshot /etc 126.363 GiB + /home + /var/lib/docker/volumes + +6db29749 2025-07-31 04:06:14 services daily snapshot /etc 126.390 GiB + monthly snapshot /home + /var/lib/docker/volumes + +663666d9 2025-08-01 04:13:56 services daily snapshot /etc 126.361 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +5 snapshots + +remove 2 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +4c0b7734 2025-06-30 04:18:22 services /etc 125.387 GiB + /home + /var/lib/docker/volumes + +276f1d60 2025-07-29 04:20:33 services /etc 126.325 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +2 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +5b2dd1b4 2025-07-27 04:00:07 morganna weekly snapshot /etc 3.252 GiB + /home + /var/lib/docker/volumes + +65200284 2025-07-30 04:00:30 morganna daily snapshot /etc 3.481 GiB + /home + /var/lib/docker/volumes + +94990c2d 2025-07-31 04:00:06 morganna daily snapshot /etc 3.469 GiB + monthly snapshot /home + /var/lib/docker/volumes + +261ac98d 2025-08-01 04:00:31 morganna daily snapshot /etc 3.469 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +5 snapshots + +[0:00] 100.00% 2 / 2 files deleted +2 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 36 snapshots +[0:28] 100.00% 36 / 36 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:01] 100.00% 10996 / 10996 packs processed + +to repack: 34091 blobs / 403.540 MiB +this removes: 4654 blobs / 366.212 MiB +to delete: 1605 blobs / 611.185 MiB +total prune: 6259 blobs / 977.397 MiB +remaining: 843452 blobs / 176.054 GiB +unused size after prune: 8.798 GiB (5.00% of remaining size) + +repacking packs +[0:10] 100.00% 32 / 32 packs repacked +rebuilding index +[0:04] 100.00% 19 / 19 indexes processed +[0:00] 100.00% 17 / 17 old indexes deleted +removing 69 old packs +[0:00] 100.00% 69 / 69 files deleted +done +2025-08-01_03:30:01 Backup script done +2025-08-02_03:30:01 Starting backup +User: ccalifice +2025-08-02_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing down Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-08-02_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +repo already locked, waiting up to 0s for the lock +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing up Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-08-02_03:30:01 Backup complete. +2025-08-02_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +0a048cc6 2025-07-27 05:43:34 services weekly snapshot /etc 126.399 GiB + /home + /var/lib/docker/volumes + +615ef8e0 2025-07-30 04:10:00 services daily snapshot /etc 126.363 GiB + /home + /var/lib/docker/volumes + +6db29749 2025-07-31 04:06:14 services daily snapshot /etc 126.390 GiB + monthly snapshot /home + /var/lib/docker/volumes + +663666d9 2025-08-01 04:13:56 services daily snapshot /etc 126.361 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +5 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +5b2dd1b4 2025-07-27 04:00:07 morganna weekly snapshot /etc 3.252 GiB + /home + /var/lib/docker/volumes + +94990c2d 2025-07-31 04:00:06 morganna daily snapshot /etc 3.469 GiB + monthly snapshot /home + /var/lib/docker/volumes + +261ac98d 2025-08-01 04:00:31 morganna daily snapshot /etc 3.469 GiB + /home + /var/lib/docker/volumes + +b025818c 2025-08-02 04:00:05 morganna daily snapshot /etc 3.510 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +5 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------ +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +c8f1f912 2025-07-27 03:00:27 arr-stack weekly snapshot /etc 10.442 GiB + /home + /var/lib/docker/volumes + +aefa3109 2025-07-31 03:00:28 arr-stack daily snapshot /etc 10.442 GiB + monthly snapshot /home + /var/lib/docker/volumes + +ebf1c325 2025-08-01 03:00:29 arr-stack daily snapshot /etc 10.442 GiB + /home + /var/lib/docker/volumes + +e21391d0 2025-08-02 03:00:28 arr-stack daily snapshot /etc 10.444 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------ +5 snapshots + +2025-08-02_03:30:01 Backup script done +2025-08-03_03:30:01 Starting backup +User: ccalifice +2025-08-03_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing down Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-08-03_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 663666d9 + +Files: 266 new, 567 changed, 132948 unmodified +Dirs: 50 new, 207 changed, 39893 unmodified +Added to the repository: 676.671 MiB (208.213 MiB stored) + +processed 133781 files, 126.358 GiB in 0:32 +snapshot 1203c3b6 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing up Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-08-03_03:30:01 Backup complete. +2025-08-03_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +----------------------------------------------------------------------------------------------------------------- +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +5b2dd1b4 2025-07-27 04:00:07 morganna weekly snapshot /etc 3.252 GiB + /home + /var/lib/docker/volumes + +94990c2d 2025-07-31 04:00:06 morganna monthly snapshot /etc 3.469 GiB + /home + /var/lib/docker/volumes + +261ac98d 2025-08-01 04:00:31 morganna daily snapshot /etc 3.469 GiB + /home + /var/lib/docker/volumes + +b025818c 2025-08-02 04:00:05 morganna daily snapshot /etc 3.510 GiB + /home + /var/lib/docker/volumes + +61343b29 2025-08-03 04:00:08 morganna daily snapshot /etc 9.307 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +----------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------ +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +c8f1f912 2025-07-27 03:00:27 arr-stack weekly snapshot /etc 10.442 GiB + /home + /var/lib/docker/volumes + +aefa3109 2025-07-31 03:00:28 arr-stack monthly snapshot /etc 10.442 GiB + /home + /var/lib/docker/volumes + +ebf1c325 2025-08-01 03:00:29 arr-stack daily snapshot /etc 10.442 GiB + /home + /var/lib/docker/volumes + +e21391d0 2025-08-02 03:00:28 arr-stack daily snapshot /etc 10.444 GiB + /home + /var/lib/docker/volumes + +6e5f23ad 2025-08-03 03:00:30 arr-stack daily snapshot /etc 10.445 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------ +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +0a048cc6 2025-07-27 05:43:34 services weekly snapshot /etc 126.399 GiB + /home + /var/lib/docker/volumes + +6db29749 2025-07-31 04:06:14 services daily snapshot /etc 126.390 GiB + monthly snapshot /home + /var/lib/docker/volumes + +663666d9 2025-08-01 04:13:56 services daily snapshot /etc 126.361 GiB + /home + /var/lib/docker/volumes + +1203c3b6 2025-08-03 04:16:39 services daily snapshot /etc 126.358 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +5 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +615ef8e0 2025-07-30 04:10:00 services /etc 126.363 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 38 snapshots +[0:29] 100.00% 38 / 38 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:02] 100.00% 11064 / 11064 packs processed + +to repack: 29027 blobs / 19.697 MiB +this removes: 168 blobs / 1.154 MiB +to delete: 0 blobs / 0 B +total prune: 168 blobs / 1.154 MiB +remaining: 850732 blobs / 178.146 GiB +unused size after prune: 8.903 GiB (5.00% of remaining size) + +repacking packs +[0:05] 100.00% 3 / 3 packs repacked +rebuilding index +[0:02] 100.00% 21 / 21 indexes processed +[0:00] 100.00% 7 / 7 old indexes deleted +removing 3 old packs +[0:00] 100.00% 3 / 3 files deleted +done +2025-08-03_03:30:01 Backup script done +2025-08-04_03:30:01 Starting backup +User: ccalifice +2025-08-04_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing down Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-08-04_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 1203c3b6 + +Files: 85 new, 476 changed, 133269 unmodified +Dirs: 22 new, 184 changed, 39953 unmodified +Added to the repository: 592.794 MiB (176.845 MiB stored) + +processed 133830 files, 126.283 GiB in 0:22 +snapshot a9f10e76 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing up Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Project is disabled. Skipping /home/ccalifice/stirling-pdf_DISABLED +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-08-04_03:30:01 Backup complete. +2025-08-04_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------ +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +aefa3109 2025-07-31 03:00:28 arr-stack monthly snapshot /etc 10.442 GiB + /home + /var/lib/docker/volumes + +e21391d0 2025-08-02 03:00:28 arr-stack daily snapshot /etc 10.444 GiB + /home + /var/lib/docker/volumes + +6e5f23ad 2025-08-03 03:00:30 arr-stack daily snapshot /etc 10.445 GiB + weekly snapshot /home + /var/lib/docker/volumes + +92fb459d 2025-08-04 03:00:28 arr-stack daily snapshot /etc 10.444 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------ +5 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +6db29749 2025-07-31 04:06:14 services monthly snapshot /etc 126.390 GiB + /home + /var/lib/docker/volumes + +663666d9 2025-08-01 04:13:56 services daily snapshot /etc 126.361 GiB + /home + /var/lib/docker/volumes + +1203c3b6 2025-08-03 04:16:39 services daily snapshot /etc 126.358 GiB + weekly snapshot /home + /var/lib/docker/volumes + +a9f10e76 2025-08-04 04:16:05 services daily snapshot /etc 126.283 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +5 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +0a048cc6 2025-07-27 05:43:34 services /etc 126.399 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------ +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +94990c2d 2025-07-31 04:00:06 morganna monthly snapshot /etc 3.469 GiB + /home + /var/lib/docker/volumes + +b025818c 2025-08-02 04:00:05 morganna daily snapshot /etc 3.510 GiB + /home + /var/lib/docker/volumes + +61343b29 2025-08-03 04:00:08 morganna daily snapshot /etc 9.307 GiB + weekly snapshot /home + /var/lib/docker/volumes + +c7a1bd65 2025-08-04 04:00:31 morganna daily snapshot /etc 10.179 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------ +5 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 36 snapshots +[0:28] 100.00% 36 / 36 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:02] 100.00% 11077 / 11077 packs processed + +to repack: 30140 blobs / 117.875 MiB +this removes: 1418 blobs / 95.327 MiB +to delete: 280 blobs / 181.998 MiB +total prune: 1698 blobs / 277.326 MiB +remaining: 850080 blobs / 178.065 GiB +unused size after prune: 8.900 GiB (5.00% of remaining size) + +repacking packs +[0:07] 100.00% 9 / 9 packs repacked +rebuilding index +[0:03] 100.00% 19 / 19 indexes processed +[0:00] 100.00% 15 / 15 old indexes deleted +removing 20 old packs +[0:01] 100.00% 20 / 20 files deleted +done +2025-08-04_03:30:01 Backup script done +2025-08-05_03:30:01 Starting backup +User: ccalifice +2025-08-05_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing down Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-08-05_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot a9f10e76 + +Files: 878 new, 562 changed, 133173 unmodified +Dirs: 444 new, 591 changed, 39537 unmodified +Added to the repository: 1.334 GiB (797.050 MiB stored) + +processed 134613 files, 126.877 GiB in 0:47 +snapshot f9130e1f saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing up Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-08-05_03:30:01 Backup complete. +2025-08-05_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------ +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +aefa3109 2025-07-31 03:00:28 arr-stack monthly snapshot /etc 10.442 GiB + /home + /var/lib/docker/volumes + +6e5f23ad 2025-08-03 03:00:30 arr-stack daily snapshot /etc 10.445 GiB + weekly snapshot /home + /var/lib/docker/volumes + +92fb459d 2025-08-04 03:00:28 arr-stack daily snapshot /etc 10.444 GiB + /home + /var/lib/docker/volumes + +2dc4b323 2025-08-05 03:00:28 arr-stack daily snapshot /etc 10.445 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------ +5 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +6db29749 2025-07-31 04:06:14 services monthly snapshot /etc 126.390 GiB + /home + /var/lib/docker/volumes + +1203c3b6 2025-08-03 04:16:39 services daily snapshot /etc 126.358 GiB + weekly snapshot /home + /var/lib/docker/volumes + +a9f10e76 2025-08-04 04:16:05 services daily snapshot /etc 126.283 GiB + /home + /var/lib/docker/volumes + +f9130e1f 2025-08-05 04:15:53 services daily snapshot /etc 126.877 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +5 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +663666d9 2025-08-01 04:13:56 services /etc 126.361 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +keep 5 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------ +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +94990c2d 2025-07-31 04:00:06 morganna monthly snapshot /etc 3.469 GiB + /home + /var/lib/docker/volumes + +61343b29 2025-08-03 04:00:08 morganna daily snapshot /etc 9.307 GiB + weekly snapshot /home + /var/lib/docker/volumes + +c7a1bd65 2025-08-04 04:00:31 morganna daily snapshot /etc 10.179 GiB + /home + /var/lib/docker/volumes + +95c17215 2025-08-05 04:00:31 morganna daily snapshot /etc 10.986 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------ +5 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 36 snapshots +[0:36] 100.00% 36 / 36 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:02] 100.00% 11112 / 11112 packs processed + +to repack: 684 blobs / 54.941 MiB +this removes: 604 blobs / 50.860 MiB +to delete: 0 blobs / 0 B +total prune: 604 blobs / 50.860 MiB +remaining: 852890 blobs / 178.802 GiB +unused size after prune: 8.939 GiB (5.00% of remaining size) + +repacking packs +[0:01] 100.00% 5 / 5 packs repacked +rebuilding index +[0:02] 100.00% 19 / 19 indexes processed +[0:00] 100.00% 7 / 7 old indexes deleted +removing 5 old packs +[0:00] 100.00% 5 / 5 files deleted +done +2025-08-05_03:30:01 Backup script done +2025-08-06_03:30:01 Starting backup +User: ccalifice +2025-08-06_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing down Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-08-06_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot f9130e1f + +Files: 157 new, 598 changed, 133389 unmodified +Dirs: 25 new, 182 changed, 40380 unmodified +Added to the repository: 823.885 MiB (247.838 MiB stored) + +processed 134144 files, 126.864 GiB in 0:25 +snapshot 5430d274 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing up Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-08-06_03:30:01 Backup complete. +2025-08-06_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +6db29749 2025-07-31 04:06:14 services monthly snapshot /etc 126.390 GiB + /home + /var/lib/docker/volumes + +1203c3b6 2025-08-03 04:16:39 services weekly snapshot /etc 126.358 GiB + /home + /var/lib/docker/volumes + +a9f10e76 2025-08-04 04:16:05 services daily snapshot /etc 126.283 GiB + /home + /var/lib/docker/volumes + +f9130e1f 2025-08-05 04:15:53 services daily snapshot /etc 126.877 GiB + /home + /var/lib/docker/volumes + +5430d274 2025-08-06 04:04:25 services daily snapshot /etc 126.864 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------ +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +94990c2d 2025-07-31 04:00:06 morganna monthly snapshot /etc 3.469 GiB + /home + /var/lib/docker/volumes + +61343b29 2025-08-03 04:00:08 morganna weekly snapshot /etc 9.307 GiB + /home + /var/lib/docker/volumes + +c7a1bd65 2025-08-04 04:00:31 morganna daily snapshot /etc 10.179 GiB + /home + /var/lib/docker/volumes + +95c17215 2025-08-05 04:00:31 morganna daily snapshot /etc 10.986 GiB + /home + /var/lib/docker/volumes + +a96d89ca 2025-08-06 04:00:31 morganna daily snapshot /etc 11.790 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------ +6 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------ +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +aefa3109 2025-07-31 03:00:28 arr-stack monthly snapshot /etc 10.442 GiB + /home + /var/lib/docker/volumes + +6e5f23ad 2025-08-03 03:00:30 arr-stack weekly snapshot /etc 10.445 GiB + /home + /var/lib/docker/volumes + +92fb459d 2025-08-04 03:00:28 arr-stack daily snapshot /etc 10.444 GiB + /home + /var/lib/docker/volumes + +2dc4b323 2025-08-05 03:00:28 arr-stack daily snapshot /etc 10.445 GiB + /home + /var/lib/docker/volumes + +0e9425d5 2025-08-06 03:00:29 arr-stack daily snapshot /etc 10.443 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------ +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +2025-08-06_03:30:01 Backup script done +2025-08-07_03:30:01 Starting backup +User: ccalifice +2025-08-07_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing down Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-08-07_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 5430d274 + +Files: 158 new, 534 changed, 133519 unmodified +Dirs: 23 new, 188 changed, 40374 unmodified +Added to the repository: 823.459 MiB (243.607 MiB stored) + +processed 134211 files, 126.799 GiB in 0:30 +snapshot 1588c44a saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing up Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-08-07_03:30:01 Backup complete. +2025-08-07_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +6db29749 2025-07-31 04:06:14 services monthly snapshot /etc 126.390 GiB + /home + /var/lib/docker/volumes + +1203c3b6 2025-08-03 04:16:39 services weekly snapshot /etc 126.358 GiB + /home + /var/lib/docker/volumes + +f9130e1f 2025-08-05 04:15:53 services daily snapshot /etc 126.877 GiB + /home + /var/lib/docker/volumes + +5430d274 2025-08-06 04:04:25 services daily snapshot /etc 126.864 GiB + /home + /var/lib/docker/volumes + +1588c44a 2025-08-07 04:08:45 services daily snapshot /etc 126.799 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +a9f10e76 2025-08-04 04:16:05 services /etc 126.283 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------ +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +94990c2d 2025-07-31 04:00:06 morganna monthly snapshot /etc 3.469 GiB + /home + /var/lib/docker/volumes + +61343b29 2025-08-03 04:00:08 morganna weekly snapshot /etc 9.307 GiB + /home + /var/lib/docker/volumes + +95c17215 2025-08-05 04:00:31 morganna daily snapshot /etc 10.986 GiB + /home + /var/lib/docker/volumes + +a96d89ca 2025-08-06 04:00:31 morganna daily snapshot /etc 11.790 GiB + /home + /var/lib/docker/volumes + +a6b51c6a 2025-08-07 04:00:31 morganna daily snapshot /etc 12.593 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------ +6 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------ +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +aefa3109 2025-07-31 03:00:28 arr-stack monthly snapshot /etc 10.442 GiB + /home + /var/lib/docker/volumes + +6e5f23ad 2025-08-03 03:00:30 arr-stack weekly snapshot /etc 10.445 GiB + /home + /var/lib/docker/volumes + +2dc4b323 2025-08-05 03:00:28 arr-stack daily snapshot /etc 10.445 GiB + /home + /var/lib/docker/volumes + +0e9425d5 2025-08-06 03:00:29 arr-stack daily snapshot /etc 10.443 GiB + /home + /var/lib/docker/volumes + +26369d1e 2025-08-07 03:00:28 arr-stack daily snapshot /etc 10.442 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------ +6 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 39 snapshots +[0:27] 100.00% 39 / 39 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:02] 100.00% 11141 / 11141 packs processed + +to repack: 834 blobs / 109.856 MiB +this removes: 758 blobs / 100.137 MiB +to delete: 74 blobs / 16.132 MiB +total prune: 832 blobs / 116.268 MiB +remaining: 856068 blobs / 179.221 GiB +unused size after prune: 8.955 GiB (5.00% of remaining size) + +repacking packs +[0:04] 100.00% 8 / 8 packs repacked +rebuilding index +[0:03] 100.00% 19 / 19 indexes processed +[0:00] 100.00% 9 / 9 old indexes deleted +removing 9 old packs +[0:00] 100.00% 9 / 9 files deleted +done +2025-08-07_03:30:01 Backup script done +2025-08-08_03:30:01 Starting backup +User: ccalifice +2025-08-08_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing down Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-08-08_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 1588c44a + +Files: 206 new, 396 changed, 133601 unmodified +Dirs: 23 new, 177 changed, 40399 unmodified +Added to the repository: 733.422 MiB (206.879 MiB stored) + +processed 134203 files, 126.842 GiB in 0:26 +snapshot 5a2b7dc0 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing up Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-08-08_03:30:01 Backup complete. +2025-08-08_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 3 --keep-weekly 2 --keep-monthly 2 --keep-yearly 3 --prune +Applying Policy: keep 3 daily, 2 weekly, 2 monthly, 3 yearly snapshots +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +cc74ab56 2024-12-31 04:00:02 morganna rewrite yearly snapshot /etc 821.091 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7c9a9bd0 2024-12-31 04:00:02 morganna rewrite oldest yearly snapshot /etc 818.423 MiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +25b3344a 2025-03-31 04:00:01 morganna rewrite monthly snapshot /etc 1.121 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +e786f977 2025-04-20 04:00:01 morganna rewrite weekly snapshot /etc 1.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +322cc452 2025-04-25 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c7c4a7ed 2025-04-26 04:00:01 morganna daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------------- +d7419ddc 2024-12-31 03:30:12 services yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +51102b38 2024-12-31 03:30:12 services rewrite oldest yearly snapshot /etc 128.700 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +5cf18c5f 2025-03-31 05:14:58 services rewrite monthly snapshot /etc 121.098 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +7dfb4eda 2025-04-06 06:32:11 services rewrite weekly snapshot /etc 121.537 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +be83de8d 2025-04-07 03:48:23 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +6bea3ee8 2025-04-08 03:56:40 services daily snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 7 snapshots: +ID Time Host Tags Reasons Paths Size +--------------------------------------------------------------------------------------------------------------------- +c60a6700 2024-12-31 03:13:31 arr-stack yearly snapshot /etc + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +2e405ae1 2024-12-31 03:13:31 arr-stack rewrite oldest yearly snapshot /etc 6.147 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +a304fcf1 2025-03-31 03:00:01 arr-stack rewrite monthly snapshot /etc 6.840 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +354b84a3 2025-04-20 03:00:01 arr-stack rewrite weekly snapshot /etc 30.470 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +66bd46ce 2025-04-25 03:00:01 arr-stack daily snapshot /etc 10.272 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +c9b1ba11 2025-04-26 03:00:01 arr-stack daily snapshot /etc 8.782 GiB + /home + /var/lib/docker/containers + /var/lib/docker/volumes + +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------------------------- +7 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------ +d5868a18 2025-04-27 21:19:29 arr-stack oldest yearly snapshot /etc 8.803 GiB + /home + /var/lib/docker/volumes + +aefa3109 2025-07-31 03:00:28 arr-stack monthly snapshot /etc 10.442 GiB + /home + /var/lib/docker/volumes + +6e5f23ad 2025-08-03 03:00:30 arr-stack weekly snapshot /etc 10.445 GiB + /home + /var/lib/docker/volumes + +0e9425d5 2025-08-06 03:00:29 arr-stack daily snapshot /etc 10.443 GiB + /home + /var/lib/docker/volumes + +26369d1e 2025-08-07 03:00:28 arr-stack daily snapshot /etc 10.442 GiB + /home + /var/lib/docker/volumes + +90d0ddf4 2025-08-08 03:00:29 arr-stack daily snapshot /etc 10.441 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------ +6 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------- +206804e2 2025-04-27 21:38:49 services oldest yearly snapshot /etc 121.567 GiB + /home + /var/lib/docker/volumes + +6db29749 2025-07-31 04:06:14 services monthly snapshot /etc 126.390 GiB + /home + /var/lib/docker/volumes + +1203c3b6 2025-08-03 04:16:39 services weekly snapshot /etc 126.358 GiB + /home + /var/lib/docker/volumes + +5430d274 2025-08-06 04:04:25 services daily snapshot /etc 126.864 GiB + /home + /var/lib/docker/volumes + +1588c44a 2025-08-07 04:08:45 services daily snapshot /etc 126.799 GiB + /home + /var/lib/docker/volumes + +5a2b7dc0 2025-08-08 04:05:42 services daily snapshot /etc 126.842 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------- +6 snapshots + +remove 1 snapshots: +ID Time Host Tags Paths Size +------------------------------------------------------------------------------------------- +f9130e1f 2025-08-05 04:15:53 services /etc 126.877 GiB + /home + /var/lib/docker/volumes +------------------------------------------------------------------------------------------- +1 snapshots + +keep 6 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------------ +d3523495 2025-04-27 21:34:29 morganna rewrite oldest yearly snapshot /etc 1.088 GiB + /home + /var/lib/docker/volumes + +94990c2d 2025-07-31 04:00:06 morganna monthly snapshot /etc 3.469 GiB + /home + /var/lib/docker/volumes + +61343b29 2025-08-03 04:00:08 morganna weekly snapshot /etc 9.307 GiB + /home + /var/lib/docker/volumes + +a96d89ca 2025-08-06 04:00:31 morganna daily snapshot /etc 11.790 GiB + /home + /var/lib/docker/volumes + +a6b51c6a 2025-08-07 04:00:31 morganna daily snapshot /etc 12.593 GiB + /home + /var/lib/docker/volumes + +53cd6380 2025-08-08 04:00:31 morganna daily snapshot /etc 13.398 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------------ +6 snapshots + +[0:00] 100.00% 1 / 1 files deleted +1 snapshots have been removed, running prune +loading indexes... +loading all snapshots... +finding data that is still in use for 39 snapshots +[0:38] 100.00% 39 / 39 snapshots +searching used packs... +collecting packs for deletion and repacking +[0:02] 100.00% 11152 / 11152 packs processed + +to repack: 2199 blobs / 171.208 MiB +this removes: 1382 blobs / 156.846 MiB +to delete: 0 blobs / 0 B +total prune: 1382 blobs / 156.846 MiB +remaining: 856368 blobs / 179.280 GiB +unused size after prune: 8.955 GiB (5.00% of remaining size) + +repacking packs +[0:05] 100.00% 13 / 13 packs repacked +rebuilding index +[0:03] 100.00% 19 / 19 indexes processed +[0:00] 100.00% 10 / 10 old indexes deleted +removing 13 old packs +[0:01] 100.00% 13 / 13 files deleted +done +2025-08-08_03:30:01 Backup script done +2025-08-09_03:30:01 Starting backup +User: ccalifice +2025-08-09_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing down Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-08-09_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 5a2b7dc0 + +Files: 241 new, 507 changed, 133444 unmodified +Dirs: 24 new, 186 changed, 40402 unmodified +Added to the repository: 661.535 MiB (196.602 MiB stored) + +processed 134192 files, 126.868 GiB in 0:21 +snapshot 5a0356cf saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing up Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-08-09_03:30:01 Backup complete. +2025-08-09_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 2 --keep-weekly 1 --keep-monthly 1 --keep-yearly 1 --prune +Applying Policy: keep 2 daily, 1 weekly, 1 monthly, 1 yearly snapshots +keep 2 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------ +53cd6380 2025-08-08 04:00:31 morganna daily snapshot /etc 13.398 GiB + /home + /var/lib/docker/volumes + +1ff4460c 2025-08-09 04:00:31 morganna daily snapshot /etc 14.201 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------ +2 snapshots + +keep 2 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------- +5a2b7dc0 2025-08-08 04:05:42 services daily snapshot /etc 126.842 GiB + /home + /var/lib/docker/volumes + +5a0356cf 2025-08-09 04:13:00 services daily snapshot /etc 126.868 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------- +2 snapshots + +keep 1 snapshots: +ID Time Host Tags Reasons Paths Size +-------------------------------------------------------------------------------------------------------------- +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +-------------------------------------------------------------------------------------------------------------- +1 snapshots + +keep 1 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------- +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------- +1 snapshots + +keep 1 snapshots: +ID Time Host Tags Reasons Paths +--------------------------------------------------------------------------------------------------- +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------- +1 snapshots + +keep 1 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------ +09a481fa 2025-08-09 03:00:28 arr-stack daily snapshot /etc 10.446 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------ +1 snapshots + +2025-08-09_03:30:01 Backup script done +2025-08-10_03:30:01 Starting backup +User: ccalifice +2025-08-10_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing down Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-08-10_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 5a0356cf + +Files: 119 new, 530 changed, 133602 unmodified +Dirs: 33 new, 184 changed, 40414 unmodified +Added to the repository: 564.772 MiB (172.652 MiB stored) + +processed 134251 files, 126.862 GiB in 0:20 +snapshot a3235557 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing up Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-08-10_03:30:01 Backup complete. +2025-08-10_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 2 --keep-weekly 1 --keep-monthly 1 --keep-yearly 1 --prune +Applying Policy: keep 2 daily, 1 weekly, 1 monthly, 1 yearly snapshots +keep 1 snapshots: +ID Time Host Tags Reasons Paths Size +-------------------------------------------------------------------------------------------------------------- +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +-------------------------------------------------------------------------------------------------------------- +1 snapshots + +keep 1 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------- +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------- +1 snapshots + +keep 1 snapshots: +ID Time Host Tags Reasons Paths +--------------------------------------------------------------------------------------------------- +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------- +1 snapshots + +keep 2 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------ +1ff4460c 2025-08-09 04:00:31 morganna daily snapshot /etc 14.201 GiB + /home + /var/lib/docker/volumes + +218fe200 2025-08-10 04:00:31 morganna daily snapshot /etc 15.002 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------ +2 snapshots + +keep 2 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------- +5a0356cf 2025-08-09 04:13:00 services daily snapshot /etc 126.868 GiB + /home + /var/lib/docker/volumes + +a3235557 2025-08-10 04:17:30 services daily snapshot /etc 126.862 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------- +2 snapshots + +keep 1 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------ +0a18f46f 2025-08-10 03:00:28 arr-stack daily snapshot /etc 10.450 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------ +1 snapshots + +2025-08-10_03:30:01 Backup script done +2025-08-11_03:30:01 Starting backup +User: ccalifice +2025-08-11_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing down Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-08-11_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot a3235557 + +Files: 101 new, 500 changed, 133724 unmodified +Dirs: 22 new, 184 changed, 40439 unmodified +Added to the repository: 524.055 MiB (148.485 MiB stored) + +processed 134325 files, 126.907 GiB in 0:17 +snapshot 5ec860ee saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing up Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-08-11_03:30:01 Backup complete. +2025-08-11_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 2 --keep-weekly 1 --keep-monthly 1 --keep-yearly 1 --prune +Applying Policy: keep 2 daily, 1 weekly, 1 monthly, 1 yearly snapshots +keep 1 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------- +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------- +1 snapshots + +keep 1 snapshots: +ID Time Host Tags Reasons Paths Size +-------------------------------------------------------------------------------------------------------------- +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +-------------------------------------------------------------------------------------------------------------- +1 snapshots + +keep 1 snapshots: +ID Time Host Tags Reasons Paths +--------------------------------------------------------------------------------------------------- +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------- +1 snapshots + +keep 2 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------ +218fe200 2025-08-10 04:00:31 morganna daily snapshot /etc 15.002 GiB + /home + /var/lib/docker/volumes + +0e3fa895 2025-08-11 04:00:31 morganna daily snapshot /etc 15.224 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------ +2 snapshots + +keep 2 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------- +a3235557 2025-08-10 04:17:30 services daily snapshot /etc 126.862 GiB + /home + /var/lib/docker/volumes + +5ec860ee 2025-08-11 04:10:42 services daily snapshot /etc 126.907 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------- +2 snapshots + +keep 1 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------ +0bb8e2ac 2025-08-11 03:00:28 arr-stack daily snapshot /etc 10.450 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------ +1 snapshots + +2025-08-11_03:30:01 Backup script done +2025-08-12_03:30:01 Starting backup +User: ccalifice +2025-08-12_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing down Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-08-12_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot 5ec860ee + +Files: 139 new, 508 changed, 133682 unmodified +Dirs: 25 new, 176 changed, 40459 unmodified +Added to the repository: 509.772 MiB (155.514 MiB stored) + +processed 134329 files, 126.911 GiB in 0:22 +snapshot e2bdf0ce saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing up Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-08-12_03:30:01 Backup complete. +2025-08-12_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 2 --keep-weekly 1 --keep-monthly 1 --keep-yearly 1 --prune +Applying Policy: keep 2 daily, 1 weekly, 1 monthly, 1 yearly snapshots +keep 1 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------- +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------- +1 snapshots + +keep 1 snapshots: +ID Time Host Tags Reasons Paths +--------------------------------------------------------------------------------------------------- +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------- +1 snapshots + +keep 2 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------ +0e3fa895 2025-08-11 04:00:31 morganna daily snapshot /etc 15.224 GiB + /home + /var/lib/docker/volumes + +f3b6a494 2025-08-12 04:00:32 morganna daily snapshot /etc 14.430 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------ +2 snapshots + +keep 2 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------- +5ec860ee 2025-08-11 04:10:42 services daily snapshot /etc 126.907 GiB + /home + /var/lib/docker/volumes + +e2bdf0ce 2025-08-12 04:15:07 services daily snapshot /etc 126.911 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------- +2 snapshots + +keep 1 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------ +de081e04 2025-08-12 03:00:28 arr-stack daily snapshot /etc 10.450 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------ +1 snapshots + +keep 1 snapshots: +ID Time Host Tags Reasons Paths Size +-------------------------------------------------------------------------------------------------------------- +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +-------------------------------------------------------------------------------------------------------------- +1 snapshots + +2025-08-12_03:30:01 Backup script done +2025-08-13_03:30:01 Starting backup +User: ccalifice +2025-08-13_03:30:01 Stopping containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing down Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing down Docker Compose in /home/ccalifice/caddy +Bringing down Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing down Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing down Docker Compose in /home/ccalifice/filebrowser +Bringing down Docker Compose in /home/ccalifice/firefly-iii +Bringing down Docker Compose in /home/ccalifice/free-games-claimer +Bringing down Docker Compose in /home/ccalifice/ghostfolio +Bringing down Docker Compose in /home/ccalifice/gitea +Bringing down Docker Compose in /home/ccalifice/glances +Bringing down Docker Compose in /home/ccalifice/grafana +Bringing down Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing down Docker Compose in /home/ccalifice/homepage +Bringing down Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing down Docker Compose in /home/ccalifice/memos +Bringing down Docker Compose in /home/ccalifice/n8n +Bringing down Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing down Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing down Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing down Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing down Docker Compose in /home/ccalifice/uptime-kuma +Bringing down Docker Compose in /home/ccalifice/vaultwarden +Bringing down Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-08-13_03:30:01 Starting restic backup. Command: restic -r /mnt/restic backup --files-from /home/ccalifice/scripts/backup/include_file.txt --exclude-file=/home/ccalifice/scripts/backup/exclude_file.txt +using parent snapshot e2bdf0ce + +Files: 4320 new, 606 changed, 131811 unmodified +Dirs: 732 new, 373 changed, 39736 unmodified +Added to the repository: 1.186 GiB (527.128 MiB stored) + +processed 136737 files, 127.172 GiB in 0:26 +snapshot 516a3a61 saved +Restarting containers +Project is disabled. Skipping /home/ccalifice/Aria2-Pro-Docker_DISABLED +Bringing up Docker Compose in /home/ccalifice/RicoToGhostfolio +Project is disabled. Skipping /home/ccalifice/authelia_DISABLED +No docker-compose.yml found in /home/ccalifice/butane-configs, skipping. +Project is disabled. Skipping /home/ccalifice/cAdvisor_DISABLED +Bringing up Docker Compose in /home/ccalifice/caddy +Bringing up Docker Compose in /home/ccalifice/cloudflared +Project is disabled. Skipping /home/ccalifice/composecraft_DISABLED +Bringing up Docker Compose in /home/ccalifice/cyber-chef +Project is disabled. Skipping /home/ccalifice/damselfly_DISABLED +Bringing up Docker Compose in /home/ccalifice/filebrowser +Bringing up Docker Compose in /home/ccalifice/firefly-iii +Bringing up Docker Compose in /home/ccalifice/free-games-claimer +Bringing up Docker Compose in /home/ccalifice/ghostfolio +Bringing up Docker Compose in /home/ccalifice/gitea +Bringing up Docker Compose in /home/ccalifice/glances +Bringing up Docker Compose in /home/ccalifice/grafana +Bringing up Docker Compose in /home/ccalifice/guacamole-docker-compose +Bringing up Docker Compose in /home/ccalifice/homepage +Bringing up Docker Compose in /home/ccalifice/immich-app +Project is disabled. Skipping /home/ccalifice/infiscal_DISABLED +Project is disabled. Skipping /home/ccalifice/maybe-finance_DISABLED +Bringing up Docker Compose in /home/ccalifice/memos +Bringing up Docker Compose in /home/ccalifice/n8n +Bringing up Docker Compose in /home/ccalifice/ntfy +Project is disabled. Skipping /home/ccalifice/onedev_DISABLED +Bringing up Docker Compose in /home/ccalifice/paperless +Project is disabled. Skipping /home/ccalifice/photoprism_DISABLED +Project is disabled. Skipping /home/ccalifice/postgres-sereia-guardia_DISABLED +No docker-compose.yml found in /home/ccalifice/scripts, skipping. +Bringing up Docker Compose in /home/ccalifice/scrutiny +Project is disabled. Skipping /home/ccalifice/sg-financials_DISABLED +Bringing up Docker Compose in /home/ccalifice/stirling-pdf +Project is disabled. Skipping /home/ccalifice/trilium_DISABLED +Project is disabled. Skipping /home/ccalifice/typebot_DISABLED +Bringing up Docker Compose in /home/ccalifice/uptime-kuma +Bringing up Docker Compose in /home/ccalifice/vaultwarden +Bringing up Docker Compose in /home/ccalifice/vikunja +Project is disabled. Skipping /home/ccalifice/wg-easy_DISABLED +2025-08-13_03:30:01 Backup complete. +2025-08-13_03:30:01 Removing old backups. Command: restic -r /mnt/restic forget --keep-daily 2 --keep-weekly 1 --keep-monthly 1 --keep-yearly 1 --prune +Applying Policy: keep 2 daily, 1 weekly, 1 monthly, 1 yearly snapshots +keep 1 snapshots: +ID Time Host Tags Reasons Paths Size +---------------------------------------------------------------------------------------------------------------- +971f0f4a 2025-04-09 03:48:19 services rewrite daily snapshot /etc 121.905 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +---------------------------------------------------------------------------------------------------------------- +1 snapshots + +keep 1 snapshots: +ID Time Host Tags Reasons Paths Size +-------------------------------------------------------------------------------------------------------------- +28c8da59 2025-04-27 03:00:01 arr-stack daily snapshot /etc 8.706 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +-------------------------------------------------------------------------------------------------------------- +1 snapshots + +keep 1 snapshots: +ID Time Host Tags Reasons Paths +--------------------------------------------------------------------------------------------------- +fca8ba43 2025-04-27 04:00:01 morganna daily snapshot /etc + weekly snapshot /home + monthly snapshot /var/lib/docker/containers + yearly snapshot /var/lib/docker/volumes +--------------------------------------------------------------------------------------------------- +1 snapshots + +keep 2 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------ +f3b6a494 2025-08-12 04:00:32 morganna daily snapshot /etc 14.430 GiB + /home + /var/lib/docker/volumes + +3e2d60ed 2025-08-13 04:00:31 morganna daily snapshot /etc 14.559 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------ +2 snapshots + +keep 2 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------- +e2bdf0ce 2025-08-12 04:15:07 services daily snapshot /etc 126.911 GiB + /home + /var/lib/docker/volumes + +516a3a61 2025-08-13 04:20:52 services daily snapshot /etc 127.172 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------- +2 snapshots + +keep 1 snapshots: +ID Time Host Tags Reasons Paths Size +------------------------------------------------------------------------------------------------------------ +c569bcfb 2025-08-13 03:00:28 arr-stack daily snapshot /etc 10.449 GiB + weekly snapshot /home + monthly snapshot /var/lib/docker/volumes + yearly snapshot +------------------------------------------------------------------------------------------------------------ +1 snapshots + +2025-08-13_03:30:01 Backup script done diff --git a/backup/restore_script.py b/backup/restore_script.py new file mode 100644 index 0000000..cac43fd --- /dev/null +++ b/backup/restore_script.py @@ -0,0 +1,42 @@ +import tarfile +import shutil +import os +import glob + +def extract_tar_gz(source_file, destination_dir, extract_path): + # Ensure destination directory exists + os.makedirs(destination_dir, exist_ok=True) + + # Extract files from tar.gz file + with tarfile.open(source_file, "r:gz") as tar: + for member in tar.getmembers(): + if member.name.startswith(extract_path): + tar.extract(member, destination_dir) + +def main(): + # Source file pattern + source_pattern = "/mnt/server_backup/restore/*.tar.gz" + + # Destination directory + destination_dir = "/home/ccalifice/" + + # Path inside the tarfile to extract + extract_path = "home/ccalifce/" + + # Get list of tar.gz files + tar_files = glob.glob(source_pattern) + + if not tar_files: + print("No matching tar.gz files found.") + return + + # Copy and extract each tar.gz file + for source_file in tar_files: + try: + extract_tar_gz(source_file, destination_dir, extract_path) + print(f"Extraction successful for {source_file}.") + except Exception as e: + print(f"Error extracting {source_file}: {e}") + +if __name__ == "__main__": + main() diff --git a/backup_services.sh b/backup_services.sh new file mode 100644 index 0000000..d01a263 --- /dev/null +++ b/backup_services.sh @@ -0,0 +1,25 @@ +#!/bin/bash + +# Set the source and destination paths +source_path=/home/ccalifice/ +backup_path=/mnt/server_backup/ +timestamp=$(date "+%Y%m%d_%H%M%S") +log_path=/scripts/ +# Stop containers +docker stop $(docker ps -q) + +# Create a tar archive excluding cache and hidden files +file_name="${timestamp}_services_backup.tar.gz" +tar -czf $source_path$file_name --exclude=*/cache --exclude=*/logs --exclude=*/Cache --exclude=*/Logs --exclude=*/library --exclude=*/sidecar --exclude=*/model-cache $source_path + + +# Use rsync to copy the created archive to the destination +rsync -av --progress "${source_path}${file_name}" "$backup_path" + +# Optionally, remove the local backup file after copying +rm $source_path$file_name + +# Restart containers +docker start $(docker ps -a -q) + +echo "${file_name} - backup complete" >> ${source_path}${log_path}backup.log \ No newline at end of file diff --git a/move-into-folders.py b/move-into-folders.py new file mode 100644 index 0000000..ed9ccbb --- /dev/null +++ b/move-into-folders.py @@ -0,0 +1,26 @@ +import os +import shutil +import datetime + +# Set the source directory +source_dir = 'C:/Users/chris/Pictures/Python-test' + +# Set the destination directory +dest_dir = 'C:/Users/chris/Pictures/Python-test' + +# Get the list of files in the source directory +files = os.listdir(source_dir) + +# Loop through the files +for file in files: + # Get the creation time of the file + creation_time = os.path.getmtime(os.path.join(source_dir, file)) + # Convert the creation time to a datetime object + creation_date = datetime.datetime.fromtimestamp(creation_time) + # Create a new directory based on the year and month of the creation date + new_dir = os.path.join(dest_dir, f'{creation_date.year}' + '-' + f'{creation_date.month:02d}' + '-' + f'{creation_date.day:02d}') + # Create the new directory if it doesn't exist + if not os.path.exists(new_dir): + os.makedirs(new_dir) + # Move the file to the new directory + shutil.move(os.path.join(source_dir, file), os.path.join(new_dir, file)) diff --git a/restore_script.py b/restore_script.py new file mode 100644 index 0000000..cac43fd --- /dev/null +++ b/restore_script.py @@ -0,0 +1,42 @@ +import tarfile +import shutil +import os +import glob + +def extract_tar_gz(source_file, destination_dir, extract_path): + # Ensure destination directory exists + os.makedirs(destination_dir, exist_ok=True) + + # Extract files from tar.gz file + with tarfile.open(source_file, "r:gz") as tar: + for member in tar.getmembers(): + if member.name.startswith(extract_path): + tar.extract(member, destination_dir) + +def main(): + # Source file pattern + source_pattern = "/mnt/server_backup/restore/*.tar.gz" + + # Destination directory + destination_dir = "/home/ccalifice/" + + # Path inside the tarfile to extract + extract_path = "home/ccalifce/" + + # Get list of tar.gz files + tar_files = glob.glob(source_pattern) + + if not tar_files: + print("No matching tar.gz files found.") + return + + # Copy and extract each tar.gz file + for source_file in tar_files: + try: + extract_tar_gz(source_file, destination_dir, extract_path) + print(f"Extraction successful for {source_file}.") + except Exception as e: + print(f"Error extracting {source_file}: {e}") + +if __name__ == "__main__": + main() diff --git a/stop_all_containers.sh b/stop_all_containers.sh new file mode 100644 index 0000000..ced7e0c --- /dev/null +++ b/stop_all_containers.sh @@ -0,0 +1,18 @@ +#!/bin/bash + +for dir in /home/ccalifice/*; do + # Remove trailing slash + dir=${dir%/} + + # Check if it is a directory and does NOT end with "DISABLED" + if [[ -d "$dir" && ! "$dir" =~ DISABLED$ ]]; then + if [ -f "$dir/docker-compose.yml" ]; then + echo "Bringing down Docker Compose in $dir" + (cd "$dir" && docker compose down) + else + echo "No docker-compose.yml found in $dir, skipping." + fi + else + echo "Project is disabled. Skipping $dir" + fi +done diff --git a/updateCloudflateDNS.py b/updateCloudflateDNS.py new file mode 100644 index 0000000..c4fc619 --- /dev/null +++ b/updateCloudflateDNS.py @@ -0,0 +1,55 @@ +import requests +import json +#import logging + +# logging.basicConfig() +# logging.getLogger().setLevel(logging.DEBUG) + +# requests_log = logging.getLogger("requests.packages.urllib3") +# requests_log.setLevel(logging.DEBUG) +# requests_log.propagate = True + +ip = requests.get("http://api.ipify.org") + +print(ip.text) + + + +zoneId = "5f5b0bf2ebe816578be8c5553c98be6d" +apiToken = "fupBXzTMFsmgAxcna8ZTcmHnsX5dRznK2QtSSPl_" +apiKey = "58ec6020b9886fd8e30275b55ddc8b3c79bea" +apiEmail = "christoph.califice@hotmail.com" + +url_getEntries = f"https://api.cloudflare.com/client/v4/zones/{zoneId}/dns_records" +url_updateEntry = f"https://api.cloudflare.com/client/v4/zones/{zoneId}/dns_records/" +reqHeaders = { + #"Authorization": "Bearer " + apiToken, + "X-Auth-Email": apiEmail, + "X-Auth-Key": apiKey + } + + +req = requests.get(url_getEntries, headers=reqHeaders) + + + +entriesJson = json.loads(req.text) + + +for entry in entriesJson["result"]: + if(entry["type"] == "A"): + id = entry["id"] + name = entry["name"] + + data = { + "content": f"{ip.text}", + "name": f"{name}", + "ttl": "1" + } + + print(data) + + resp = requests.patch(url_updateEntry + id, json=data, headers=reqHeaders) + print(resp.text) + + \ No newline at end of file