mirror of
https://github.com/Mailu/Mailu.git
synced 2024-12-14 10:53:30 +02:00
29 lines
632 B
YAML
29 lines
632 B
YAML
version: '3'
|
|
|
|
|
|
services:
|
|
docs_master:
|
|
image: mailu/docs:master
|
|
networks:
|
|
- web
|
|
labels:
|
|
- traefik.enable=true
|
|
- traefik.port=80
|
|
- traefik.main.frontend.rule=Host:${ADDRESS};PathPrefix:/master/
|
|
|
|
docs_15:
|
|
image: mailu/docs:1.5
|
|
networks:
|
|
- web
|
|
labels:
|
|
- traefik.enable=true
|
|
- traefik.port=80
|
|
- traefik.root.frontend.redirect.regex=.*
|
|
- traefik.root.frontend.redirect.replacement=/1.5/
|
|
- traefik.root.frontend.rule=Host:${ADDRESS};PathPrefix:/
|
|
- traefik.main.frontend.rule=Host:${ADDRESS};PathPrefix:/1.5/
|
|
|
|
networks:
|
|
web:
|
|
external: true
|