9 lines
216 B
Bash
Raw Normal View History

#!/bin/bash
set -o errexit -o nounset -o pipefail
2020-12-08 09:03:14 +01:00
command -v shellcheck >/dev/null && shellcheck "$0"
NAME=${TENDERMINT_NAME:-tendermint-25}
echo "Killing container named '$NAME' ..."
docker container kill "$NAME"