-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yaml
46 lines (46 loc) · 1.03 KB
/
docker-compose.yaml
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
version: '3.4'
services:
booking:
build:
context: ./services/booking_service
dockerfile: Dockerfile
image: python_cab_saga/booking_service
container_name: booking_service
env_file: .env
ports:
- '5001:5000'
expose:
- '5001'
assignment:
build:
context: ./services/assignment_service
dockerfile: Dockerfile
image: python_cab_saga/assignment_service
container_name: assignment_service
env_file: .env
ports:
- '5002:5000'
expose:
- '5002'
payment:
build:
context: ./services/payment_service
dockerfile: Dockerfile
image: python_cab_saga/payment_service
container_name: payment_service
env_file: .env
ports:
- '5003:5000'
expose:
- '5003'
notification:
build:
context: ./services/notification_service
dockerfile: Dockerfile
image: python_cab_saga/notification_service
container_name: notification_service
env_file: .env
ports:
- '5004:5000'
expose:
- '5004'