docker-compose.yml
4.24 KB
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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
version: "3"
services:
# 服务启动顺序没有做healthcheck,会导致服务启动失败,后期需要补上
# nacos
nacos:
image: nacos/nacos-server:v2.1.0
hostname: nacos-server
restart: always
container_name: project-nacos
environment:
- PREFER_HOST_MODE=hostname
- MODE=standalone
ports:
- "8848:8848"
# nacos config-init
nacos-setup:
image: radial/busyboxplus:curl
container_name: config-init
volumes:
- ../config-init:/work
working_dir: /work/scripts
restart: "no"
entrypoint: [ "./nacos-config-quick.sh"]
depends_on:
- nacos
- postgres
- project-user
# postgres
postgres:
image: bitnami/postgresql:15.2.0
hostname: project-pg
restart: always
container_name: project-pg
environment:
# - POSTGRESQL_USERNAME=postgres
- POSTGRESQL_PASSWORD=postgres
ports:
# 5432端口在win机器上会报错
- "8432:5432"
volumes:
- ../config-init/sql/init.sql:/docker-entrypoint-initdb.d/create_tables.sql
# postgres web console
pgadmin:
container_name: project-pgadmin
image: dpage/pgadmin4
environment:
POSTGRES_PASSWORD: postgres
PGADMIN_DEFAULT_EMAIL: pgadmin4@pgadmin.org
PGADMIN_DEFAULT_PASSWORD: admin
PGADMIN_CONFIG_SERVER_MODE: 'False'
ports:
- "8050:80"
depends_on:
- postgres
# kafka
zookeeper:
image: wurstmeister/zookeeper
ports:
- "2181:2181"
hostname: zookeeper
kafka:
image: wurstmeister/kafka
command: [start-kafka.sh]
ports:
- "9092:9092"
hostname: kafka
environment:
# KAFKA_CREATE_TOPICS: "UploadFile:1:1,GetFile:1:1,TrackUpload:1:1,GetEmailContent:1:1" # topic:partition:replicas
KAFKA_ADVERTISED_HOST_NAME: kafka # docker-machine ip
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
KAFKA_ADVERTISED_PORT: 9092
depends_on:
- zookeeper
# seata
seata-server:
image: seataio/seata-server:1.5.1
hostname: seata-server
restart: always
container_name: project-seata-server
ports:
- "8091:8091"
environment:
- SEATA_PORT=8091
- STORE_MODE=file
# redis
redis:
image: redis:6.2-alpine
hostname: redis
restart: always
container_name: project-redis
ports:
- "6379:6379"
command: redis-server --save 20 1 --loglevel warning --requirepass 123456
# gateway
project-gateway:
image: project-gateway
restart: always
hostname: gateway-service
build:
dockerfile: ./project-gateway/Dockerfile
context: ../
env_file:
- .env
container_name: project-gateway
ports:
- ${GATEWAY_PORT}:${GATEWAY_PORT}
depends_on:
- nacos
project-order:
image: project-order
restart: always
build:
dockerfile: ./project-order/Dockerfile
context: ../
env_file:
- .env
container_name: project-order
ports:
- ${ORDER_PORT}:${ORDER_PORT}
depends_on:
- nacos
- postgres
# user module
project-user:
image: project-user
restart: always
build:
dockerfile: ./project-user/Dockerfile
context: ../
env_file:
- .env
container_name: project-user
ports:
- ${USER_PORT}:${USER_PORT}
depends_on:
- nacos
- postgres
# gis module
project-gis:
image: project-gis
restart: always
build:
dockerfile: ./project-gis/Dockerfile
context: ../
env_file:
- .env
container_name: project-gis
ports:
- ${GIS_PORT}:${GIS_PORT}
depends_on:
- nacos
- postgres
- project-geometry
# geometry module
project-geometry:
image: project-geometry
restart: always
build:
dockerfile: ./project-geometry/Dockerfile
context: ../
env_file:
- .env
container_name: project-geometry
ports:
- ${GEOMETRY_PORT}:${GEOMETRY_PORT}
depends_on:
- nacos
# district module
project-district:
image: project-district
restart: always
build:
dockerfile: ./project-district/Dockerfile
context: ../
env_file:
- .env
container_name: project-district
ports:
- ${DISTRICT_PORT}:${DISTRICT_PORT}
depends_on:
- nacos