## Tendermint container used for BFT replication and consensus ### Step 1: Build and Push the Latest Container Use the `docker_build_and_push.bash` script to build the latest docker image and upload it to Docker Hub. Ensure that the image tag is updated to a new version number to properly reflect any changes made to the container. ### Step 2: Run the container ``` docker run \ --name=tendermint \ --env TM_PUB_KEY_ACCESS_PORT= \ --env TM_SEEDS= \ --env TM_VALIDATOR_POWER= \ --env TM_VALIDATORS= \ --env TM_GENESIS_TIME= \ --env TM_CHAIN_ID= \ --env TM_P2P_PORT= \ --env TMHOME= \ --env TM_PROXY_APP= \ --publish=: \ --publish=: \ --volume :/tendermint \ --volume=:/tendermint_node_data \ bigchaindb/tendermint: ```