-
Notifications
You must be signed in to change notification settings - Fork 16
/
docker-compose_all.yml
87 lines (78 loc) · 1.6 KB
/
docker-compose_all.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
version: '2'
services:
rabbitmq:
image: rabbitmq:3.5.1
ports:
- "15672:15672"
- "5672:5672"
redis:
image: redis:4.0.2-alpine
ports:
- "6379:6379"
authserver_mysql:
image: mysql:5.7
environment:
- MYSQL_ALLOW_EMPTY_PASSWORD=yes
- MYSQL_DATABASE=microservice4vaadin_authserverdb
- MYSQL_USER=root
volumes:
- "/data/mysql:/var/lib/mysql"
configserver:
image: klhauser/microservice4vaadin-config
restart: always
ports:
- "8888:8888"
discovery:
image: klhauser/microservice4vaadin-discovery
restart: always
ports:
- "8761:8761"
links:
- configserver
authserver:
image: klhauser/microservice4vaadin-authserver
restart: always
ports:
- "7777:7777"
links:
- authserver_mysql
- discovery
- redis
- configserver
frontend:
image: klhauser/microservice4vaadin-frontend
restart: always
ports:
- "8081:8081"
links:
- discovery
- redis
- rabbitmq
- configserver
edge:
image: klhauser/microservice4vaadin-edge
restart: always
ports:
- "8080:8080"
links:
- discovery
- redis
- frontend
- authserver
- configserver
#hystrixdashboard:
# image: klhauser/microservice4vaadin-hystrixdashboard
# restart: always
# ports:
# - "7979:7979"
# links:
# - discovery
# - configserver
#
#turbine:
# image: klhauser/microservice4vaadin-turbine
# restart: always
# ports:
# - "8989:8989"
# links:
# - configserver