-
Notifications
You must be signed in to change notification settings - Fork 9
/
docker-compose.yaml
65 lines (60 loc) · 1.44 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
version: '3.7'
services:
web_explorer:
build:
context: ./web
environment:
PORT: 8084
ports:
- 8084:8084
command: npm run start
volumes:
- ./web:/usr/src/app
- /usr/src/app/node_modules
networks:
- polkadot-test-net
api_explorer:
build:
context: ./api
networks:
- polkadot-test-net
environment:
PORT: 8085
ports:
- 8085:8085
command: npm run start
volumes:
- ./api:/usr/src/app
- /usr/src/app/node_modules
polkadot_local_node:
image: jarcodallo/polkadot:latest
command: polkadot --dev --name "Pochoclos 🇦🇷" --rpc-external --ws-external
ports:
- 9944:9944
- 9933:9933
volumes:
- ./data:/data
networks:
- polkadot-test-net
polkadot_westend_node:
image: jarcodallo/polkadot:latest
command: polkadot --chain westend --name "Cipayos 🇦🇷" --rpc-external --ws-external --rpc-cors all --in-peers 50 --out-peers 50
ports:
- 9966:9944
- 9955:9933
volumes:
- ./data:/data
networks:
- polkadot-test-net
polkadot_main_node:
image: jarcodallo/polkadot:latest
command: polkadot --name "Gardel 🇦🇷" --rpc-external --ws-external --rpc-cors all --in-peers 150 --out-peers 150
ports:
- 9988:9944
- 9977:9933
volumes:
- ./data:/data
networks:
- polkadot-test-net
networks:
polkadot-test-net: