Michael Hoennig
e1fda412ae
Co-authored-by: Michael Hoennig <michael@hoennig.de> Reviewed-on: #80 Reviewed-by: Marc Sandlus <marc.sandlus@hostsharing.net>
11 lines
265 B
Docker
11 lines
265 B
Docker
# build using:
|
|
# docker build -t postgres-with-contrib:15.5-bookworm .
|
|
|
|
FROM postgres:15.5-bookworm
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y postgresql-contrib && \
|
|
apt-get clean
|
|
|
|
COPY etc/postgresql-log-slow-queries.conf /etc/postgresql/postgresql.conf
|