-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
179 lines (169 loc) · 4.32 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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
version: "3.0"
networks:
default:
name: driftwood-cloud-net
external: true
services:
gateway:
build:
context: ./gateway
args:
buildno: 1
image: icuxika/driftwood-gateway
container_name: gateway
restart: always
volumes:
- ./run-logs:/logs
environment:
- NACOS_HOST=${NACOS_HOST}
- MYSQL_HOST=${MYSQL_HOST}
- REDIS_HOST=${REDIS_HOST}
extra_hosts:
- "driftwood-cloud:${DRIFTWOOD_CLOUD_HOST}"
ports:
- "8900:8900"
authorization-server:
build:
context: ./authorization-server
args:
buildno: 1
image: icuxika/driftwood-authorization-server
container_name: authorization-server
restart: always
volumes:
- ./run-logs:/logs
environment:
- NACOS_HOST=${NACOS_HOST}
- MYSQL_HOST=${MYSQL_HOST}
- REDIS_HOST=${REDIS_HOST}
- JAVA_TOOL_OPTIONS=-XX:+PrintCommandLineFlags
- DEBUG_JAVA_OPTS=-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:18901
extra_hosts:
- "driftwood-cloud:${DRIFTWOOD_CLOUD_HOST}"
ports:
- "8901:8901"
- "18901:18901"
admin-service:
build:
context: ./admin-service
args:
buildno: 1
image: icuxika/driftwood-admin-service
container_name: admin-service
restart: always
volumes:
- ./run-logs:/logs
environment:
- NACOS_HOST=${NACOS_HOST}
- MYSQL_HOST=${MYSQL_HOST}
- REDIS_HOST=${REDIS_HOST}
extra_hosts:
- "driftwood-cloud:${DRIFTWOOD_CLOUD_HOST}"
ports:
- "8902:8902"
user-service:
build:
context: ./user-service
args:
buildno: 1
image: icuxika/driftwood-user-service
container_name: user-service
restart: always
volumes:
- ./run-logs:/logs
environment:
- NACOS_HOST=${NACOS_HOST}
- MYSQL_HOST=${MYSQL_HOST}
- REDIS_HOST=${REDIS_HOST}
extra_hosts:
- "driftwood-cloud:${DRIFTWOOD_CLOUD_HOST}"
ports:
- "8904:8904"
framework-service-flowable:
build:
context: ./framework-service/framework-service-flowable
args:
buildno: 1
image: icuxika/driftwood-framework-service-flowable
container_name: framework-service-flowable
restart: always
volumes:
- ./run-logs:/logs
environment:
- NACOS_HOST=${NACOS_HOST}
- MYSQL_HOST=${MYSQL_HOST}
- REDIS_HOST=${REDIS_HOST}
extra_hosts:
- "driftwood-cloud:${DRIFTWOOD_CLOUD_HOST}"
ports:
- "8906:8906"
framework-service-websocket:
build:
context: ./framework-service/framework-service-websocket
args:
buildno: 1
image: icuxika/driftwood-framework-service-websocket
container_name: framework-service-websocket
restart: always
volumes:
- ./run-logs:/logs
environment:
- NACOS_HOST=${NACOS_HOST}
- MYSQL_HOST=${MYSQL_HOST}
- REDIS_HOST=${REDIS_HOST}
extra_hosts:
- "driftwood-cloud:${DRIFTWOOD_CLOUD_HOST}"
ports:
- "8910:8910"
framework-service-job:
build:
context: ./framework-service/framework-service-job
args:
buildno: 1
image: icuxika/driftwood-framework-service-job
container_name: framework-service-job
restart: always
volumes:
- ./run-logs:/logs
environment:
- NACOS_HOST=${NACOS_HOST}
- MYSQL_HOST=${MYSQL_HOST}
- REDIS_HOST=${REDIS_HOST}
extra_hosts:
- "driftwood-cloud:${DRIFTWOOD_CLOUD_HOST}"
ports:
- "8911:8911"
framework-service-minio:
build:
context: ./framework-service/framework-service-minio
args:
buildno: 1
image: icuxika/driftwood-framework-service-minio
container_name: framework-service-minio
restart: always
volumes:
- ./run-logs:/logs
environment:
- NACOS_HOST=${NACOS_HOST}
- MYSQL_HOST=${MYSQL_HOST}
- REDIS_HOST=${REDIS_HOST}
extra_hosts:
- "driftwood-cloud:${DRIFTWOOD_CLOUD_HOST}"
ports:
- "8912:8912"
driftwood-web:
build:
context: ./driftwood-web/docker
args:
buildno: 1
image: icuxika/driftwood-web
container_name: driftwood-web
restart: always
volumes:
- ./run-logs/driftwood-web:/var/log/nginx
environment:
- TZ=Asia/Shanghai
extra_hosts:
- "driftwood-cloud:${DRIFTWOOD_CLOUD_HOST}"
ports:
- "8881:80"