Skip to content

Commit 24417d2

Browse files
committed
add set_user extension support
1 parent 10f413b commit 24417d2

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

extended/Dockerfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG PG_SERVER_VERSION=9.6
1+
ARG PG_SERVER_VERSION=11
22
ARG CITUS=9.4
33

44
FROM postgres:${PG_SERVER_VERSION}
@@ -78,8 +78,12 @@ RUN git clone https://github.com/CyberDem0n/bg_mon.git && cd bg_mon && USE_PGXS=
7878
# add pgextwlist extension
7979
RUN apt-get install postgresql-${PG_SERVER_VERSION}-pgextwlist
8080

81+
# add pg_auth_mon extension
8182
RUN git clone https://github.com/RafiaSabih/pg_auth_mon.git && cd pg_auth_mon && USE_PGXS=1 make && USE_PGXS=1 make install
8283

84+
# add set_user extension
85+
RUN git clone https://github.com/pgaudit/set_user.git && cd set_user && make USE_PGXS=1 && make USE_PGXS=1 install
86+
8387
# Reduce images size.
8488
RUN rm -rf /tmp/* \
8589
&& apt-get purge -y --auto-remove gcc make wget unzip curl libc6-dev apt-transport-https git postgresql-server-dev-${PG_SERVER_VERSION} pgxnclient build-essential libevent-dev \

0 commit comments

Comments
 (0)