-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
85 lines (75 loc) · 1.55 KB
/
docker-compose.yml
File metadata and controls
85 lines (75 loc) · 1.55 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
services:
gateway:
container_name: gateway
build: ./GatewayAPI
ports:
- "7111:80"
mssql-db:
image: mcr.microsoft.com/mssql/server:2019-latest
container_name: mssql-db
ports:
- "1433:1433"
environment:
- ACCEPT_EULA=Y
- MSSQL_SA_PASSWORD=Adminxyz22
rabbitmq:
image: rabbitmq
container_name: rabbitmq
ports:
- 5672:5672
- 15672:15672
azurite-db:
image: mcr.microsoft.com/azure-storage/azurite
container_name: azurite-db
ports:
- 10000:10000
- 10001:10001
- 10002:10002
services-api:
build: ./ServicesService
container_name: services-api
ports:
- "5100:80"
depends_on:
- "mssql-db"
- "rabbitmq"
appoitments-api:
build: ./AppointmentsService
container_name: appoitments-api
ports:
- "5292:80"
depends_on:
- "mssql-db"
- "rabbitmq"
auth-api:
build: ./AuthorizationService
container_name: auth-api
ports:
- "5010:80"
depends_on:
- "mssql-db"
- "rabbitmq"
profiles-api:
build: ./ProfilesService
container_name: profiles-api
ports:
- "5056:80"
depends_on:
- "mssql-db"
- "rabbitmq"
offices-api:
build: ./OfficesService
container_name: offices-api
ports:
- "5261:80"
depends_on:
- "mssql-db"
- "rabbitmq"
storage-api:
build: ./DocumentsService
container_name: storage-api
ports:
- "5097:80"
depends_on:
- "azurite-db"
- "rabbitmq"