authelia/internal/suites/example/compose/oidc-client/docker-compose.yml
Amir Zarrinkafsh 91c0c81818
refactor(suites): stop integration tests on first failure (#3270)
* 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
2022-05-02 14:50:37 +10:00

22 lines
579 B
YAML

---
version: '3'
services:
oidc-client:
image: ghcr.io/authelia/oidc-tester-app:master-01ff268
command: /entrypoint.sh
depends_on:
- authelia-backend
volumes:
- ./example/compose/oidc-client/entrypoint.sh:/entrypoint.sh
expose:
- 8080
labels:
- 'traefik.enable=true'
- '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
...