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