Rexxer

Some tips for me and other

Docker + Stop or Remove All the containers

Stop all the containers

docker stop $(docker ps -a -q)

Remove all the containers

docker rm $(docker ps -a -q)

Comments are currently closed.