mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
91c0c81818
* refactor(suites): stop integration tests on first failure * refactor(suites): remove additional nginx instance * refactor(suites): log relevant containers * refactor(suites): add traefik2 logs to stdout * refactor(suites): explicitly enable traefik for tests * refactor(suites): remove redis restart and duplicate pathprefix tests * ci(buildkite): allow manual retry on integration tests
19 lines
494 B
YAML
19 lines
494 B
YAML
---
|
|
version: '3'
|
|
services:
|
|
smtp:
|
|
image: schickling/mailcatcher
|
|
ports:
|
|
- '1025:1025'
|
|
labels:
|
|
- 'traefik.frontend.rule=Host:mail.example.com'
|
|
- 'traefik.port=1080'
|
|
- 'traefik.enable=true'
|
|
- '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'
|
|
networks:
|
|
- authelianet
|
|
...
|