From 16f526e59ee552953e018e974d5d78a5d6eb32ff Mon Sep 17 00:00:00 2001 From: Jonatan Heyman Date: Wed, 31 Jan 2024 13:54:05 +0100 Subject: [PATCH] Add info about PG_DUMP_EXTRA_OPTIONS to Readme --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 3563f5b..249b891 100644 --- a/README.md +++ b/README.md @@ -58,6 +58,7 @@ docker run -it --rm --name=pgbackup \ * `WEBHOOK_DATA`: Add a body to the webhook being called, unless changed it implies that `POST` method is used. E.g. `{"text":"Backup completed at %(date)s %(time)s!"}` * `KEEP_BACKUP_DAYS`: The number of days to keep backups for when pruning old backups. Defaults to `7`. * `FILENAME`: String that is passed into `strftime()` and used as the backup dump's filename. Defaults to `$DB_NAME_%Y-%m-%d`. +* `PG_DUMP_EXTRA_OPTIONS`: Specify additional options for `pg_dump`, e.g. `--exclude-table-data=table_name` to exclude table data from the dump. ### Interpolation