-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
73 lines (67 loc) · 1.39 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
version: '3.9'
services:
xprofiler-console:
image: cynosure/xprofiler-console:1.0.0
ports:
- 7443:7443
env_file:
- .env
networks:
- ezm-network
restart: always
container_name: xprofiler-console
depends_on:
- db
- redis
xtransit-manager:
image: cynosure/xtransit-manager:1.0.0
# ports:
# - 7543:7543
env_file:
- .env
networks:
- ezm-network
restart: always
container_name: xtransit-manager
depends_on:
- db
- redis
xtransit-server:
image: cynosure/xtransit-server:1.0.0
environment:
- XTRANSIT_MANAGER_URL
ports:
- 9090:9090
networks:
- ezm-network
restart: always
container_name: xtransit-server
depends_on:
- xtransit-manager
redis:
image: redis:6.2.4-alpine
# ports:
# - 6379:6379
networks:
- ezm-network
restart: always
container_name: ezm-redis
db:
image: mysql:8.0.25
# ports:
# - 3306:3306
command: --default-authentication-plugin=mysql_native_password
volumes:
- ./data/db:/var/lib/mysql
- ./mysql/init:/docker-entrypoint-initdb.d
- ./mysql/sql:/opt/sql
environment:
MYSQL_ROOT_PASSWORD: root
networks:
- ezm-network
restart: always
container_name: ezm-mysql
networks:
ezm-network:
external:
name: ezm-network