This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// MP Hooks © 2016 Mitchell Pell | |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Runtime.InteropServices; | |
using System.Text; | |
using System.Windows.Forms; | |
namespace mp.hooks{ | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# stop all processes | |
docker stop $(docker ps -aq) | |
# remove all containers | |
docker rm $(docker ps -aq) | |
# remove all images | |
docker rmi $(docker images -aq) | |
# delete all volumes |