From 594d90b744b6acf703a97e2cd6500f404cdccd1b Mon Sep 17 00:00:00 2001 From: "thomas.boussekey" Date: Wed, 13 Sep 2023 16:49:44 +0200 Subject: [PATCH] feat: add `pg_repack` extension Signed-off-by: thomasboussekey --- Debian/Dockerfile-beta.template | 1 + Debian/Dockerfile.template | 1 + README.md | 4 ++++ 3 files changed, 6 insertions(+) diff --git a/Debian/Dockerfile-beta.template b/Debian/Dockerfile-beta.template index 5e0a66b4..016c027f 100644 --- a/Debian/Dockerfile-beta.template +++ b/Debian/Dockerfile-beta.template @@ -31,6 +31,7 @@ RUN set -xe; \ apt-get update; \ apt-get install -y --no-install-recommends \ "postgresql-${PG_MAJOR}-pgaudit" \ + "postgresql-${PG_MAJOR}-pg-repack" \ ; \ rm -fr /tmp/* ; \ rm -rf /var/lib/apt/lists/*; diff --git a/Debian/Dockerfile.template b/Debian/Dockerfile.template index 9a47430b..640d1cff 100644 --- a/Debian/Dockerfile.template +++ b/Debian/Dockerfile.template @@ -33,6 +33,7 @@ RUN set -xe; \ apt-get update; \ apt-get install -y --no-install-recommends \ "postgresql-${PG_MAJOR}-pgaudit" \ + "postgresql-${PG_MAJOR}-pg-repack" \ "postgresql-${PG_MAJOR}-pg-failover-slots" \ ; \ rm -fr /tmp/* ; \ diff --git a/README.md b/README.md index 2bf72476..f1af76d4 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,7 @@ by adding the following software: - Barman Cloud - PGAudit +- pg_repack - Postgres Failover Slots Barman Cloud is distributed by EnterpriseDB under the @@ -19,6 +20,9 @@ Barman Cloud is distributed by EnterpriseDB under the PGAudit is distributed under the [PostgreSQL License](https://github.com/pgaudit/pgaudit/blob/master/LICENSE). +pg_repack is distributed by the pg_reorg project under the +[BSD-3-Clause license](https://github.com/reorg/pg_repack/blob/master/COPYRIGHT). + Postgres Failover Slots is distributed by EnterpriseDB under the [PostgreSQL License](https://github.com/EnterpriseDB/pg_failover_slots/blob/master/LICENSE).