2019-02-23 11:02:13 +00:00
|
|
|
# vim: set ft=yaml:
|
2019-12-31 16:37:32 +00:00
|
|
|
---
|
|
|
|
version: '2.3'
|
2018-08-12 11:20:17 +00:00
|
|
|
|
|
|
|
services:
|
2019-02-23 11:02:13 +00:00
|
|
|
|
|
|
|
# -----------------------------------------------------------------------------------------------
|
|
|
|
# MailHog
|
|
|
|
# -----------------------------------------------------------------------------------------------
|
2018-08-12 11:20:17 +00:00
|
|
|
mailhog:
|
2018-08-15 17:53:06 +00:00
|
|
|
image: mailhog/mailhog:${MAILHOG_SERVER:-latest}
|
2018-08-12 11:20:17 +00:00
|
|
|
hostname: mailhog
|
|
|
|
ports:
|
2018-08-15 17:53:06 +00:00
|
|
|
- "${LOCAL_LISTEN_ADDR}${HOST_PORT_MAILHOG:-8025}:8025"
|
2018-08-12 11:20:17 +00:00
|
|
|
networks:
|
|
|
|
app_net:
|
2018-08-19 10:27:42 +00:00
|
|
|
ipv4_address: 172.16.238.201
|
2018-08-12 11:20:17 +00:00
|
|
|
depends_on:
|
|
|
|
- bind
|
|
|
|
- php
|
|
|
|
- httpd
|