authelia/internal/suites/example/compose/httpbin/docker-compose.yml

14 lines
395 B
YAML

---
services:
httpbin:
image: citizenstig/httpbin
networks:
- authelianet
labels:
- 'traefik.enable=true'
- 'traefik.http.routers.httpbin.rule=Host(`public.example.com`) && Path(`/headers`)'
- 'traefik.http.routers.httpbin.priority=1000'
- 'traefik.http.routers.httpbin.tls=true'
- 'traefik.http.routers.httpbin.middlewares=authelia@docker'
...