mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
0116506330
This adds the amr claim which stores methods used to authenticate with Authelia by the users session.
21 lines
549 B
YAML
21 lines
549 B
YAML
---
|
|
version: '3'
|
|
services:
|
|
oidc-client:
|
|
image: ghcr.io/authelia/oidc-tester-app:master-89622a8
|
|
command: /entrypoint.sh
|
|
depends_on:
|
|
- authelia-backend
|
|
volumes:
|
|
- ./example/compose/oidc-client/entrypoint.sh:/entrypoint.sh
|
|
expose:
|
|
- 8080
|
|
labels:
|
|
- 'traefik.http.routers.oidc.rule=Host(`oidc.example.com`)'
|
|
- 'traefik.http.routers.oidc.priority=150'
|
|
- 'traefik.http.routers.oidc.tls=true'
|
|
- 'traefik.http.routers.oidc.middlewares=authelia@docker'
|
|
networks:
|
|
- authelianet
|
|
...
|