forked from Conflux-Chain/confura
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
164 lines (151 loc) · 4.04 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
version: '3.7'
services:
# node management
node-management:
build: .
image: conflux/confura:latest
command: nm --cfx
ports:
- 22530:22530
restart: unless-stopped
environment:
- INFURA_LOG_LEVEL=debug
container_name: confura-node-management
ethnode-management:
image: conflux/confura:latest
command: nm --eth
ports:
- 28530:28530
restart: unless-stopped
environment:
- INFURA_LOG_LEVEL=debug
container_name: confura-ethnode-management
# blockchain sync
chain-sync:
image: conflux/confura:latest
command: sync --db --kv
restart: unless-stopped
depends_on:
- db
- redis
environment:
- INFURA_LOG_LEVEL=debug
- INFURA_STORE_MYSQL_ENABLED=true
- INFURA_STORE_MYSQL_DSN=root:root@tcp(db:3306)/confura_cfx?parseTime=true
- INFURA_STORE_REDIS_ENABLED=true
- INFURA_STORE_REDIS_URL=redis://redis:6379/0
container_name: confura-sync
ethchain-sync:
image: conflux/confura:latest
command: sync --eth
restart: unless-stopped
depends_on:
- db
environment:
- INFURA_LOG_LEVEL=debug
- INFURA_ETHSTORE_MYSQL_ENABLED=true
- INFURA_ETHSTORE_MYSQL_DSN=root:root@tcp(db:3306)/confura_eth?parseTime=true
- INFURA_SYNC_ETH_FROMBLOCK=36935000
container_name: confura-ethsync
# virtual filter
virtual-filter:
image: conflux/confura:latest
command: vf
ports:
- "48545:48545"
restart: unless-stopped
depends_on:
- db
environment:
- INFURA_LOG_LEVEL=debug
- INFURA_ETHSTORE_MYSQL_ENABLED=true
- INFURA_ETHSTORE_MYSQL_DSN=root:root@tcp(db:3306)/confura_eth?parseTime=true
container_name: confura-virtual-filter
# rpc proxy
rpc-proxy:
image: conflux/confura:latest
command: rpc --cfx
ports:
- "22537:22537"
restart: unless-stopped
depends_on:
- db
- redis
- node-management
environment:
- INFURA_LOG_LEVEL=debug
- INFURA_STORE_MYSQL_ENABLED=true
- INFURA_STORE_MYSQL_DSN=root:root@tcp(db:3306)/confura_cfx?parseTime=true
- INFURA_STORE_REDIS_ENABLED=true
- INFURA_STORE_REDIS_URL=redis://redis:6379/0
- INFURA_NODE_ROUTER_NODERPCURL=http://node-management:22530
container_name: confura-rpc
ethrpc-proxy:
image: conflux/confura:latest
command: rpc --eth
ports:
- "28545:28545"
restart: unless-stopped
depends_on:
- db
- ethnode-management
- virtual-filter
environment:
- INFURA_LOG_LEVEL=debug
- INFURA_STORE_MYSQL_ENABLED=true
- INFURA_STORE_MYSQL_DSN=root:root@tcp(db:3306)/confura_eth?parseTime=true
- INFURA_NODE_ROUTER_ETHNODERPCURL=http://ethnode-management:28530
- INFURA_VIRTUALFILTERS_SERVICERPCURL=http://virtual-filter:48545
container_name: confura-ethrpc
# data validator
data-validator:
image: conflux/confura:latest
command: test cfx -f http://test.confluxrpc.com -u http://rpc-proxy:22537
restart: on-failure:3
volumes:
- validator-data:/root
depends_on:
- rpc-proxy
- chain-sync
environment:
- INFURA_LOG_LEVEL=debug
container_name: confura-data-validator
ethdata-validator:
image: conflux/confura:latest
command: test eth -f http://evmtestnet.confluxrpc.com -u http://ethrpc-proxy:28545 -b 36935000
restart: on-failure:3
volumes:
- validator-data:/root
depends_on:
- ethrpc-proxy
- ethchain-sync
environment:
- INFURA_LOG_LEVEL=debug
container_name: confura-ethdata-validator
# middlewares
db:
image: mysql:5.7
ports:
- "3306"
restart: unless-stopped
environment:
- MYSQL_ROOT_PASSWORD=root
volumes:
- db-data:/var/lib/mysql
container_name: confura-database
redis:
image: redis:6.2
ports:
- "6379"
restart: unless-stopped
volumes:
- redis-data:/data
container_name: confura-redis
# others
networks:
default:
name: confura-internal
volumes:
db-data: {}
redis-data: {}
validator-data: {}