-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml.default
70 lines (70 loc) · 3.35 KB
/
docker-compose.yml.default
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
68
69
70
version: "3"
services:
db:
image: identityserverregistry.azurecr.io/idxdbmysql
ports:
- "3306:3306"
environment:
- MYSQL_ROOT_PASSWORD=Welkom1234!
ids:
image: ids-edf
ports:
- "5003:5003"
build:
context: .
dockerfile: Rsk.Samples.IdentityServer4.AdminUiIntegration/Dockerfile
volumes:
- C:\Users\Ben\AppData\Roaming\IDS:/keys
environment:
- DbProvider=MySql
- IdentityConnectionString=Server=db;Uid=docker;Pwd=Welkom1234!;Database=IdentityExpressDb;
- IdentityServerConnectionString=Server=db;Uid=docker;Pwd=Welkom1234!;Database=IdentityExpressDb;
- Certificate_Location=/keys/public_privatekey.pfx
- Certificate_Password=a
- smtp_host=smtp.gmail.com
- smtp_port=587
- smtp_username=
- smtp_password=
- Email_Host=
- Sender_Name="AdminUI"
- Public_Origin=http://ids:5003
ui:
image: identityserverregistry.azurecr.io/idxui:2.5.1
ports:
- "5000:5000"
environment:
- UiUrl=http://localhost:5000
- ApiUrl=http://localhost:5001
- AuthorityUrl=http://ids:5003
- AddUserPassword=true
- RequireHttpsMetadata=false
- PasswordResetEndpoint=http://ids:5003/account/PasswordResetHook
- ClientId=webhook
- ClientSecret=
- RegistrationConfirmationEndpoint=http://ids:5003/account/PasswordResetHook
api:
image: identityserverregistry.azurecr.io/idxapi:2.5.1
ports:
- "5001:5001"
depends_on:
- "db"
links:
- "db"
entrypoint: /app/MySqlStart.sh db
environment:
- DbProvider=MySql
- IdentityConnectionString=Server=db;Uid=docker;Pwd=Welkom1234!;Database=IdentityExpressDb;
- IdentityServerConnectionString=Server=db;Uid=docker;Pwd=Welkom1234!;Database=IdentityExpressDb;
- UiUrl=http://localhost:5000
- ClientUrl=http://localhost:5002
- AuthorityUrl=http://ids:5003
- RequireHttpsMetadata=false
- RunIdentityServerMigrations=true
- LoggingProvider=Docker
- LoggingMinimumLevel=Info
- LoggingOutputTemplate=[{Timestamp:dd-MM-yyyy HH:mm:ss} {Level}] {Message}{NewLine}{Exception}
- LicenseKey=eyJTb2xkRm9yIjowLjAsIktleVByZXNldCI6NSwiU2F2ZUtleSI6dHJ1ZSwiTGVnYWN5S2V5IjpmYWxzZSwiRW1haWwiOiJzYWxlc0Byb2Nrc29saWRrbm93bGVkZ2UuY29tIiwiYXV0aCI6IkhUVFA6Ly9JRFM6NTAwMyIsImNsaWVudHMiOjMsInVzZXJzIjoxMCwiZXhwIjoiMjAyNC0wMi0xNVQwMDowMDowMCIsImlhdCI6IjIwMTktMDEtMTVUMTQ6MTA6NDUuMDAwMDIzM1oiLCJvcmciOiJEb2NrZXIgRGVtbyIsImF1ZCI6MSwidHlwZSI6Mn0=.np85S2T/P4GWIkwItIAFkS7fod7fnaOf9kFk0jsWcBKwUeGx1+x+bK7Rz3YCu7JlJlnLzRsMT7pSiHAGNYtE2fa9MvQnCPW4kYOIZD/ONP05ySTGxSWF6b/G50MofAfoTDNCjtt+NM/SeHYM77NTt8juel2a4rEoG0TxA8KmvbUBNlF7ehA/Uox3tXGcHWKp/WWsBPQuwxNtRPkY1VG1O6RVnXfaZTjQloBgie/RLWKSU5wOIBwV2sVQB2arEskms0KjCYXTFsme+yfMtc3dhxwFN2RsK33gOg5Hf7L3CCwHkyO3iyxE/AZWe65iULm7kglMwE/UCTBskgYXC1xkD2AlwuJ3mJ8Nc1cEzTGEEJFYEF+U3xfjPVGbwCvXjeirUnpDK8o4MjbQ+IsPt+sJjEH9uJXWA+NenMpShw43YCqogY4s5LB7Jxwn+DwjKSmJwRW7PBxOMLk/EZUthVwg3zssgPEvWut2gXeWwDeMR4nat7wEYBWuBNEDNVlKqJEGRnS6uo7FYV5PHQmoUkiEIfPOslZK0ROBpjWaNXGuE3yXM2bNHU94lpGqVIqY0I/zqvpcEcaaP2aJLwS7Ly7XzS8GPdH6pFqWkdcVvlRnnEcJvnEF7ZPd05UKRLkagfZJd7sdez536ULq4uB8TsiCPu1SyPha5ls9mtW/7hOp8to=
- PasswordResetEndpoint=http://ids:5003/account/PasswordResetHook
- ClientId=webhook
- ClientSecret=
- RegistrationConfirmationEndpoint=http://ids:5003/account/PasswordResetHook