Skip to content

Instantly share code, notes, and snippets.

@akirillov
Created June 29, 2018 18:51
Show Gist options
  • Save akirillov/0159a46722bc733a1fa1d25efc5c621c to your computer and use it in GitHub Desktop.
Save akirillov/0159a46722bc733a1fa1d25efc5c621c to your computer and use it in GitHub Desktop.
Docker shortcuts

Remove all images:

docker images --format "{{.ID}}" | xargs docker rmi

Stop and remove all containers:

docker ps -a --format "{{.ID}}" | xargs docker kill
docker ps -a --format "{{.ID}}" | xargs docker rm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment