-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
90 lines (83 loc) · 2.12 KB
/
Copy pathdocker-compose.yml
File metadata and controls
90 lines (83 loc) · 2.12 KB
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
services:
web:
build: ./services/web
container_name: assettrack-web
ports:
- "4321:4321"
environment:
ASSETS_SVC_URL: http://assets-svc:8080
WORKFORCE_SVC_URL: http://workforce-svc:8080
REPORTING_SVC_URL: http://reporting-svc:8080
NOTIFICATIONS_SVC_URL: http://notifications-svc:8080
AUDIT_SVC_URL: http://audit-svc:8080
AUTH_SVC_URL: http://auth-svc:8080
DEV_TOKEN_MODE: "true"
depends_on:
- assets-svc
- workforce-svc
- reporting-svc
- auth-svc
assets-svc:
build: ./services/assets-svc
container_name: assettrack-assets-svc
ports:
- "5001:8080"
environment:
ASPNETCORE_URLS: http://+:8080
AUTH_JWKS_URL: http://auth-svc:8080/.well-known/jwks
volumes:
- assets_data:/data
workforce-svc:
build: ./services/workforce-svc
container_name: assettrack-workforce-svc
ports:
- "5002:8080"
environment:
SERVER_PORT: "8080"
AUDIT_SVC_URL: http://audit-svc:8080
NOTIFICATIONS_SVC_URL: http://notifications-svc:8080
AUTH_JWKS_URL: http://auth-svc:8080/.well-known/jwks
volumes:
- workforce_data:/data
reporting-svc:
build: ./services/reporting-svc
container_name: assettrack-reporting-svc
ports:
- "5003:8080"
environment:
ASSETS_SVC_URL: http://assets-svc:8080
WORKFORCE_SVC_URL: http://workforce-svc:8080
volumes:
- reporting_data:/data
notifications-svc:
build: ./services/notifications-svc
container_name: assettrack-notifications-svc
ports:
- "5004:8080"
volumes:
- notifications_data:/data
audit-svc:
build: ./services/audit-svc
container_name: assettrack-audit-svc
ports:
- "5005:8080"
environment:
SERVER_PORT: "8080"
volumes:
- audit_data:/data
auth-svc:
build: ./services/auth-svc
container_name: assettrack-auth-svc
ports:
- "5006:8080"
environment:
SERVER_PORT: "8080"
volumes:
- auth_data:/data
volumes:
assets_data:
workforce_data:
reporting_data:
notifications_data:
audit_data:
auth_data: