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.

40 lines
1001 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. NODE_FLAGS=$5
  9. set -u
  10. set +eu
  11. echo "starting tendermint peer ID=$ID"
  12. # start tendermint container on the network
  13. if [[ "$CIRCLECI" == true ]]; then
  14. set -u
  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 TMHOME="/go/src/github.com/tendermint/tendermint/test/p2p/data/mach$ID/core" \
  21. --log-driver=syslog \
  22. --log-opt syslog-address=udp://127.0.0.1:5514 \
  23. --log-opt syslog-facility=daemon \
  24. --log-opt tag="{{.Name}}" \
  25. "$DOCKER_IMAGE" node $NODE_FLAGS --log_level=debug --proxy_app="$APP_PROXY"
  26. else
  27. set -u
  28. docker run -d \
  29. --net="$NETWORK_NAME" \
  30. --ip=$(test/p2p/ip.sh $ID) \
  31. --name "local_testnet_$ID" \
  32. --entrypoint tendermint \
  33. -e TMHOME="/go/src/github.com/tendermint/tendermint/test/p2p/data/mach$ID/core" \
  34. "$DOCKER_IMAGE" node $NODE_FLAGS --log_level=info --proxy_app="$APP_PROXY"
  35. fi