mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-30 07:18:09 +02:00
- Removed COPY of msmtp configuration from Dockerfile to avoid baking secrets/config into the image - Added volume mount for host-side msmtp config ({{ WORDPRESS_HOST_MSMTP_CONF }}) in docker-compose.yml - Keeps PHP upload.ini handling inside the image, but externalizes sensitive mail configuration - Increases flexibility and avoids rebuilds when msmtp config changes Ref: https://chatgpt.com/share/68af3c51-0544-800f-b76f-b2660c43addb
14 lines
426 B
Django/Jinja
14 lines
426 B
Django/Jinja
FROM {{ WORDPRESS_IMAGE }}:{{ WORDPRESS_VERSION }}
|
|
|
|
# Install msmtp and update system
|
|
RUN apt-get update && \
|
|
apt-get install -y msmtp msmtp-mta && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
# 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 PHP upload settings
|
|
COPY upload.ini $PHP_INI_DIR/conf.d/ |