Advertisement
Kevinator

Backup Docker Containers

Mar 2nd, 2025
318
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.48 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. # Only Update the 4 Variables Below #
  4. backupDirectory=/home/kevin/Docker
  5. backupDestination=/media/Backup/Containers
  6. tmpDirectory=/media/Backup/tmp
  7. skipDirs="Portainer Netdata" # (Space-Separated)
  8.  
  9. ##################################
  10. # DO NOT UPDATE THE SCRIPT BELOW #
  11. ##################################
  12.  
  13. # Loop through Container Directories
  14. for dir in "$backupDirectory"/*/; do
  15.     dir_name=$(basename "$dir")
  16.  
  17.     # Skip Listed Directories
  18.     if [[ " $skipDirs " =~ " $dir_name " ]]; then
  19.         echo "Skipping $dir_name (owned by root)"
  20.         continue
  21.     fi
  22.  
  23.     # Get Start Time
  24.     start_time=$(date +%s)
  25.  
  26.     # Copy Container Directory to Tmp Location
  27.     echo "Copying $dir_name to temporary directory..."
  28.     cp -r "$dir" "$tmpDirectory/"
  29.  
  30.     # Compress the Copied Container Contents
  31.     echo "Compressing $dir_name..."
  32.     tar -czf "$backupDestination/$dir_name-$(date +%Y%m%d).tar.gz" -C "$tmpDirectory" "$dir_name"
  33.  
  34.     # Remove the Tmp Copy
  35.     rm -rf "$tmpDirectory/$dir_name"
  36.  
  37.     # Get End Time
  38.     end_time=$(date +%s)
  39.  
  40.     # Total Time in Seconds
  41.     elapsed_time=$((end_time - start_time))
  42.  
  43.     # Calculate Hours, Minutes, Seconds
  44.     hours=$((elapsed_time / 3600))
  45.     minutes=$(( (elapsed_time % 3600) / 60 ))
  46.     seconds=$((elapsed_time % 60))
  47.  
  48.     # Display Console Message
  49.     echo "Backed up $dir_name in ${hours} Hours ${minutes} Minutes ${seconds} Seconds"
  50. fi
  51. done
  52.  
  53. # Display Final Console Message
  54. echo "Backup Completed!"
  55.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement