Skip to content

Commit 75e4ee2

Browse files
committed
pgaudit extension support for extended postgres image
1 parent cc6a3e0 commit 75e4ee2

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ Available PostgreSQL versions: 9.6, 10, 11, 12, 13. Extensions:
2424
- [pg_show_plans](https://github.com/cybertec-postgresql/pg_show_plans)
2525
- [pg_stat_kcache](https://github.com/powa-team/pg_stat_kcache)
2626
- [pg_timetable](https://github.com/cybertec-postgresql/pg_timetable)
27+
- [pgaudit](https://github.com/pgaudit/pgaudit)
2728
- [pgextwlist](https://github.com/dimitri/pgextwlist)
2829
- [postgresql-hll](https://github.com/citusdata/postgresql-hll)
2930
- [postgresql-topn](https://github.com/citusdata/postgresql-topn)
@@ -40,6 +41,7 @@ The PostgreSQL 13 image is now missing the following extensions (they will be ad
4041
- hypopg
4142
- pg_auth_mon
4243
- pg_hint_plan
44+
- pgaudit
4345
- powa
4446
- timescaledb
4547

@@ -93,6 +95,7 @@ The PostgreSQL 13 image is now missing the following extensions (they will be ad
9395
| pg_stat_statements | 1.6 | track execution statistics of all SQL statements executed |
9496
| pg_trgm | 1.4 | text similarity measurement and index searching based on trigrams |
9597
| pg_visibility | 1.2 | examine the visibility map (VM) and page-level visibility info |
98+
| pgaudit | 1.3.2 | provides auditing functionality |
9699
| pgcrypto | 1.3 | cryptographic functions |
97100
| pgrowlocks | 1.2 | show row-level locking information |
98101
| pgstattuple | 1.5 | show tuple-level statistics |

extended/Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ RUN apt-get clean && rm -rf /var/lib/apt/lists/partial \
4242
&& apt-get install -y timescaledb-postgresql-${PG_SERVER_VERSION} \
4343
# powa extension
4444
&& apt-get install postgresql-${PG_SERVER_VERSION}-powa \
45+
# pgaudit extension
46+
&& apt-get install postgresql-${PG_SERVER_VERSION}-pgaudit \
4547
# pg_auth_mon extension
4648
&& git clone https://github.com/RafiaSabih/pg_auth_mon.git \
4749
&& cd pg_auth_mon && USE_PGXS=1 make && USE_PGXS=1 make install; \

0 commit comments

Comments
 (0)