da68e2eccc
Closes-Bug: #1490387 Change-Id: I4a9476085b9c5b2cae3801e5b1954e85068f4e03
8 lines
159 B
Bash
Executable File
8 lines
159 B
Bash
Executable File
#!/bin/bash
|
|
CONTAINERS=`docker ps -a -q`
|
|
if [[ -z "$CONTAINERS" ]]; then
|
|
echo "No containers to cleanup, exit now."
|
|
exit 0
|
|
fi
|
|
docker rm $@ $CONTAINERS
|