9 lines
217 B
Bash
Executable File
9 lines
217 B
Bash
Executable File
#!/bin/bash
|
|
set -o errexit -o nounset -o pipefail
|
|
command -v shellcheck > /dev/null && shellcheck "$0"
|
|
|
|
NAME=${TENDERMINT_NAME:-tendermint-25}
|
|
|
|
echo "Killing container named '$NAME' ..."
|
|
docker container kill "$NAME"
|