-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
156 lines (156 loc) · 4.75 KB
/
Copy pathdocker-compose.yml
File metadata and controls
156 lines (156 loc) · 4.75 KB
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
version: '2.0'
services:
config-service:
container_name: config-service
build:
context: .
dockerfile: Dockerfile-configservice
image: config-service:latest
expose:
- 8888
ports:
- 8888:8888
networks:
- spring-cloud-network
logging:
driver: json-file
discovery-service:
container_name: discovery-service
build:
context: .
dockerfile: Dockerfile-DiscoveryService
image: discovery-service:latest
entrypoint: /opt/bin/discoveryservice_wait-for-it.sh
environment:
SPRING_APPLICATION_JSON: '{"spring":{"cloud":{"config":{"uri":"http://config-service:8888"}}}}'
EUREKA_INSTANCE_PREFER_IP_ADDRESS: "false"
expose:
- 8761
ports:
- 8761:8761
networks:
- spring-cloud-network
links:
- config-service:config-service
depends_on:
- config-service
logging:
driver: json-file
proxy-service:
container_name: proxy-service
build:
context: .
dockerfile: Dockerfile-ProxyService
image: proxy-service:latest
entrypoint: /opt/bin/proxyservice_wait-for-it.sh
environment:
SPRING_APPLICATION_JSON: '{"spring":{"cloud":{"config":{"uri":"http://config-service:8888"}}}}'
expose:
- 9999
ports:
- 9999:9999
networks:
- spring-cloud-network
links:
- config-service:config-service
- discovery-service:discovery-service
depends_on:
- config-service
- discovery-service
logging:
driver: json-file
product-service-0:
container_name: product-service-0
build:
context: .
dockerfile: Dockerfile-ProductService
image: product-service:latest
entrypoint: /opt/bin/productservice_wait-for-it.sh
environment:
SPRING_APPLICATION_JSON: '{"spring":{"cloud":{"config":{"uri":"http://config-service:8888"}}}}'
expose:
- 8080
ports:
- 8080:8080
networks:
- spring-cloud-network
links:
- config-service:config-service
- discovery-service:discovery-service
depends_on:
- config-service
- discovery-service
logging:
driver: json-file
product-service-1:
container_name: product-service-1
build:
context: .
dockerfile: Dockerfile-ProductService
image: product-service:latest
entrypoint: /opt/bin/productservice_wait-for-it.sh
environment:
SPRING_APPLICATION_JSON: '{"spring":{"cloud":{"config":{"uri":"http://config-service:8888"}}}}'
expose:
- 8080
ports:
- 8081:8080
networks:
- spring-cloud-network
links:
- config-service:config-service
- discovery-service:discovery-service
depends_on:
- config-service
- discovery-service
logging:
driver: json-file
product-service-2:
container_name: product-service-2
build:
context: .
dockerfile: Dockerfile-ProductService
image: product-service:latest
entrypoint: /opt/bin/productservice_wait-for-it.sh
environment:
SPRING_APPLICATION_JSON: '{"spring":{"cloud":{"config":{"uri":"http://config-service:8888"}}}}'
expose:
- 8080
ports:
- 8082:8080
networks:
- spring-cloud-network
links:
- config-service:config-service
- discovery-service:discovery-service
depends_on:
- config-service
- discovery-service
logging:
driver: json-file
product-service-3:
container_name: product-service-3
build:
context: .
dockerfile: Dockerfile-ProductService
image: product-service:latest
entrypoint: /opt/bin/productservice_wait-for-it.sh
environment:
SPRING_APPLICATION_JSON: '{"spring":{"cloud":{"config":{"uri":"http://config-service:8888"}}}}'
expose:
- 8080
ports:
- 8083:8080
networks:
- spring-cloud-network
links:
- config-service:config-service
- discovery-service:discovery-service
depends_on:
- config-service
- discovery-service
logging:
driver: json-file
networks:
spring-cloud-network:
driver: bridge