This image add ssmtp service to official Docker Php7 Apache image.
With ssmtp* you can use buildin mail Php function to send mails via smtp server.
This image enable also Apache Rewrite mod, RewriteEngine can be used in .htaccess.
version: '3'
services:
apache:
image: harobed/php-ssmtp:7-apache
environment:
- SSMTP_HOST=postfix
- SSMTP_PORT=25
ports:
- 80