mirror of
https://github.com/cosmos/cosmjs.git
synced 2025-03-11 14:09:15 +00:00
9 lines
203 B
Bash
Executable File
9 lines
203 B
Bash
Executable File
#!/bin/bash
|
|
set -o errexit -o nounset -o pipefail
|
|
command -v shellcheck > /dev/null && shellcheck "$0"
|
|
|
|
CONTAINER_NAME="wasmd"
|
|
|
|
echo "Killing Cosmos container..."
|
|
docker container kill "$CONTAINER_NAME"
|