2021-04-10 20:51:00 +00:00
|
|
|
---
|
2019-11-02 14:32:58 +00:00
|
|
|
version: '3'
|
2017-09-24 12:49:03 +00:00
|
|
|
services:
|
|
|
|
smtp:
|
|
|
|
image: schickling/mailcatcher
|
|
|
|
ports:
|
2020-01-19 10:06:37 +00:00
|
|
|
- '1025:1025'
|
2019-04-10 19:27:18 +00:00
|
|
|
labels:
|
2020-01-19 10:06:37 +00:00
|
|
|
- 'traefik.frontend.rule=Host:mail.example.com'
|
|
|
|
- 'traefik.port=1080'
|
|
|
|
- 'traefik.http.routers.mail.rule=Host(`mail.example.com`)'
|
|
|
|
- 'traefik.http.routers.mail.entrypoints=https'
|
|
|
|
- 'traefik.http.routers.mail.tls=true'
|
|
|
|
- 'traefik.http.services.mail.loadbalancer.server.port=1080'
|
2017-09-24 12:49:03 +00:00
|
|
|
networks:
|
2021-04-10 20:51:00 +00:00
|
|
|
- authelianet
|
|
|
|
...
|