Docker stop/kill all

Keff - Mar 24 '20 - - Dev Community

Some commands I end up searching all the time:

docker stop $(docker ps -a -q) # stop all containers
docker rm $(docker ps -a -q)   # remove all containers
Enter fullscreen mode Exit fullscreen mode
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .