Last active
November 25, 2018 14:04
-
-
Save yeungon/740e1b11acb1ac470ddef08af6cedbb0 to your computer and use it in GitHub Desktop.
Ubuntu from the scratch (for Vietnamese)
This file contains hidden or 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
How docker ps helped me: docker rm -f $(docker ps -aq) is a short command which I use to remove all containers.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Delete all docker containers
docker rm $(docker ps -a -q)
Delete all docker images
docker rmi $(docker images -q)