$ docker ps -q -a | xargs docker rm
- -q prints only the container IDs
- -a prints all containers
Notice that it uses xargs to issue a remove container command for each container ID
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |