diff --git a/Debian/Dockerfile.template b/Debian/Dockerfile.template index a266b567..9a47430b 100644 --- a/Debian/Dockerfile.template +++ b/Debian/Dockerfile.template @@ -28,11 +28,13 @@ LABEL org.opencontainers.image.description="This Docker image contains PostgreSQ COPY requirements.txt / -# Install pgaudit +# Install additional extensions RUN set -xe; \ apt-get update; \ apt-get install -y --no-install-recommends \ - "postgresql-${PG_MAJOR}-pgaudit" ;\ + "postgresql-${PG_MAJOR}-pgaudit" \ + "postgresql-${PG_MAJOR}-pg-failover-slots" \ + ; \ rm -fr /tmp/* ; \ rm -rf /var/lib/apt/lists/*; diff --git a/README.md b/README.md index cec5382d..2bf72476 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,7 @@ by adding the following software: - Barman Cloud - PGAudit +- Postgres Failover Slots Barman Cloud is distributed by EnterpriseDB under the [GNU GPL 3 License](https://github.com/EnterpriseDB/barman/blob/master/LICENSE). @@ -18,6 +19,9 @@ Barman Cloud is distributed by EnterpriseDB under the PGAudit is distributed under the [PostgreSQL License](https://github.com/pgaudit/pgaudit/blob/master/LICENSE). +Postgres Failover Slots is distributed by EnterpriseDB under the +[PostgreSQL License](https://github.com/EnterpriseDB/pg_failover_slots/blob/master/LICENSE). + Images are available via [GitHub Container Registry](https://github.com/cloudnative-pg/postgres-containers/pkgs/container/postgresql).