Skip to content

Instantly share code, notes, and snippets.

View itechpfs's full-sized avatar

Larry itechpfs

  • ITech-PFS
  • Baguio City
View GitHub Profile
@itechpfs
itechpfs / Dockerfile
Created June 15, 2018 21:54 — forked from michaelneu/Dockerfile
docker-compose configuration for PHP with NGINX and MySQL, including sendmail, MailDev and phpmyadmin
# 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