feat: add PostgreSQL/MongoDB Images and fix multiarch (#40)

add PostgreSQL/MongoDB Images and fixes multi-arch builds for MariaDB, Redis.
This commit is contained in:
Torsten Widmann
2022-01-25 16:08:35 +01:00
committed by GitHub
parent 68ef32ee2a
commit c263e42dac
20 changed files with 274 additions and 7 deletions

16
postgres/9/Dockerfile Normal file
View File

@@ -0,0 +1,16 @@
# ----------------------------------
# Environment: Postgres DB
# ----------------------------------
FROM --platform=$TARGETOS/$TARGETARCH postgres:9-alpine
LABEL author="Parker" maintainer="parker@pterodactyl.io"
# UID 999 is the default pterodactyl user
RUN adduser -D -h /home/container container
USER container
ENV HOME /home/container
WORKDIR /home/container
COPY ./entrypoint.sh /entrypoint.sh
CMD ["/bin/bash", "/entrypoint.sh"]