Revision 1f098187707c685ad17334c43c6fdaeaf5c466b2 authored by Ethan Buchman on 16 December 2018, 17:24:54 UTC, committed by GitHub on 16 December 2018, 17:24:54 UTC
2 parent s 9c236ff + e4806f9
Raw File
peer.sh
#! /bin/bash
set -eu

DOCKER_IMAGE=$1
NETWORK_NAME=$2
ID=$3
APP_PROXY=$4

set +u
NODE_FLAGS=$5
set -u

echo "starting tendermint peer ID=$ID"
# start tendermint container on the network
# NOTE: $NODE_FLAGS should be unescaped (no quotes). otherwise it will be
# treated as one flag.

# test/p2p/data/mach$((ID-1)) data is generated in test/docker/Dockerfile using
# the tendermint testnet command.
if [[ "$ID" == "x" ]]; then # Set "x" to "1" to print to console.
	docker run \
		--net="$NETWORK_NAME" \
		--ip=$(test/p2p/ip.sh "$ID") \
		--name "local_testnet_$ID" \
		--entrypoint tendermint \
		-e TMHOME="/go/src/github.com/tendermint/tendermint/test/p2p/data/mach$((ID-1))" \
		-e GOMAXPROCS=1 \
		--log-driver=syslog \
		--log-opt syslog-address=udp://127.0.0.1:5514 \
		--log-opt syslog-facility=daemon \
		--log-opt tag="{{.Name}}" \
		"$DOCKER_IMAGE" node $NODE_FLAGS --log_level=debug --proxy_app="$APP_PROXY" &
else
	docker run -d \
		--net="$NETWORK_NAME" \
		--ip=$(test/p2p/ip.sh "$ID") \
		--name "local_testnet_$ID" \
		--entrypoint tendermint \
		-e TMHOME="/go/src/github.com/tendermint/tendermint/test/p2p/data/mach$((ID-1))" \
		-e GOMAXPROCS=1 \
		--log-driver=syslog \
		--log-opt syslog-address=udp://127.0.0.1:5514 \
		--log-opt syslog-facility=daemon \
		--log-opt tag="{{.Name}}" \
		"$DOCKER_IMAGE" node $NODE_FLAGS --log_level=debug --proxy_app="$APP_PROXY"
fi
back to top