-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
46 lines (32 loc) · 1.07 KB
/
Makefile
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
include .env
export
# OST 1414 mainnet against Ethereum
ost-1414-init:
bash chains/ethereum/1414/geth-init.sh
ost-1414-start:
docker-compose -f chains/ethereum/1414/docker-compose.yml \
--env-file=.env up --detach
ost-1414-stop:
docker-compose -f chains/ethereum/1414/docker-compose.yml \
--env-file=.env stop
ost-1414-logs:
docker-compose -f chains/ethereum/1414/docker-compose.yml logs -f
ost-1414-clean:
docker-compose -f chains/ethereum/1414/docker-compose.yml down -v --remove-orphans
ost-1414-trash:
rm -rf ${HOST_DATA_DIR}/ethereum/1414
# OST testnets 1406 against Ropsten
ost-1406-init:
bash chains/ropsten/1406/geth-init.sh
ost-1406-start:
docker-compose -f chains/ropsten/1406/docker-compose.yml \
--env-file=.env up --detach
ost-1406-stop:
docker-compose -f chains/ropsten/1406/docker-compose.yml \
--env-file=.env stop
ost-1406-logs:
docker-compose -f chains/ropsten/1406/docker-compose.yml logs -f
ost-1406-clean:
docker-compose -f chains/ropsten/1406/docker-compose.yml down -v --remove-orphans
ost-1406-trash:
rm -rf ${HOST_DATA_DIR}/ropsten/1406