devilbox/compose/docker-compose.override.yml-mailhog

22 lines
543 B
Plaintext
Raw Normal View History

2019-02-23 11:02:13 +00:00
# vim: set ft=yaml:
---
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