Created
May 20, 2017 12:32
-
-
Save adrianalonso/d190961f15e59b43b9540d08968bbbab to your computer and use it in GitHub Desktop.
Eliminar contenedores e imágenes Docker
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
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