From 36d5b2888ce34fd075bc7a9f82deab86703e36e2 Mon Sep 17 00:00:00 2001 From: Elliott Shugerman Date: Tue, 7 Dec 2021 22:25:39 -0500 Subject: [PATCH] add support for postgres v14, drop v9 --- README.md | 2 +- hooks/versions.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8d51436..8a67c16 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ pg_backup_s3: POSTGRES_USER: user POSTGRES_PASSWORD: password ``` -- Images are tagged by the major PostgreSQL version they support: `9`, `10`, `11`, `12`, or `13`. +- Images are tagged by the major PostgreSQL version they support: `10`, `11`, `12`, `13`, or `14`. - The `SCHEDULE` variable determines backup frequency. See go-cron schedules documentation [here](http://godoc.org/github.com/robfig/cron#hdr-Predefined_schedules). Omit to run the backup immediately and then exit. - If `PASSPHRASE` is provided, the backup will be encrypted using GPG. - Run `docker exec sh backup.sh` to trigger a backup ad-hoc diff --git a/hooks/versions.sh b/hooks/versions.sh index 6ddb58f..ae23d3e 100755 --- a/hooks/versions.sh +++ b/hooks/versions.sh @@ -1,7 +1,7 @@ declare -A versions # VERSIONS[]= -VERSIONS[9]=3.6 VERSIONS[10]=3.8 VERSIONS[11]=3.10 VERSIONS[12]=3.12 VERSIONS[13]=3.14 +VERSIONS[14]=3.15