You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
crosstool-ng/testing/docker/docker-remove-all.sh

9 lines
129 B
Bash

#!/bin/bash
for c in `docker ps -a -q`; do
docker rm $c
done
for i in `docker images -q`; do
docker rmi --force $i
done