This repository has been archived by the owner on Apr 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathdocker-compose.yml
69 lines (58 loc) · 1.8 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
version: "3.5"
services:
seq:
image: datalust/seq:latest
sql.data:
image: mcr.microsoft.com/mssql/server:2019-latest
enrolling.api:
image: ${REGISTRY:-eschool}/enrolling.api:${TAG:-latest}
build:
context: .
dockerfile: src/Services/Enrolling/Enrolling.API/Dockerfile
depends_on:
- sql.data
certificateprocessing.api:
image: ${REGISTRY:-eschool}/certificateprocessing.api:${TAG:-latest}
build:
context: .
dockerfile: src/Services/CertificateProcessing/CertificateProcessing.API/Dockerfile
depends_on:
- sql.data
exammanagement.api:
image: ${REGISTRY:-eschool}/exammanagement.api:${TAG:-latest}
build:
context: .
dockerfile: src/Services/ExamManagement/ExamManagement.API/Dockerfile
depends_on:
- sql.data
librarymanagement.api:
image: ${REGISTRY:-eschool}/librarymanagement.api:${TAG:-latest}
build:
context: .
dockerfile: src/Services/LibraryManagement/LibraryManagement.API/Dockerfile
depends_on:
- sql.data
resultprocessing.api:
image: ${REGISTRY:-eschool}/resultprocessing.api:${TAG:-latest}
build:
context: .
dockerfile: src/Services/ResultProcessing/ResultProcessing.API/Dockerfile
depends_on:
- sql.data
webstatus:
image: ${REGISTRY:-eschool}/webstatus:${TAG:-latest}
build:
context: .
dockerfile: src/Web/WebStatus/Dockerfile
eschool.graphql:
image: ${REGISTRY:-eschool}/eschool.graphql:${TAG:-latest}
build:
context: .
dockerfile: src/ApiGateways/eSchool.GraphQL/Dockerfile
frontend.blazor:
image: ${REGISTRY:-eschool}/frontend.blazor:${TAG:-latest}
build:
context: .
dockerfile: src/Web/Frontend.Blazor/Frontend.Blazor.Server/Dockerfile
jaeger:
image: jaegertracing/all-in-one