smash all containers
This commit is contained in:
parent
bad7513c32
commit
823e32eb8e
|
@ -0,0 +1,11 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
function error_handler() {
|
||||
>&2 echo "Exited with BAD EXIT CODE '${2}' in ${0} script at line: ${1}."
|
||||
exit "$2"
|
||||
}
|
||||
trap 'error_handler ${LINENO} $?' ERR
|
||||
set -o errtrace -o errexit -o nounset -o pipefail
|
||||
|
||||
docker ps | grep -Ev '(static|CONTAINER)' | awk '{print $1}' | xargs docker stop
|
||||
docker ps -a | grep -Ev '(static|CONTAINER)' | awk '{print $1}' | xargs docker rm
|
Loading…
Reference in New Issue