mirror of
https://github.com/cosmos/cosmjs.git
synced 2025-03-10 21:49:15 +00:00
7 lines
212 B
Bash
7 lines
212 B
Bash
![]() |
#!/bin/bash
|
||
|
set -o errexit -o nounset -o pipefail
|
||
|
command -v shellcheck > /dev/null && shellcheck "$0"
|
||
|
|
||
|
echo "Killing socketserver containers ..."
|
||
|
docker container kill "socketserver-default" "socketserver-slow"
|