Skip to content

Instantly share code, notes, and snippets.

@HubertWo
Last active April 17, 2022 06:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save HubertWo/b8691cbe4dd35479ae1e295c64f49d31 to your computer and use it in GitHub Desktop.
Save HubertWo/b8691cbe4dd35479ae1e295c64f49d31 to your computer and use it in GitHub Desktop.
Docker - remove unused containers, volumes and images
# Removes:
# all stoped containers
# all volumes
# all unused images
docker container prune -f && \
docker images prune -q && \
docker volume prune -f
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment