4 lines
86 B
Bash
Executable file
4 lines
86 B
Bash
Executable file
#!/bin/bash
|
|
for i in $(docker ps -aq -f status=exited) ; do
|
|
docker rm -f -v $i
|
|
done
|