diff --git a/README.md b/README.md index d995c27..70a5909 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Skip this if you prefer to pull from [docker hub](https://hub.docker.com/u/elron ```bash cd mainnet -docker image build . -t elrondnetwork/elrond-node-obs:v1.1.24 -f ./elrond-node-obs +docker image build . -t elrondnetwork/elrond-node-obs:v1.1.25 -f ./elrond-node-obs docker image build . -t elrondnetwork/elrond-proxy:v1.1.4 -f ./elrond-proxy ``` @@ -20,7 +20,7 @@ docker image build . -t elrondnetwork/elrond-go-keygenerator:latest -f ./elrond- ## How to pull the images from Docker Hub ```bash -docker pull elrondnetwork/elrond-node-obs:v1.1.24 +docker pull elrondnetwork/elrond-node-obs:v1.1.25 docker pull elrondnetwork/elrond-proxy:v1.1.4 docker pull elrondnetwork/elrond-go-keygenerator:latest ``` @@ -151,7 +151,7 @@ export IP=10.0.0.2 1. Pull the new images: ``` -docker pull elrondnetwork/elrond-node-obs:v1.1.24 +docker pull elrondnetwork/elrond-node-obs:v1.1.25 docker pull elrondnetwork/elrond-proxy:v1.1.4 ``` 2. Get the latest version of this repository. diff --git a/mainnet/.env b/mainnet/.env index 91443f0..5e2a537 100644 --- a/mainnet/.env +++ b/mainnet/.env @@ -18,5 +18,5 @@ IP_1=10.0.0.5 IP_2=10.0.0.4 IP_M=10.0.0.3 -NODE_TAG=elrond-node-obs:v1.1.24 +NODE_TAG=elrond-node-obs:v1.1.25 PROXY_TAG=elrond-proxy:v1.1.4 \ No newline at end of file diff --git a/mainnet/elrond-node-obs b/mainnet/elrond-node-obs index cf15d37..53efbac 100644 --- a/mainnet/elrond-node-obs +++ b/mainnet/elrond-node-obs @@ -1,7 +1,7 @@ FROM golang:1.14.9 as builder -RUN git clone https://github.com/ElrondNetwork/elrond-config-mainnet && cd elrond-config-mainnet && git checkout --force tags/v1.1.24.0 -RUN git clone https://github.com/ElrondNetwork/elrond-go.git && cd elrond-go && git checkout --force tags/v1.1.24 +RUN git clone https://github.com/ElrondNetwork/elrond-config-mainnet && cd elrond-config-mainnet && git checkout --force tags/v1.1.25.0 +RUN git clone https://github.com/ElrondNetwork/elrond-go.git && cd elrond-go && git checkout --force tags/v1.1.25 #Build node binary WORKDIR /go/elrond-go/ diff --git a/mainnet/run-observer.sh b/mainnet/run-observer.sh index 074126b..b0ebb8a 100755 --- a/mainnet/run-observer.sh +++ b/mainnet/run-observer.sh @@ -1,4 +1,4 @@ #!/bin/bash -docker run --mount type=bind,source=${OBSERVER_DIR}/db,destination=/go/elrond-go/cmd/node/db --mount type=bind,source=${OBSERVER_DIR}/logs,destination=/go/elrond-go/cmd/node/logs --mount type=bind,source=${OBSERVER_DIR}/config,destination=/config --publish ${P2P_PORT}:37373 --network=elrond-squad --ip=${IP} --name squad-${SHARD} elrondnetwork/elrond-node-obs:v1.1.24 \ +docker run --mount type=bind,source=${OBSERVER_DIR}/db,destination=/go/elrond-go/cmd/node/db --mount type=bind,source=${OBSERVER_DIR}/logs,destination=/go/elrond-go/cmd/node/logs --mount type=bind,source=${OBSERVER_DIR}/config,destination=/config --publish ${P2P_PORT}:37373 --network=elrond-squad --ip=${IP} --name squad-${SHARD} elrondnetwork/elrond-node-obs:v1.1.25 \ --destination-shard-as-observer=${SHARD} --validator-key-pem-file=/config/observerKey_${SHARD}.pem --display-name="${DISPLAY_NAME}"