Files
postgresrepmgr/Dockerfile
Bernhard Radermacher 5824741ef4 add option for witness
2026-02-20 11:06:41 +01:00

13 lines
364 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/*
COPY --chmod=666 repmgr.conf /etc/repmgr.conf
COPY --chmod=644 --chown=postgres profile /var/lib/postgresql/.profile
COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/