-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose.yml
154 lines (134 loc) · 3.55 KB
/
docker-compose.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
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
version: '3.3'
services:
# INFRASTRUCTURE
docker-sql:
hostname: docker-sql
image: postgres
ports:
- "5432:5432"
docker-migrate-sql:
build: ./migration-utility
image: theshire:migration-utility
links:
- docker-sql
docker-sql-admin:
image: adminer
ports:
- "8081:8080"
docker-rabbitmq:
hostname: docker-rabbitmq
image: rabbitmq:3-management
environment:
RABBITMQ_DEFAULT_PASS: rmqadmin
RABBITMQ_DEFAULT_USER: rmqadmin
ports:
- "5672:5672"
- "15672:15672"
# GLOBAL SERVICES
docker-registry:
hostname: docker-registry
build: ./global/registry-server
image: theshire:docker-registry
environment:
- JAVA_OPTS=-Xmx50m
- REGISTRY_URL=http://docker-registry:1111/eureka
links:
- docker-rabbitmq
ports:
- "1111:1111"
docker-config:
hostname: docker-config
build:
context: .
dockerfile: global/config-server/Dockerfile
image: theshire:docker-config
environment:
- JAVA_OPTS=-Xmx50m
- REGISTRY_URL=http://docker-registry:1111/eureka
links:
- docker-registry
ports:
- "8888:8888"
docker-turbine:
hostname: docker-turbine
build: ./global/turbine-server
image: theshire:docker-turbine
environment:
- JAVA_OPTS=-Xmx50m
- REGISTRY_URL=http://docker-registry:1111/eureka
links:
- docker-registry
- docker-config
ports:
- "29501:29501"
- "8989:8989"
docker-auth-service:
hostname: docker-auth-service
build: ./global/authorization-server
image: theshire:docker-auth-service
environment:
- JAVA_OPTS=-Xmx200m
- REGISTRY_URL=http://docker-registry:1111/eureka
links:
- docker-sql
- docker-registry
- docker-config
ports:
- "17501:17501"
docker-gateway:
hostname: docker-gateway
build: ./global/gateway-server
image: theshire:docker-gateway
environment:
- JAVA_OPTS=-Xmx50m
- REGISTRY_URL=http://docker-registry:1111/eureka
links:
- docker-turbine
- docker-auth-service
ports:
- "8080:8080"
docker-admin:
hostname: docker-admin
build: ./global/admin
image: theshire:docker-admin
environment:
- JAVA_OPTS=-Xmx200m
- REGISTRY_URL=http://docker-registry:1111/eureka
links:
- docker-auth-service
ports:
- "14900:14900"
#SERVICES
docker-account-service:
hostname: docker-account-service
build: ./modules/account
image: theshire:docker-account-service
links:
- docker-auth-service
environment:
- JAVA_OPTS=-Xmx100m
- REGISTRY_URL=http://docker-registry:1111/eureka
ports:
- "17502:17502"
docker-document-service:
hostname: docker-document-service
build: ./modules/document
image: theshire:docker-document-service
links:
- docker-auth-service
environment:
- JAVA_OPTS=-Xmx100m
- REGISTRY_URL=http://docker-registry:1111/eureka
ports:
- "17503:17503"
docker-chat-service:
hostname: docker-chat-service
build: ./modules/chat
image: theshire:docker-chat-service
links:
- docker-auth-service
environment:
- JAVA_OPTS=-Xmx100m
- REGISTRY_URL=http://docker-registry:1111/eureka
ports:
- "17504:17504"