From f798e9beed8393d398aef28ca68c5267f61e3258 Mon Sep 17 00:00:00 2001 From: pjsxw <144483752+pjsxw@users.noreply.github.com> Date: Mon, 11 Dec 2023 16:57:30 +0000 Subject: [PATCH] docs: update backup-and-restore.md (#5616) Removes `BACKUP_KEEP_NUM` option from docker-compose example for database dumping, since it no longer exists in the linked image. The image has sensible defaults for backups to keep (7 daily, 4 weekly, 6 monthly), so I haven't replaced the argument with an alternative. --- docs/docs/administration/backup-and-restore.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/docs/administration/backup-and-restore.md b/docs/docs/administration/backup-and-restore.md index da9e271b57..32dba3500a 100644 --- a/docs/docs/administration/backup-and-restore.md +++ b/docs/docs/administration/backup-and-restore.md @@ -44,7 +44,6 @@ services: POSTGRES_USER: ${DB_USERNAME} POSTGRES_PASSWORD: ${DB_PASSWORD} SCHEDULE: "@daily" - BACKUP_NUM_KEEP: 7 BACKUP_DIR: /db_dumps volumes: - ./db_dumps:/db_dumps