3 lines
99 B
Bash
3 lines
99 B
Bash
#!/bin/bash
|
|
docker rm -v $(docker ps --filter status=exited -q)
|
|
docker rmi -f $(docker images -aq)
|