-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
32 lines (28 loc) · 1.06 KB
/
.env.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# ===
# Basic Restic settings
#
RESTIC_REPOSITORY="" # Specify a Restic repository path
RESTIC_PASSWORD="" # You can also use RESTIC_PASSWORD_FILE and RESTIC_PASSWORD_COMMAND
# ====
# ====
# Specify directories to backup, comma seperated
#
BACKUP_DIRECTORIES="" # Comma seperated for multiple dirs
BACKUP_EXCLUDE_DIRECTORIES="" # Comma seperated list of dirs to exclude
# ====
# ====
# Backup Retention policy
#
# Setting to all 0 will set no policy and keep all snapshots
# This is the default setting
#
BACKUP_RETENTION_LAST="0" # Keep this 0 to keep no last backups
BACKUP_RETENTION_DAILY="0" # Keep this 0 to keep no daily backups
BACKUP_RETENTION_WEEKLY="0" # Keep this 0 to keep no weekly backups
BACKUP_RETENTION_MONTHLY="0" # Keep this 0 to keep no monthly backups
BACKUP_RETENTION_YEARLY="0" # Keep this 0 to keep no yearly backups
# ====
# Should we keep backups from the last few days to prevent attacks?
BACKUP_KEEP_WITHIN=""
# Should we automatically prune after backup? If your backups are big, disable this and run prune as a seperate task instead
BACKUP_PRUNE="true"