remove fast_sync from docker

This commit is contained in:
Jae Kwon 2015-10-13 08:53:58 -07:00
parent fb62e1eb75
commit 6d66223bf6
3 changed files with 3 additions and 8 deletions

View File

@ -11,7 +11,7 @@ mounting it.
The commands should work from tendermint/tendermint or tendermint/tendermint/DOCKER,
save the removal of DOCKER from the path.
Get quickly caught up with the testnet: `FAST_SYNC=true ./DOCKER/docker.sh`
Get quickly caught up with the testnet: `./DOCKER/docker.sh`
Use a pre-existing `~/.tendermint`: `VC=~/.tendermint NO_BUILD=true ./DOCKER/docker.sh`

View File

@ -18,4 +18,4 @@ if [[ $VC ]]; then
fi
# run tendermint
docker run --name mint --volumes-from mintdata -d -p 46656:46656 -p 46657:46657 -e FAST_SYNC=$FAST_SYNC mint
docker run --name mint --volumes-from mintdata -d -p 46656:46656 -p 46657:46657 mint

View File

@ -4,9 +4,4 @@ if [[ $BARAK_SEED ]]; then
cat ./cmd/barak/$BARAK_SEED | ./build/barak &
fi
if [ "$FAST_SYNC" = "true" ]; then
tendermint node --fast_sync
else
tendermint node
fi
tendermint node