forked from zhangxd1989/spring-boot-cloud
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
35 lines (35 loc) · 724 Bytes
/
docker-compose.yml
File metadata and controls
35 lines (35 loc) · 724 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
version: '2'
services:
rabbitmq:
image: rabbitmq:3-management
restart: always
ports:
- 15673:15672
registry:
image: spring-boot-cloud/registry
ports:
- "8761:8761"
config:
image: spring-boot-cloud/config
ports:
- "8888:8888"
monitor:
image: spring-boot-cloud/monitor
ports:
- "8040:8040"
zipkin:
image: spring-boot-cloud/zipkin
ports:
- "9411:9411"
gateway:
image: spring-boot-cloud/gateway
ports:
- "8060:8060"
auth-service:
image: spring-boot-cloud/auth-service
ports:
- "5000:5000"
svca-service:
image: spring-boot-cloud/svca-service
svcb-service:
image: spring-boot-cloud/svcb-service