Skip to content

Instantly share code, notes, and snippets.

@heaths
Last active June 2, 2024 00:34
Show Gist options
  • Save heaths/c1fc81b2ab3a92037e94b6273ff35422 to your computer and use it in GitHub Desktop.
Save heaths/c1fc81b2ab3a92037e94b6273ff35422 to your computer and use it in GitHub Desktop.
Tips and other useful commands for docker

To remove all stopped containers:

docker ps --filter "status=exited" --format "{{.ID}}" | foreach { docker rm $_ }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment