-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
95 lines (95 loc) · 2.56 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
version: "3.9"
services:
doojoe-shared-base:
build:
context: ./
dockerfile: ./build/local-shared-base/Dockerfile
image: local:doojoe-shared-base
identity-doojoe-com:
restart: unless-stopped
logging:
driver: "json-file"
options:
max-file: 5
max-size: 10m
build:
context: ./
dockerfile: ./src/++Identity/DooJoe.Identity/src/DooJoe.Identity.STS.Identity/Dockerfile
ports:
- "44310:44310"
depends_on:
- doojoe-shared-base
environment:
- VIRTUAL_HOST=identity.doojoe.com:44310
- 'AdminConfiguration__IdentityAdminBaseUrl=https://identity.doojoe.com'
- 'AdvancedConfiguration__IssuerUri=https://identity.doojoe.com'
- DockerConfiguration__UpdateCaCertificate=true
- ASPNETCORE_ENVIRONMENT=Development
account-api-doojoe-com:
restart: unless-stopped
logging:
driver: "json-file"
options:
max-file: 5
max-size: 10m
build:
context: ./
dockerfile: ./src/+Modules/Required/AccountModule/+API/+AccountModuleApi/src/Dockerfile
ports:
- "5240:5240"
depends_on:
- doojoe-shared-base
- identity-doojoe-com
dojosurveys-api-doojoe-com:
restart: unless-stopped
logging:
driver: "json-file"
options:
max-file: 5
max-size: 10m
build:
context: ./
dockerfile: ./src/+Modules/Lazy/DojoSurveyModule/+Api/+DojoSurveysApi/src/Dockerfile
ports:
- "5250:5250"
depends_on:
- doojoe-shared-base
- identity-doojoe-com
doojoe-blazor-client:
container_name: doojoe-blazor-client
restart: unless-stopped
logging:
driver: "json-file"
options:
max-file: 5
max-size: 10m
build:
context: ./
dockerfile: ./src/UI/Client/DooJoe.BlazorClient/src/Dockerfile
ports:
- "5020:5020"
- "5021:5021"
depends_on:
- doojoe-shared-base
- identity-doojoe-com
- account-api-doojoe-com
- dojosurveys-api-doojoe-com
doojoe-blazor-reverse-proxy:
restart: unless-stopped
logging:
driver: "json-file"
options:
max-file: 5
max-size: 10m
build:
context: ./
dockerfile: ./build/local-reverse-proxy/Dockerfile
ports:
- "80:80"
- "443:443"
depends_on:
- doojoe-shared-base
- identity-doojoe-com
- account-api-doojoe-com
- dojosurveys-api-doojoe-com
- doojoe-blazor-client