hoprnet / hopr-core

Main repository of HOPR - this is all you need to run a node on the HOPR network!
https://hoprnet.org
GNU General Public License v3.0
14 stars 5 forks source link

Testnet Initial Release #8

Closed robertkiel closed 4 years ago

0xjjpa commented 4 years ago

As additional thoughts in here, our goal is:

Env Variables

HOPR_PORT=9091 \
HOST_IPV4=0.0.0.0:$HOPR_PORT \
DOCKER_IMAGE=gcr.io/hoprassociation/hopr-core:latest \
BOOTSTRAP_SERVERS=$COUNTRY_BOOTSTRAP_NODE \
ETHEREUM_PROVIDER=wss://kovan.infura.io/ws/v3/$INFURA_ID \
PORTS=$HOPR_PORT:$HOPR_PORT

Docker Commands

Windows

docker run -v %cd%/db:/app/db -e HOST_IPV4=0.0.0.0:9091 -e BOOTSTRAP_SERVERS=$COUNTRY_BOOTSTRAP_NODE -e ETHEREUM_PROVIDER=wss://kovan.infura.io/ws/v3/$INFURA_ID -p 9091:9091-it gcr.io/hoprassociation/hopr-core:latest -p 123456

OSX/Linux

docker run -v $(pwd)/db:/app/db -e HOST_IPV4=$HOST_IPV4 -e BOOTSTRAP_SERVERS=$BOOTSTRAP_SERVERS -e ETHEREUM_PROVIDER=$ETHEREUM_PROVIDER -p $PORTS -it $DOCKER_IMAGE -p 123456
0xjjpa commented 4 years ago

We have deployed 3 bootstrap nodes for our testnet launch.

They are the equivalent of these ones.

There are more to come here (i.e. status, different countries, etc), but it will be important for us to keep these ones in mind for now as we manage our documentation.

Word of caution: As these bootstrap nodes are still in the works, sometimes they might need to be restarted and HOPR-chat nodes might fail to connect to them.

0xjjpa commented 4 years ago

We have concluded our initial testnet release! Up to date docs, both in nodejs and docker are available in https://docs.hoprnet.io/home/. Closing epic.