-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdocker-compose.yaml
82 lines (76 loc) · 2.53 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
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
services:
c-chain-indexer-db:
restart: unless-stopped
profiles: [fsp, ftso, fdc]
image: "mysql"
environment:
MYSQL_ROOT_PASSWORD: "root"
volumes:
- ./config/init.sql:/docker-entrypoint-initdb.d/db_init.sql
- indexer_data:/var/lib/mysql
healthcheck:
test: ["CMD", "mysqladmin", "ping", "--silent", "--host", "localhost", "-proot"]
timeout: 20s
retries: 10
c-chain-indexer:
restart: unless-stopped
profiles: [fsp, ftso, fdc]
image: ghcr.io/flare-foundation/flare-system-c-chain-indexer:v1.0.0
volumes:
- ./mounts/c-chain-indexer/config.toml:/app/config.toml
depends_on:
c-chain-indexer-db:
condition: service_healthy
system-client:
restart: unless-stopped
profiles: [fsp, system-client]
image: ghcr.io/flare-foundation/flare-system-client:v1.0.3
volumes:
- ./mounts/system-client/config.toml:/app/config.toml
environment:
SYSTEM_CLIENT_SENDER_PRIVATE_KEY: ${SIGNING_PK}
SIGNING_POLICY_PRIVATE_KEY: ${SIGNING_PK}
PROTOCOL_MANAGER_SUBMIT_PRIVATE_KEY: ${SUBMIT_PK}
PROTOCOL_MANAGER_SUBMIT_SIGNATURES_PRIVATE_KEY: ${SIGNATURES_PK}
PROTOCOL_X_API_KEY_100: ${PROTOCOL_X_API_KEY_100}
PROTOCOL_X_API_KEY_200: ${PROTOCOL_X_API_KEY_200}
# NOTE: Voting round 90s + reveal deadline 45s
stop_grace_period: 135s
depends_on:
- c-chain-indexer
ftso-client:
restart: unless-stopped
profiles: [fsp, ftso]
image: ghcr.io/flare-foundation/ftso-scaling:v1.0.2
env_file:
- ./mounts/ftso-client/.env
command: "node dist/apps/ftso-data-provider/apps/ftso-data-provider/src/main.js"
# NOTE: Voting round 90s + reveal deadline 45s
stop_grace_period: 135s
depends_on:
- c-chain-indexer
fdc-client:
restart: unless-stopped
profiles: [fsp, fdc]
image: ghcr.io/flare-foundation/fdc-client:v1.0.4
volumes:
- ./mounts/fdc-client/config.toml:/app/configs/userConfig.toml
depends_on:
- c-chain-indexer
# NOTE: Voting round 90s + reveal deadline 45s
stop_grace_period: 135s
fast-updates:
restart: unless-stopped
profiles: [fast-updates]
image: ghcr.io/flare-foundation/fast-updates/go-client:v1.0.0
volumes:
- ./mounts/fast-updates/config.toml:/app/config.toml
environment:
SIGNING_PRIVATE_KEY: ${SIGNING_PK}
ACCOUNTS: ${FAST_UPDATES_ACCOUNTS}
SORTITION_PRIVATE_KEY: ${FAST_UPDATES_SORTITION_PRIVATE_KEY}
API_KEY: ${NODE_API_KEY}
depends_on:
- c-chain-indexer
volumes:
indexer_data: