-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
50 lines (50 loc) · 1013 Bytes
/
docker-compose.yml
File metadata and controls
50 lines (50 loc) · 1013 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
45
46
47
48
49
50
version: '3'
services:
cloud-gateway:
container_name: cloud-gateway
build:
context: cloud-gateway
dockerfile: Dockerfile
image: "cloud-gateway"
ports:
- 8080
order-service:
container_name: order-service
build:
context: order-service
dockerfile: Dockerfile
image: "order-service"
ports:
- 8081
depends_on:
- cloud-gateway
payment-service:
container_name: payment-service
build:
context: payment-service
dockerfile: Dockerfile
image: "payment-service"
ports:
- 8082
depends_on:
- order-service
product-service:
container_name: product-service
build:
context: product-service
dockerfile: Dockerfile
image: "product-service"
ports:
- 8083
depends_on:
- payment-service
service-registry:
container_name: service-registry
build:
context: service-registry
dockerfile: Dockerfile
image: "service-registry"
ports:
- 8761
depends_on:
- product-service