3
0
mirror of https://kolaente.dev/konrad/docker-db-backup.git synced 2026-01-09 12:40:07 +01:00

chore: update default config

This commit is contained in:
kolaente
2021-12-05 13:45:42 +01:00
parent 1026b19544
commit 70d5987d4c
2 changed files with 2 additions and 2 deletions

View File

@@ -39,4 +39,4 @@ Default: `3h`
How many backups to keep. If more backups are stored in the backup folder, the oldest one will be removed until there
are only as many as this config variable.
Default: `24`
Default: `12`

View File

@@ -34,7 +34,7 @@ func init() {
config = &conf{
Folder: "/backups/",
Interval: time.Hour * 6,
MaxBackups: 10,
MaxBackups: 12,
}
folder, has := os.LookupEnv(envBackupFolder)