-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
109 lines (109 loc) · 1.83 KB
/
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
version: '2'
services:
frontend:
image: "jabley/frontend-amd64:1.0.0"
ports:
- 8080:8080
env_file:
.env
links:
- basket
- content
- customer
- identity
- navigation
- price
- product
- search
- shipping
- order
basket:
image: "jabley/backend-amd64:1.0.0"
ports:
- 8081:8080
env_file:
.env
environment:
NAME: basket
PORT: 8080
content:
image: "jabley/backend-amd64:1.0.0"
ports:
- 8082:8080
env_file:
.env
environment:
NAME: content
PORT: 8080
customer:
image: "jabley/backend-amd64:1.0.0"
ports:
- 8083:8080
env_file:
.env
environment:
NAME: customer
PORT: 8080
identity:
image: "jabley/backend-amd64:1.0.0"
ports:
- 8084:8080
env_file:
.env
environment:
NAME: identity
PORT: 8080
navigation:
image: "jabley/backend-amd64:1.0.0"
ports:
- 8085:8080
env_file:
.env
environment:
NAME: navigation
PORT: 8080
price:
image: "jabley/backend-amd64:1.0.0"
ports:
- 8086:8080
env_file:
.env
environment:
NAME: price
PORT: 8080
product:
image: "jabley/backend-amd64:1.0.0"
ports:
- 8087:8080
env_file:
.env
environment:
NAME: product
PORT: 8080
search:
image: "jabley/backend-amd64:1.0.0"
ports:
- 8088:8080
env_file:
.env
environment:
NAME: search
PORT: 8080
shipping:
image: "jabley/backend-amd64:1.0.0"
ports:
- 8089:8080
env_file:
.env
environment:
NAME: shipping
PORT: 8080
order:
image: "jabley/backend-amd64:1.0.0"
ports:
- 8090:8080
env_file:
.env
environment:
NAME: order
PORT: 8080