delete-container.sh 204 B

1234567891011
  1. #!/bin/sh
  2. . $(dirname $0)/config.prop
  3. # remove test container
  4. res=$(docker.io ps -a | grep -c "$testContainer")
  5. if [ $res -ne 0 ]; then
  6. docker.io stop $testContainer
  7. docker.io rm $testContainer
  8. fi