-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathdocker-compose.yml
57 lines (56 loc) · 1.32 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
version: '3.4'
services:
rabbit:
hostname: rabbit
image: rabbitmq:3.6.1-management
ports:
- "5672:5672"
- "15672:15672"
apigateway:
image: bezlla/apigateway
build:
context: .
dockerfile: RtuItLab.ApiGateway/Dockerfile
ports:
- 5000:5000
db:
image: "mcr.microsoft.com/mssql/server"
environment:
SA_PASSWORD: "YourPassword123"
ACCEPT_EULA: "Y"
identityapi:
image: bezlla/identityapi
build:
context: .
dockerfile: Services/Identity/Identity.API/Dockerfile
ports:
- 7001:7001
depends_on:
- db
purchasesapi:
image: bezlla/purchasesapi
build:
context: .
dockerfile: Services/Purchases/Purchases.API/Dockerfile
ports:
- 7002:7002
depends_on:
- db
shopsapi:
image: bezlla/shopsapi
build:
context: .
dockerfile: Services/Shops/Shops.API/Dockerfile
ports:
- 7003:7003
depends_on:
- db
factoriesapi:
image: bezlla/factories
build:
context: .
dockerfile: Services/Factories/Factories.API/Dockerfile
ports:
- 7004:7004
depends_on:
- db