Skip to content

Commit

Permalink
Merge pull request #7 from ElrondNetwork/update-version-1.1.25
Browse files Browse the repository at this point in the history
update 1.1.25
  • Loading branch information
miiu96 committed Jan 22, 2021
2 parents 1052dad + bfbb61b commit 31fe2dd
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -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
```

Expand All @@ -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
```
Expand Down Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion mainnet/.env
Expand Up @@ -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
4 changes: 2 additions & 2 deletions 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/
Expand Down
2 changes: 1 addition & 1 deletion 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}"

0 comments on commit 31fe2dd

Please sign in to comment.