-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
53 lines (46 loc) · 972 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
version: '3.1'
services:
orchestrator:
build:
context: ./orchestrator/
container_name: orchestrator
ports:
- 8080:8080
services-monitor:
build:
context: ./service-supervision-app
container_name: services-monitor
ports:
- 8090:80
hotel-booking:
build:
context: ./bookingservice/
container_name: hotel-booking
environment:
APP_STOCK: 1000
ports:
- 8091:8090
flight-booking:
build:
context: ./bookingservice/
container_name: flight-booking
environment:
APP_STOCK: 200
ports:
- 8092:8090
taxi-booking:
build:
context: ./bookingservice/
container_name: taxi-booking
environment:
APP_STOCK: 80
ports:
- 8093:8090
meetingroom-booking:
build:
context: ./bookingservice/
container_name: meetingroom-booking
environment:
APP_STOCK: 60
ports:
- 8094:8090