diff --git a/README.md b/README.md index 9cd1902..3ca1fc9 100644 --- a/README.md +++ b/README.md @@ -65,3 +65,20 @@ docker compose logs -f ```bash docker compose ps ``` + +## Cleaning Up Images + +Remove dangling images (images tagged as ``): +```bash +docker image prune +``` + +Remove all unused images: +```bash +docker image prune -a +``` + +Preview what would be removed: +```bash +docker image prune --dry-run +```