remove_all_containers.sh 75 B

12345
  1. #!/bin/bash
  2. # Remove all docker containers
  3. docker rm -f $(docker ps -aq)