mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-30 23:38:13 +02:00
- Discourse: fixed 'DISCOURSE_CONTAINERS_DIR' and 'DISCOURSE_APPLICATION_YML_DEST' - Nextcloud: improved plugin enable/configure tasks formatting - WordPress: unified OIDC, msmtp, and upload.ini variables and tasks - General: aligned spacing and switched to path_join for consistency
14 lines
447 B
Django/Jinja
14 lines
447 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 {{ WORDPRESS_CONFIG_UPLD_REL }} $PHP_INI_DIR/conf.d/ |