This repository has been archived by the owner on Feb 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 54
/
docker-compose.kusama-public.yml
121 lines (111 loc) · 2.94 KB
/
docker-compose.kusama-public.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
version: '3.2'
services:
explorer-api:
build: explorer-api/.
image: polkascan/pre-explorer-api:latest
hostname: explorer-api
volumes:
- './explorer-api:/usr/src/app'
command: ./start.sh
environment:
- PYTHONPATH=/usr/src/app
- ENVIRONMENT=prod
- DB_HOST=mysql
- DB_PORT=3306
- DB_USERNAME=root
- DB_PASSWORD=root
- DB_NAME=polkascan
- SUBSTRATE_RPC_URL=wss://kusama-rpc.polkadot.io/
- SUBSTRATE_ADDRESS_TYPE=2
- TYPE_REGISTRY=kusama
- SUBSTRATE_METADATA_VERSION=9
depends_on:
- mysql
harvester-api:
build: harvester/.
image: polkascan/pre-harvester:latest
hostname: harvester-api
volumes:
- './harvester:/usr/src/app'
command: ./start.sh
environment: &env
- CELERY_BROKER=redis://redis:6379/0
- CELERY_BACKEND=redis://redis:6379/0
- PYTHONPATH=/usr/src/app:/usr/src/app/py-substrate-interface/:/usr/src/app/py-scale-codec/
- ENVIRONMENT=prod
- DB_HOST=mysql
- DB_PORT=3306
- DB_USERNAME=root
- DB_PASSWORD=root
- DB_NAME=polkascan
- SUBSTRATE_RPC_URL=wss://kusama-rpc.polkadot.io/
- TYPE_REGISTRY=kusama
- SUBSTRATE_ADDRESS_TYPE=2
- SUBSTRATE_METADATA_VERSION=9
- BALANCE_SYSTEM_ACCOUNT_MIN_BLOCK=1375086
- NEW_SESSION_EVENT_HANDLER=True
- FINALIZATION_ONLY=1
depends_on:
- redis
- mysql
harvester-worker:
build: harvester/.
image: polkascan/pre-harvester:latest
volumes:
- './harvester:/usr/src/app'
command: celery -A app.tasks worker --loglevel=INFO
environment: *env
depends_on:
- redis
- mysql
harvester-beat:
build: harvester/.
image: polkascan/pre-harvester:latest
volumes:
- './harvester:/usr/src/app'
- '/usr/src/app/data'
command: celery -A app.tasks beat --loglevel=INFO --schedule="data/celerybeat-schedule" --pidfile="data/celerybeat.pid"
environment: *env
depends_on:
- redis
harvester-monitor:
build: harvester/.
image: polkascan/pre-harvester:latest
ports:
- '5555:5555'
command: flower -A app.tasks --port=5555 --broker=redis://redis:6379/0
depends_on:
- redis
redis:
image: redis:3.2.11
hostname: redis
mysql:
image: mysql:5.7
hostname: mysql
volumes:
- 'db-data:/var/lib/mysql'
ports:
- '33061:3306'
environment:
- MYSQL_ROOT_PASSWORD=root
- MYSQL_DATABASE=polkascan
explorer-gui:
image: polkascan/pre-explorer-gui:latest
build:
context: explorer-gui/.
args:
NETWORK_NAME: Kusama
NETWORK_ID: kusama
NETWORK_TYPE: pre
CHAIN_TYPE: relay
NETWORK_TOKEN_SYMBOL: KSM
NETWORK_TOKEN_DECIMALS: 12
NETWORK_COLOR_CODE: 000000
API_URL: http://127.0.0.1:8080/api/v1
ports:
- '8080:80'
depends_on:
- harvester-api
- explorer-api
volumes:
db-data: