move VOLUME and delete shadow

Signed-off-by: Zoey <zoey@z0ey.de>
This commit is contained in:
Zoey 2023-05-11 14:13:56 +02:00 committed by GitHub
parent 1841733879
commit d100bf985e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,8 +5,6 @@ COPY --chmod=775 start.sh /usr/bin/start.sh
COPY --chmod=775 healthcheck.sh /usr/bin/healthcheck.sh
COPY --chmod=775 init-user-db.sh /docker-entrypoint-initdb.d/init-user-db.sh
VOLUME /mnt/data
RUN set -ex; \
apk add --no-cache bash openssl shadow grep mawk; \
\
@ -15,6 +13,7 @@ RUN set -ex; \
groupmod -g 9999 ping; \
addgroup -g 999 -S postgres; \
adduser -u 999 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; \
apk del --no-cache shadow; \
\
# Fix default permissions
chown -R postgres:postgres /var/lib/postgresql; \
@ -27,6 +26,8 @@ RUN set -ex; \
# Give root a random password
echo "root:$(openssl rand -base64 12)" | chpasswd
VOLUME /mnt/data
USER postgres
ENTRYPOINT ["start.sh"]