Skip to content

Instantly share code, notes, and snippets.

@mill5james
Created November 5, 2018 13:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mill5james/08b5e2add6951bc1f52f18fcee7c8cfe to your computer and use it in GitHub Desktop.
Save mill5james/08b5e2add6951bc1f52f18fcee7c8cfe to your computer and use it in GitHub Desktop.
Docker helpers
function Clean-DockerImages {
docker images -q | % { docker rmi -f $_ }
}
function Stop-DockerContainers {
docker ps -a -q | % { docker rm -f $_ }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment