This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # see https://github.com/cmaessen/docker-php-sendmail for more information | |
| FROM php:fpm | |
| RUN apt-get update && apt-get install -q -y ssmtp mailutils && rm -rf /var/lib/apt/lists/* | |
| RUN docker-php-ext-install mysql mysqli | |
| RUN echo "hostname=localhost.localdomain" > /etc/ssmtp/ssmtp.conf | |
| RUN echo "[email protected]" >> /etc/ssmtp/ssmtp.conf |