Files
postgresrepmgr/Dockerfile
Bernhard Radermacher fec29d485b build for debs
2026-02-20 09:50:23 +01:00

14 lines
347 B
Docker

FROM postgres:15
RUN apt-get update && \
apt-get install -y --no-install-recommends \
postgresql-$PG_MAJOR-repmgr \
&& \
rm -rf /var/lib/apt/lists/*
RUN touch /etc/repmgr.conf && chmod 666 /etc/repmgr.conf
COPY profile /var/lib/postgresql/.profile
COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/