Skip to content

Instantly share code, notes, and snippets.

@eduwass
Last active December 31, 2023 00:31
Show Gist options
  • Star 31 You must be signed in to star a gist
  • Fork 6 You must be signed in to fork a gist
  • Save eduwass/039864b7dca85f06c3883b6fab0f7f2e to your computer and use it in GitHub Desktop.
Save eduwass/039864b7dca85f06c3883b6fab0f7f2e to your computer and use it in GitHub Desktop.
Mailhog + WordPress in docker-compose.yml
version: '3'
services:
db:
image: mysql:5.7
volumes:
- db_data:/var/lib/mysql
restart: always
environment:
MYSQL_ROOT_PASSWORD: somewordpress
MYSQL_DATABASE: wordpress
MYSQL_USER: wordpress
MYSQL_PASSWORD: wordpress
wordpress:
depends_on:
- db
image: wordpress:latest
ports:
- "8000:80"
restart: always
environment:
WORDPRESS_DB_HOST: db:3306
WORDPRESS_DB_USER: wordpress
WORDPRESS_DB_PASSWORD: wordpress
mailhog:
image: mailhog/mailhog
ports:
- 1025:1025 # smtp server
- 8025:8025 # web ui
volumes:
db_data:
<?php
add_action( 'phpmailer_init', 'setup' );
function setup( PHPMailer $phpmailer ) {
$phpmailer->Host = 'mailhog';
$phpmailer->Port = 1025;
$phpmailer->IsSMTP();
}
@awps
Copy link

awps commented Oct 19, 2020

FYI, the indentation is incorrect. Should be:

  mailhog:
    image: mailhog/mailhog
    ports: 
      - 1025:1025 # smtp server
      - 8025:8025 # web ui

@asterion
Copy link

asterion commented Dec 4, 2021

👍 Thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment