7 lines
268 B
Docker
7 lines
268 B
Docker
FROM postgres:14
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends postgresql-14-wal2json \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
|
RUN echo "wal_level = logical" >> /usr/share/postgresql/postgresql.conf.sample
|