Skip to content

Commit

Permalink
Merge pull request #25 from tonlabs/0.1.9
Browse files Browse the repository at this point in the history
Updated RUST node
  • Loading branch information
ar-tmp authored Aug 12, 2022
2 parents 327482f + 7395ea4 commit c0b9ae0
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

All notable changes to this project will be documented in this file.

## [0.1.9] – 2022-08-12

### Improvements

- updated ton-labs-node from `5438eaab4db17c0c78869debf3e936078d9d7150` to `c5ee530c54199e81e2ca241a17ec23be7290229a`

### Fixed
- fixed IP address detection issue

## [0.1.8] – 2022-06-27

### Improvements
Expand Down
4 changes: 3 additions & 1 deletion scripts/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ sed -i "s|email for notification|${EMAIL_FOR_NOTIFICATIONS}|g" "${DOCKER_COMPOSE
sed -i "s|NETWORK_TYPE.*|NETWORK_TYPE=${NETWORK_TYPE}|g" "${DOCKER_COMPOSE_DIR}/arangodb/.env"

sed -i "s|host.yourdomain.com|${HOSTNAME}|g" "${DOCKER_COMPOSE_DIR}/web.root/.env"
sed -i "s|host.yourdomain.com|${HOSTNAME}|g" "${DOCKER_COMPOSE_DIR}/web.root/index.html"
sed -i "s|for notification|${EMAIL_FOR_NOTIFICATIONS}|g" "${DOCKER_COMPOSE_DIR}/web.root/docker-compose.yml"

rm -f "${DOCKER_COMPOSE_DIR}/proxy/htpasswd/arango.yourdomain.com"
Expand Down Expand Up @@ -94,9 +95,10 @@ done

until [ "$(echo "${IntIP}" | grep "\." -o | wc -l)" -eq 3 ]; do
set +e
IntIP="$(curl -sS https://ip.me/)":${ADNL_PORT}
IntIP="$(curl -sS4 https://ip.me/)":${ADNL_PORT}
set -e
echo "INFO: IntIP = $IntIP"
sleep 5s
done
sed -i "s|IntIP.*|IntIP=${IntIP}|g" "${DOCKER_COMPOSE_DIR}/statsd/.env"
cd "${DOCKER_COMPOSE_DIR}/statsd/" && docker-compose up -d
Expand Down
2 changes: 1 addition & 1 deletion scripts/env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ HOSTNAME=$(hostname -f)
export TON_Q_SERVER_GITHUB_REPO="https://github.com/tonlabs/ton-q-server"
export TON_Q_SERVER_GITHUB_COMMIT_ID="0.52.1"
export TON_NODE_GITHUB_REPO="https://github.com/tonlabs/ton-labs-node"
export TON_NODE_GITHUB_COMMIT_ID="5438eaab4db17c0c78869debf3e936078d9d7150"
export TON_NODE_GITHUB_COMMIT_ID="c5ee530c54199e81e2ca241a17ec23be7290229a"

0 comments on commit c0b9ae0

Please sign in to comment.