.env.template 771 B

123456789101112131415161718192021222324
  1. # Directory on the docker host to bind-mount to be backed up
  2. # BACKUP_SOURCE is bind-mounted to /mnt/source
  3. BACKUP_SOURCE=/home
  4. # Folders to be backed up in the format /mnt/source/<folder>
  5. BACKUP_BACKUP_FOLDERS=/mnt/source/john /mnt/source/jane
  6. # Additional arguments for restic backup
  7. RESTIC_BACKUP_ARGS=--limit-upload 244 --limit-download 244
  8. # Additional arguments for restic forget
  9. RESTIC_FORGET_ARGS=--keep-weekly 2 --prune
  10. # Passphrase to encrypt the backup
  11. ESTIC_PASSWORD=AnotherSetOf30RandomCharacters
  12. # S3 Bucket + Credentials
  13. AWS_ACCESS_KEY_ID=example-TwelveChar
  14. AWS_SECRET_ACCESS_KEY=30RandomAlphaNumericCharacters
  15. RESTIC_REPOSITORY=s3:https://example.ulm-store.de/mybackup
  16. # Timezone (see https://github.com/restic/restic/issues/2534)
  17. TZ=Europe/Berlin