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:
parent
4e566fc087
commit
e0426cc685
@ -6,7 +6,7 @@ FROM wordpress:4.9.2-fpm
|
|||||||
RUN apt-get update \
|
RUN apt-get update \
|
||||||
&& apt-get install -y openssh-server ssmtp \
|
&& 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 \
|
&& 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
|
COPY sshd_config.patch /tmp
|
||||||
RUN (cd / && patch -p0 ) < /tmp/sshd_config.patch && rm /tmp/sshd_config.patch
|
RUN (cd / && patch -p0 ) < /tmp/sshd_config.patch && rm /tmp/sshd_config.patch
|
||||||
|
Loading…
Reference in New Issue
Block a user