18
18
19
19
Here are the software versions we use:
20
20
21
- - TestNet: v1.14.2
21
+ - TestNet: v2.0.0-rc1
22
22
23
23
** Note**
24
24
To start and run a mainnet node, please click [ ** Join Mainnet** ] ( https://github.com/iotexproject/iotex-bootstrap/blob/master/README.md )
@@ -29,7 +29,7 @@ This is the recommended way to start an IoTeX node
29
29
1 . Pull the docker image:
30
30
31
31
```
32
- docker pull iotex/iotex-core:v1.14.2
32
+ docker pull iotex/iotex-core:v2.0.0-rc1
33
33
```
34
34
35
35
2 . Set the environment with the following commands:
@@ -44,8 +44,8 @@ mkdir -p $IOTEX_HOME/data
44
44
mkdir -p $IOTEX_HOME/log
45
45
mkdir -p $IOTEX_HOME/etc
46
46
47
- curl https://raw.githubusercontent.com/iotexproject/iotex-bootstrap/v1.14.2 /config_testnet.yaml > $IOTEX_HOME/etc/config.yaml
48
- curl https://raw.githubusercontent.com/iotexproject/iotex-bootstrap/v1.14.2 /genesis_testnet.yaml > $IOTEX_HOME/etc/genesis.yaml
47
+ curl https://raw.githubusercontent.com/iotexproject/iotex-bootstrap/master /config_testnet.yaml > $IOTEX_HOME/etc/config.yaml
48
+ curl https://raw.githubusercontent.com/iotexproject/iotex-bootstrap/master /genesis_testnet.yaml > $IOTEX_HOME/etc/genesis.yaml
49
49
```
50
50
51
51
3 . Edit ` $IOTEX_HOME/etc/config.yaml ` , look for ` externalHost ` and ` producerPrivKey ` , uncomment the lines and fill in your external IP and private key. If you leave ` producerPrivKey ` empty, your node will be assgined with a random key.
@@ -85,7 +85,7 @@ docker run -d --restart on-failure --name iotex \
85
85
-v=$IOTEX_HOME/log:/var/log:rw \
86
86
-v=$IOTEX_HOME/etc/config.yaml:/etc/iotex/config_override.yaml:ro \
87
87
-v=$IOTEX_HOME/etc/genesis.yaml:/etc/iotex/genesis.yaml:ro \
88
- iotex/iotex-core:v1.14.2 \
88
+ iotex/iotex-core:v2.0.0-rc1 \
89
89
iotex-server \
90
90
-config-path=/etc/iotex/config_override.yaml \
91
91
-genesis-path=/etc/iotex/genesis.yaml
@@ -105,7 +105,7 @@ docker run -d --restart on-failure --name iotex \
105
105
-v=$IOTEX_HOME/log:/var/log:rw \
106
106
-v=$IOTEX_HOME/etc/config.yaml:/etc/iotex/config_override.yaml:ro \
107
107
-v=$IOTEX_HOME/etc/genesis.yaml:/etc/iotex/genesis.yaml:ro \
108
- iotex/iotex-core:v1.14.2 \
108
+ iotex/iotex-core:v2.0.0-rc1 \
109
109
iotex-server \
110
110
-config-path=/etc/iotex/config_override.yaml \
111
111
-genesis-path=/etc/iotex/genesis.yaml \
@@ -126,7 +126,7 @@ Same as [Join TestNet](#testnet) step 2
126
126
```
127
127
git clone https://github.com/iotexproject/iotex-core.git
128
128
cd iotex-core
129
- git checkout v1.14.2
129
+ git checkout v2.0.0-rc1
130
130
131
131
// optional
132
132
export GOPROXY=https://goproxy.io
0 commit comments