mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-20 06:26:57 +00:00
adjust postgres conf to not log checkpoints
Signed-off-by: Simon L <szaimen@e.mail.de>
This commit is contained in:
parent
56e3f27d6c
commit
7e03bb4a7f
1 changed files with 11 additions and 2 deletions
|
|
@ -6,7 +6,11 @@ COPY --chmod=775 healthcheck.sh /healthcheck.sh
|
||||||
COPY --chmod=775 init-user-db.sh /docker-entrypoint-initdb.d/init-user-db.sh
|
COPY --chmod=775 init-user-db.sh /docker-entrypoint-initdb.d/init-user-db.sh
|
||||||
|
|
||||||
RUN set -ex; \
|
RUN set -ex; \
|
||||||
apk add --no-cache bash openssl shadow grep; \
|
apk add --no-cache \
|
||||||
|
bash \
|
||||||
|
openssl \
|
||||||
|
shadow \
|
||||||
|
grep; \
|
||||||
\
|
\
|
||||||
# We need to use the same gid and uid as on old installations
|
# We need to use the same gid and uid as on old installations
|
||||||
deluser postgres; \
|
deluser postgres; \
|
||||||
|
|
@ -23,8 +27,13 @@ RUN set -ex; \
|
||||||
mkdir /mnt/data; \
|
mkdir /mnt/data; \
|
||||||
chown postgres:postgres /mnt/data; \
|
chown postgres:postgres /mnt/data; \
|
||||||
\
|
\
|
||||||
|
# Modify conf
|
||||||
|
grep -q "#log_checkpoints" /var/lib/postgresql/data/postgresql.conf; \
|
||||||
|
sed -i 's|#log_checkpoints.*|log_checkpoints = off|' /var/lib/postgresql/data/postgresql.conf; \
|
||||||
|
\
|
||||||
# Give root a random password
|
# Give root a random password
|
||||||
echo "root:$(openssl rand -base64 12)" | chpasswd
|
echo "root:$(openssl rand -base64 12)" | chpasswd; \
|
||||||
|
apk --no-cache del openssl;
|
||||||
|
|
||||||
VOLUME /mnt/data
|
VOLUME /mnt/data
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue