-
Notifications
You must be signed in to change notification settings - Fork 0
/
compose-frontend.yml
57 lines (54 loc) · 1.07 KB
/
compose-frontend.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'
services:
coffee-shop-web:
build:
context: .
dockerfile: CoffeeShopWebDockerfile
ports:
- "5010:80"
coffee-shop-api:
build:
context: .
dockerfile: CoffeeShopApiDockerfile
ports:
- "5000:80"
coffee-shop-coordinator:
build:
context: .
dockerfile: CoffeeShopCoordinatorDockerfile
coffee-shop-saga:
build:
context: .
dockerfile: CoffeeShopSagaDockerfile
barista-web:
build:
context: .
dockerfile: BaristaWebDockerfile
ports:
- "5011:80"
barista-coordinator:
build:
context: .
dockerfile: BaristaCoordinatorDockerfile
barista-api:
build:
context: .
dockerfile: BaristaApiDockerfile
ports:
- "5001:80"
bakery-web:
build:
context: .
dockerfile: BakeryWebDockerfile
ports:
- "5012:80"
bakery-coordinator:
build:
context: .
dockerfile: BakeryCoordinatorDockerfile
bakery-api:
build:
context: .
dockerfile: BakeryApiDockerfile
ports:
- "5002:80"