File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 1+ FROM docker.io/bitnami/postgresql:12
2+
3+ # Install wal2json
4+ USER root
5+ RUN install_packages curl ca-certificates gnupg && \
6+ curl https://www.postgresql.org/media/keys/ACCC4CF8.asc | gpg --dearmor | tee /etc/apt/trusted.gpg.d/apt.postgresql.org.gpg >/dev/null && \
7+ echo "deb http://apt.postgresql.org/pub/repos/apt buster-pgdg main" > /etc/apt/sources.list.d/pgdg.list && \
8+ install_packages postgresql-12-wal2json && \
9+ cp /usr/lib/postgresql/12/lib/wal2json.so /opt/bitnami/postgresql/lib/wal2json.so
10+ USER 1001
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ version: "3.3"
22
33services :
44 db_primary :
5- image : " docker.io/bitnami/postgresql:12 "
5+ build : .
66 container_name : " primary"
77 ports :
88 - " 5432:5432"
You can’t perform that action at this time.
0 commit comments