mirror of
https://github.com/cytopia/devilbox.git
synced 2024-12-19 04:47:52 +00:00
22 lines
543 B
YAML
22 lines
543 B
YAML
# vim: set ft=yaml:
|
|
---
|
|
version: '2.3'
|
|
|
|
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
|