Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-24-2022 01:27 AM
@william smith you can use the prune command to remove the unused docker image.
docker image prune -a --force --filter "until=720h"
This command removes images created more than 30 days (720h) ago.
You need to modify the filter parameter as per your requirement.
Official docker document should help you.