-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
27 lines (25 loc) · 1.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
services:
xcm-viewer:
build:
context: "${PWD}"
dockerfile: "${PWD}/docker/Dockerfile"
environment:
"DEBUG_APP": "False"
# Enable some hacks for relay. This is needed until ReDeFi is updated to 1.9+
"VERY_OLD_RELAY": "True"
"HOST": "127.0.0.1"
"PORT": "5000"
# Polkascan url used for building links to blocks and events for user
"L1_POLKASCAN": "https://polkascan.io/L1"
# Blockscout url used for building links to transactions for user
"L1_BLOCKSCOUT": "https://blockscout.io/L1"
# App used polkadot database directly
"L1_DB_CONNECTION": "pymysql://root:root@127.0.0.1:33060/polkascan"
# Node is required for viewing relay-parachain transfers
"L1_SUBSTRATE_RPC_URL": "ws://redefi-relay/"
"L2_POLKASCAN": "https://polkascan.io/L2"
"L2_BLOCKSCOUT": "https://blockscout.io/L2"
"L2_DB_CONNECTION": "pymysql://root:root@127.0.0.1:33061/polkascan"
"L2_SUBSTRATE_RPC_URL": "ws://redefi-parachain/"
ports:
- "127.0.0.1:5000:5000"