File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 1
- ARG PG_SERVER_VERSION=9.6
1
+ ARG PG_SERVER_VERSION=11
2
2
ARG CITUS=9.4
3
3
4
4
FROM postgres:${PG_SERVER_VERSION}
@@ -78,8 +78,12 @@ RUN git clone https://github.com/CyberDem0n/bg_mon.git && cd bg_mon && USE_PGXS=
78
78
# add pgextwlist extension
79
79
RUN apt-get install postgresql-${PG_SERVER_VERSION}-pgextwlist
80
80
81
+ # add pg_auth_mon extension
81
82
RUN git clone https://github.com/RafiaSabih/pg_auth_mon.git && cd pg_auth_mon && USE_PGXS=1 make && USE_PGXS=1 make install
82
83
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
+
83
87
# Reduce images size.
84
88
RUN rm -rf /tmp/* \
85
89
&& 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 \
You can’t perform that action at this time.
0 commit comments