Skip to content

Instantly share code, notes, and snippets.

@adrianalonso
Created May 20, 2017 12:32
Show Gist options
  • Save adrianalonso/d190961f15e59b43b9540d08968bbbab to your computer and use it in GitHub Desktop.
Save adrianalonso/d190961f15e59b43b9540d08968bbbab to your computer and use it in GitHub Desktop.
Eliminar contenedores e imágenes Docker
Eliminar todos contenedores
$ docker rm $(docker kill $(docker ps -aq))
Eliminar todas imágenes
$ docker rmi $(docker images -qf "dangling=true")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment