mirror of
https://github.com/cosmos/cosmjs.git
synced 2025-03-10 13:47:12 +00:00
9 lines
216 B
Bash
Executable File
9 lines
216 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"
|