forked from fuhoujun/e
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yaml
66 lines (60 loc) · 1.21 KB
/
docker-compose.yaml
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
db:
image: com.loy/db:latest
ports:
- 9092:9092
discovery:
image: com.loy/discovery:latest
ports:
- 8761:8761
upm:
image: com.loy/upm:latest
ports:
- 18080:18080
links:
- discovery:discovery
- db:db
- oauth:oauth
oauth:
image: com.loy/oauth2:latest
ports:
- 9999:9999
environment:
- e.conf.loginSuccessUrl=http://192.168.88.128:8080/
links:
- discovery:discovery
- db:db
log:
image: com.loy/log:latest
ports:
- 28080:28080
links:
- oauth:oauth
- discovery:discovery
- db:db
demo:
image: com.loy/demo:latest
ports:
- 38080:38080
links:
- oauth:oauth
- discovery:discovery
- db:db
ui:
image: com.loy/ui:latest
ports:
- 8888:8888
gateway:
image: com.loy/gateway:latest
ports:
- 8080:8080
- 8000:8000
environment:
- e.conf.authServer=http://192.168.88.128:9999/uaa
- zuul.debug.request=true
links:
- discovery:discovery
- ui:ui
- upm:upm
- oauth:oauth
- log:log
- demo:demo