-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
61 lines (55 loc) · 2.08 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
services:
udap.authserver.devdays:
image: ghcr.io/joeshook/udapauthserverdevdays:latest
environment:
- ASPNETCORE_HTTPS_PORTS=8081
- UdapIdpBaseUrl=https://host.docker.internal:5102
- ASPNETCORE_Kestrel__Certificates__Default__Password=udap-test
- ASPNETCORE_Kestrel__Certificates__Default__Path=/home/app/.aspnet/https/udap-tutorial-dev-tls-cert.pfx
ports:
- "5102:8081"
volumes:
- ./CertificateStore:/home/app/.aspnet/https:ro
udap.certificates.server.devdays:
image: ghcr.io/joeshook/udapcertificatesserverdevdays:latest
environment:
- ASPNETCORE_HTTP_PORTS=8080
ports:
- "5034:8080"
udap.fhirserver.devdays:
image: ghcr.io/joeshook/udapfhirserverdevdays:latest
environment:
- ASPNETCORE_HTTP_PORTS=8080
- ASPNETCORE_HTTPS_PORTS=8081
- ASPNETCORE_Kestrel__Certificates__Default__Password=udap-test
- ASPNETCORE_Kestrel__Certificates__Default__Path=/home/app/.aspnet/https/udap-tutorial-dev-tls-cert.pfx
ports:
- "5017:8080"
- "7017:8081"
volumes:
- ./CertificateStore:/home/app/.aspnet/https:ro
udap.idp.server.devdays:
image: ghcr.io/joeshook/udapidpserverdevdays:latest
environment:
- ASPNETCORE_HTTPS_PORTS=8081
- UdapIdpBaseUrl=https://host.docker.internal:5202
- ASPNETCORE_Kestrel__Certificates__Default__Password=udap-test
- ASPNETCORE_Kestrel__Certificates__Default__Path=/home/app/.aspnet/https/udap-tutorial-dev-tls-cert.pfx
ports:
- "5202:8081"
volumes:
- ./CertificateStore:/home/app/.aspnet/https:ro
udaped:
image: ${DOCKER_REGISTRY-}udaped-tutorial
build:
context: .
dockerfile: Dockerfile.UdapEd
environment:
- ASPNETCORE_HTTPS_PORTS=8081
- ASPNETCORE_Kestrel__Certificates__Default__Password=udap-test
- ASPNETCORE_Kestrel__Certificates__Default__Path=/home/app/.aspnet/https/udap-tutorial-dev-tls-cert.pfx
ports:
- "7041:8081"
volumes:
- ./CertificateStore:/home/app/.aspnet/https:ro
- ./CertificateStore:/app/CertificateStore:ro