Skip to content

Commit 6946581

Browse files
committed
Add wal2json
Signed-off-by: Bulat Gafurov <[email protected]>
1 parent 8521a64 commit 6946581

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

Debian/Dockerfile.template

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ RUN set -xe; \
3535
"postgresql-${PG_MAJOR}-pgaudit" \
3636
"postgresql-${PG_MAJOR}-pgvector" \
3737
"postgresql-${PG_MAJOR}-pg-failover-slots" \
38+
"postgresql-${PG_MAJOR}-wal2json" \
3839
; \
3940
rm -fr /tmp/* ; \
4041
rm -rf /var/lib/apt/lists/*;

Dockerfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ RUN apt-get update && \
2727
apt-get install -y --no-install-recommends locales-all \
2828
"postgresql-${PG_MAJOR}-pgaudit" \
2929
"postgresql-${PG_MAJOR}-pgvector" \
30-
"postgresql-${PG_MAJOR}-pg-failover-slots" && \
30+
"postgresql-${PG_MAJOR}-pg-failover-slots" \
31+
"postgresql-${PG_MAJOR}-wal2json" && \
3132
apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false && \
3233
rm -rf /var/lib/apt/lists/* /var/cache/* /var/log/*
3334

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ following additional features:
6363
- PGAudit
6464
- Postgres Failover Slots
6565
- pgvector
66+
- wal2json
6667
- All Locales
6768

6869
Standard images are identifiable by the `standard` tag in their names, such as:
@@ -84,6 +85,7 @@ These images include additional software to extend PostgreSQL functionality:
8485
- PGAudit
8586
- Postgres Failover Slots
8687
- pgvector
88+
- wal2json
8789

8890
The [`Debian`](Debian) folder contains image catalogs, which can be used as:
8991
- [`ClusterImageCatalog`](https://cloudnative-pg.io/documentation/current/image_catalog/)
@@ -164,6 +166,9 @@ Postgres Failover Slots is distributed by EnterpriseDB under the
164166
pgvector is distributed under the
165167
[PostgreSQL License](https://github.com/pgvector/pgvector/blob/master/LICENSE).
166168

169+
wal2json is distributed under the
170+
[BSD-3-Clause License](https://github.com/eulerto/wal2json/blob/master/LICENSE)
171+
167172
## Trademarks
168173

169174
*[Postgres, PostgreSQL and the Slonik Logo](https://www.postgresql.org/about/policies/trademarks/)

0 commit comments

Comments
 (0)