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