Skip to content

Commit

Permalink
feat(postgresql): change config dropin folder
Browse files Browse the repository at this point in the history
  • Loading branch information
f-bn committed Apr 21, 2024
1 parent 43636d3 commit a4f17e9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion postgresql/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ARG PG_RELEASE=16.2

FROM docker.io/postgres:${PG_RELEASE}

RUN mkdir -p /etc/postgresql/postgresql.conf.d ;
RUN mkdir -p /etc/postgresql/config.d ;

RUN set -ex ; \
export DEBIAN_FRONTEND=noninteractive ; \
Expand Down
2 changes: 1 addition & 1 deletion postgresql/postgresql.default.conf
Original file line number Diff line number Diff line change
Expand Up @@ -183,4 +183,4 @@ pg_prewarm.autoprewarm_interval = 300s
#------------------------------------------------------------------------------
# EXTRA CONFIGURATIONS
#------------------------------------------------------------------------------
include_dir = '/etc/postgresql/postgresql.conf.d'
include_dir = '/etc/postgresql/config.d'

0 comments on commit a4f17e9

Please sign in to comment.