2026-02-20 09:50:23 +01:00
|
|
|
FROM postgres:15
|
2026-02-18 10:24:06 +01:00
|
|
|
|
2026-02-20 09:50:23 +01:00
|
|
|
RUN apt-get update && \
|
|
|
|
|
apt-get install -y --no-install-recommends \
|
|
|
|
|
postgresql-$PG_MAJOR-repmgr \
|
|
|
|
|
&& \
|
|
|
|
|
rm -rf /var/lib/apt/lists/*
|
2026-02-18 10:24:06 +01:00
|
|
|
|
2026-02-19 11:18:57 +01:00
|
|
|
RUN touch /etc/repmgr.conf && chmod 666 /etc/repmgr.conf
|
|
|
|
|
|
2026-02-20 09:50:23 +01:00
|
|
|
COPY profile /var/lib/postgresql/.profile
|
2026-02-19 11:09:35 +01:00
|
|
|
COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/
|
|
|
|
|
|