mirror of
https://github.com/goauthentik/authentik.git
synced 2026-06-17 19:09:11 +03:00
4851179522
* enterprise/providers/ssf: more conformance fixes Signed-off-by: Jens Langhammer <jens@goauthentik.io> * include request when possible Signed-off-by: Jens Langhammer <jens@goauthentik.io> * remove null state Signed-off-by: Jens Langhammer <jens@goauthentik.io> * t Signed-off-by: Jens Langhammer <jens@goauthentik.io> * re-gen & format Signed-off-by: Jens Langhammer <jens@goauthentik.io> * remove None state Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix ci Signed-off-by: Jens Langhammer <jens@goauthentik.io> * revert a thing Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix tests Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix ssf conformance test Signed-off-by: Jens Langhammer <jens@goauthentik.io> * no subtest Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix network Signed-off-by: Jens Langhammer <jens@goauthentik.io> * add test for stream update Signed-off-by: Jens Langhammer <jens@goauthentik.io> --------- Signed-off-by: Jens Langhammer <jens@goauthentik.io>
30 lines
799 B
YAML
30 lines
799 B
YAML
services:
|
|
mongodb:
|
|
image: mongo:6.0.13
|
|
nginx:
|
|
image: ghcr.io/beryju/oidc-conformance-suite-nginx:v5.1.43
|
|
ports:
|
|
- "8443:8443"
|
|
- "8444:8444"
|
|
depends_on:
|
|
- server
|
|
server:
|
|
image: ghcr.io/beryju/oidc-conformance-suite-server:v5.1.43
|
|
ports:
|
|
- "9999:9999"
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
command: >
|
|
java
|
|
-Xdebug -Xrunjdwp:transport=dt_socket,address=*:9999,server=y,suspend=n
|
|
-jar /server/fapi-test-suite.jar
|
|
-Djdk.tls.maxHandshakeMessageSize=65536
|
|
--fintechlabs.base_url=https://localhost:8443
|
|
--fintechlabs.base_mtls_url=https://localhost:8444
|
|
--fintechlabs.devmode=true
|
|
--fintechlabs.startredir=true
|
|
links:
|
|
- mongodb:mongodb
|
|
depends_on:
|
|
- mongodb
|