You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
470 B

  1. #! /bin/bash
  2. set -eu
  3. DOCKER_IMAGE=$1
  4. NETWORK_NAME=$2
  5. N=$3
  6. APP_PROXY=$4
  7. set +u
  8. SEEDS=$5
  9. if [[ "$SEEDS" != "" ]]; then
  10. echo "Seeds: $SEEDS"
  11. SEEDS="--p2p.seeds $SEEDS"
  12. fi
  13. set -u
  14. cd "$GOPATH/src/github.com/tendermint/tendermint"
  15. # create docker network
  16. docker network create --driver bridge --subnet 172.57.0.0/16 "$NETWORK_NAME"
  17. for i in $(seq 1 "$N"); do
  18. bash test/p2p/peer.sh "$DOCKER_IMAGE" "$NETWORK_NAME" "$i" "$APP_PROXY" "$SEEDS --p2p.pex --rpc.unsafe"
  19. done