-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
67 lines (67 loc) · 1.79 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
services:
# Docs: https://docs.duendesoftware.com
oidc-server-mock:
container_name: oidc-server-mock
image: xdevsoftware/oidc-server-mock:1
environment:
ASPNETCORE_ENVIRONMENT: Development
SERVER_OPTIONS_INLINE: |
{
"AccessTokenJwtType": "JWT",
"Discovery": {
"ShowKeySet": true
},
"Authentication": {
"CookieSameSiteMode": "Lax",
"CheckSessionCookieSameSiteMode": "Lax"
}
}
LOGIN_OPTIONS_INLINE: |
{
"AllowRememberLogin": false
}
LOGOUT_OPTIONS_INLINE: |
{
"AutomaticRedirectAfterSignOut": true
}
USERS_CONFIGURATION_PATH: /tmp/config/oidc-user-config.json
CLIENTS_CONFIGURATION_INLINE: |
[
{
"ClientId": "client-id",
"ClientSecrets": [
"client-secret"
],
"Description": "TestClient",
"AllowedGrantTypes": [
"authorization_code",
"refresh_token"
],
"RedirectUris": [
"*"
],
"AllowedScopes": [
"openid",
"profile",
"email",
"offline_access"
],
"AlwaysIncludeUserClaimsInIdToken": true,
"AllowOfflineAccess": true,
"RequirePkce": false
}
]
ASPNET_SERVICES_OPTIONS_INLINE: |
{
"ForwardedHeadersOptions": {
"ForwardedHeaders" : "All"
}
}
volumes:
- ./oidc-user-config.json:/tmp/config/oidc-user-config.json:ro
ports:
- '4011:8080'
deploy:
resources:
limits:
memory: 512m