mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-20 06:26:57 +00:00
Merge pull request #202 from nextcloud/enh/185/migrate-postgres-to-alpine
migrate postgres container to alpine
This commit is contained in:
commit
0748ee9fbf
1 changed files with 9 additions and 8 deletions
|
|
@ -1,13 +1,14 @@
|
||||||
# From https://github.com/docker-library/postgres/blob/master/13/bullseye/Dockerfile
|
# From https://github.com/docker-library/postgres/blob/master/13/alpine/Dockerfile
|
||||||
FROM postgres:13-bullseye
|
FROM postgres:13-alpine
|
||||||
|
|
||||||
|
RUN apk add --update --no-cache bash openssl shadow
|
||||||
|
|
||||||
|
# We need to use the same gid and uid as on old installations
|
||||||
RUN set -ex; \
|
RUN set -ex; \
|
||||||
\
|
deluser postgres; \
|
||||||
apt-get update; \
|
groupmod -g 9999 ping; \
|
||||||
apt-get install -y --no-install-recommends \
|
addgroup -g 999 -S postgres; \
|
||||||
openssl \
|
adduser -u 999 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres
|
||||||
; \
|
|
||||||
rm -rf /var/lib/apt/lists/*
|
|
||||||
|
|
||||||
COPY start.sh /usr/bin/
|
COPY start.sh /usr/bin/
|
||||||
RUN chmod +x /usr/bin/start.sh
|
RUN chmod +x /usr/bin/start.sh
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue