-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
56 lines (53 loc) · 1.09 KB
/
Copy pathdocker-compose.yml
File metadata and controls
56 lines (53 loc) · 1.09 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
version: "2.0"
services:
eureka-server:
container_name: eureka-server
build:
context: ./eureka-server
dockerfile: Dockerfile
ports:
- "8761:8761"
network_mode: "host"
config-server:
container_name: config-server
build:
context: ./config-server
dockerfile: Dockerfile
ports:
- "8888:8888"
network_mode: "host"
config-client:
container_name: config-client
build:
context: ./config-client
network_mode: "host"
ports:
- "8881:8881"
service-feign:
container_name: service-feign
build:
context: ./service-feign
network_mode: "host"
ports:
- "8765:8765"
service-hi:
container_name: service-hi
build:
context: ./service-hi
network_mode: "host"
ports:
- "8763:8763"
service-zuul:
container_name: service-zuul
build:
context: ./service-zuul
network_mode: "host"
ports:
- "8769:8769"
service-ribbon:
container_name: service-ribbon
build:
context: ./service-ribbon
network_mode: "host"
ports:
- "8764:8764"