-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathdocker-compose.yml
34 lines (31 loc) · 997 Bytes
/
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
version: '3.3'
services:
yice-mysql:
image: registry.cn-hangzhou.aliyuncs.com/liuxy0551/yice-mysql:latest
container_name: yice-mysql
ports:
- "3306:3306"
networks:
- yice-network
volumes:
- /opt/dtstack/yice-performance/yice-mysql/conf:/etc/mysql/conf.d
- /opt/dtstack/yice-performance/yice-mysql/log:/var/log/mysql
- /opt/dtstack/yice-performance/yice-mysql/data:/var/lib/mysql
restart: unless-stopped
yice-server:
image: registry.cn-hangzhou.aliyuncs.com/liuxy0551/yice-server:latest
container_name: yice-server
extra_hosts:
- "63x.dtstack.cn:172.16.115.61"
- "70x.dtstack.cn:172.16.115.124"
ports:
- "4000:4000"
networks:
- yice-network
volumes:
- /opt/dtstack/yice-performance/pm2-logs:/yice-performance/pm2/logs
- /opt/dtstack/yice-performance/yice-report:/yice-performance/apps/server/yice-report
restart: unless-stopped
networks:
yice-network:
driver: bridge