Added OIDC draft für wordpress

This commit is contained in:
2025-04-17 11:51:37 +02:00
parent 7d5d69c380
commit 7e24d9b1c3
18 changed files with 91 additions and 33 deletions

View File

@@ -1,12 +1,15 @@
FROM wordpress
# Update and installation of msmtp
# Install msmtp and update system
RUN apt-get update && \
apt-get install -y msmtp msmtp-mta && \
rm -rf /var/lib/apt/lists/*
# Copy the msmtp configuration into the container
COPY config/msmtprc.conf /etc/msmtprc
# Install WP CLI
RUN curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar && \
chmod +x wp-cli.phar && \
mv wp-cli.phar /usr/local/bin/wp
# Copy the PHP configuration for uploads (and mail settings)
# Copy msmtp configuration and PHP upload settings
COPY config/msmtprc.conf /etc/msmtprc
COPY upload.ini $PHP_INI_DIR/conf.d/