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.

44 lines
1.2 KiB

  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. echo "starting tendermint peer ID=$ID"
  11. # start tendermint container on the network
  12. # NOTE: $NODE_FLAGS should be unescaped (no quotes). otherwise it will be
  13. # treated as one flag.
  14. if [[ "$ID" == "x" ]]; then # Set "x" to "1" to print to console.
  15. docker run \
  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. -e GOMAXPROCS=1 \
  22. --log-driver=syslog \
  23. --log-opt syslog-address=udp://127.0.0.1:5514 \
  24. --log-opt syslog-facility=daemon \
  25. --log-opt tag="{{.Name}}" \
  26. "$DOCKER_IMAGE" node $NODE_FLAGS --log_level=debug --proxy_app="$APP_PROXY" &
  27. else
  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. -e GOMAXPROCS=1 \
  35. --log-driver=syslog \
  36. --log-opt syslog-address=udp://127.0.0.1:5514 \
  37. --log-opt syslog-facility=daemon \
  38. --log-opt tag="{{.Name}}" \
  39. "$DOCKER_IMAGE" node $NODE_FLAGS --log_level=debug --proxy_app="$APP_PROXY"
  40. fi