Advertisement
Guest User

Restic Backup Env File

a guest
May 13th, 2025
16
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.00 KB | Source Code | 0 0
  1. # Restic -> Backblaze (S2 bucket)
  2. #
  3. # Env Vars
  4. #
  5. #
  6.  
  7. # Backblaze/S2 Bucket auth
  8. AWS_ACCESS_KEY_ID=
  9. AWS_SECRET_ACCESS_KEY=
  10.  
  11. # Repositories
  12. REMOTE_REPOSITORY='s3:s3.your.bucket.here'
  13. LOCAL_REPOSITORY='/path/to/local/dir'
  14.  
  15. # Local database dump directory
  16. DB_DUMP_DIR=
  17.  
  18. # Restic Specific
  19. RESTIC_PASSWORD_FILE=
  20. RESTIC_CACHE_DIR=
  21. RESTIC_EXCLUDES_FILE=
  22.  
  23. # Space-separated list of directories to backup
  24. # Can add a key to search a common container name (useful if containers are prefixed and want to specify shutdown)
  25. #   - eg; 'log:/path/to/dir /path/to/dir2 /path/to/dir3'
  26. #       - This will shut down all containers with 'log' in the name for the first directory,
  27. #       - and the remaining will shut down all containers with those directories mounted
  28. #       - Generally, just listing the directory will be sufficient
  29. BACKUP_DIRS=
  30.  
  31. # Komodo (container orchestration)
  32. # Used to restart/stop containers
  33. KOMODO_API_KEY=
  34. KOMODO_API_SECRET=
  35. KOMODO_SERVER_NAME=
  36. KOMODO_SERVER_URL=
  37.  
  38. #
  39. ## CZ ##
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement