-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.dev.yml
More file actions
44 lines (38 loc) · 963 Bytes
/
docker-compose.dev.yml
File metadata and controls
44 lines (38 loc) · 963 Bytes
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
version: "3.9"
services:
microservice-order:
build:
context: microservices/order
target: development
volumes:
- ./microservices/order:/microservice
microservice-payment:
build:
context: microservices/payment
target: development
volumes:
- ./microservices/payment:/microservice
microservice-product:
build:
context: microservices/product
target: development
volumes:
- ./microservices/product:/microservice
microservice-ticket:
build:
context: microservices/ticket
target: development
volumes:
- ./microservices/ticket:/microservice
microservice-customer:
build:
context: microservices/customer
target: development
volumes:
- ./microservices/customer:/microservice
microservice-review:
build:
context: microservices/review
target: development
volumes:
- ./microservices/review:/microservice