forked from OpenCodeFoundation/eSchool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
37 lines (30 loc) · 889 Bytes
/
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
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
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