c2ddf90f8c
Co-authored-by: Michael Hoennig <michael@hoennig.de> Reviewed-on: http://dev.hostsharing.net/hostsharing/hs.hsadmin.ng/pulls/222 Reviewed-by: Stefan Begerad <stefan.begerad@hostsharing.net>
11 lines
261 B
Docker
11 lines
261 B
Docker
# build using:
|
|
# docker build -t postgres-with-contrib:17.7-trixie .
|
|
|
|
FROM postgres:17.7-trixie
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y postgresql-contrib && \
|
|
apt-get clean
|
|
|
|
COPY etc/postgresql-log-slow-queries.conf /etc/postgresql/postgresql.conf
|