forked from TangSengDaoDao/TangSengDaoDaoServer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yaml
41 lines (41 loc) · 1.01 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
version: '3.1'
services:
redis:
image: redis
restart: always
ports:
- 6379:6379
mysql:
image: mysql
command: --default-authentication-plugin=mysql_native_password
restart: always
environment:
MYSQL_ROOT_PASSWORD: demo
MYSQL_DATABASE: test
ports:
- 3306:3306
wukongim: # wukongim底层通讯服务
image: wukongim/wukongim:latest
restart: always
volumes:
- ./wukongimdata:/root/wukongim
environment:
WK_MODE: "debug"
WK_EXTERNAL_IP: "192.168.99.219"
ports:
- 5001:5001 # http api 端口
- 5100:5100 # tcp端口
- 5200:5200 # websocket端口
- 5300:5300 # monitor端口
minio: # minio文件管理服务
image: minio/minio:latest # use a remote image
restart: always
command: "server /data --console-address ':9001'"
ports:
- "9000:9000"
- "9001:9001"
environment:
- MINIO_ROOT_USER=admin
- MINIO_ROOT_PASSWORD=12345678
volumes:
- ./miniodata:/data