Reworked ssmtp integration, need to use fastcgi_param PHP_ADMIN_VALUE "sendmail_path=/usr/sbin/sendmail -i -t"; in nginx config, and hostname: for php container

This commit is contained in:
Deon George 2018-02-27 14:45:31 +11:00
parent 4e566fc087
commit e0426cc685

View File

@ -6,7 +6,7 @@ FROM wordpress:4.9.2-fpm
RUN apt-get update \
&& apt-get install -y openssh-server ssmtp \
&& useradd -c "Hosting Admin User" -u 1000 -g users -G www-data -d /var/www/html -M lamp \
&& sed -i -e 's/^mailhub=mail$/mailhub=smtp/' -e "s/${HOSTNAME}//" /etc/ssmtp/ssmtp.conf
&& sed -i -e 's/^mailhub=mail$/mailhub=smtp/' -e "s/^hostname=/#hostname=/" -e 's/#FromLineOverride=YES/FromLineOverride=YES/' /etc/ssmtp/ssmtp.conf
COPY sshd_config.patch /tmp
RUN (cd / && patch -p0 ) < /tmp/sshd_config.patch && rm /tmp/sshd_config.patch