devilbox/compose/docker-compose.override.yml-mailhog
2019-02-23 12:02:13 +01:00

21 lines
539 B
YAML

# vim: set ft=yaml:
version: '2.1'
services:
# -----------------------------------------------------------------------------------------------
# MailHog
# -----------------------------------------------------------------------------------------------
mailhog:
image: mailhog/mailhog:${MAILHOG_SERVER:-latest}
hostname: mailhog
ports:
- "${LOCAL_LISTEN_ADDR}${HOST_PORT_MAILHOG:-8025}:8025"
networks:
app_net:
ipv4_address: 172.16.238.201
depends_on:
- bind
- php
- httpd