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
501 B

  1. #! /bin/bash
  2. set -eu
  3. DOCKER_IMAGE=$1
  4. NETWORK_NAME=$2
  5. ID=$3
  6. APP_PROXY=$4
  7. set +u
  8. SEEDS=$5
  9. set -u
  10. if [[ "$SEEDS" != "" ]]; then
  11. SEEDS=" --seeds $SEEDS "
  12. fi
  13. echo "starting tendermint peer ID=$ID"
  14. # start tendermint container on the network
  15. docker run -d \
  16. --net=$NETWORK_NAME \
  17. --ip=$(test/p2p/ip.sh $ID) \
  18. --name local_testnet_$ID \
  19. --entrypoint tendermint \
  20. -e TMROOT=/go/src/github.com/tendermint/tendermint/test/p2p/data/mach$ID/core \
  21. $DOCKER_IMAGE node $SEEDS --proxy_app=$APP_PROXY