Prabakar
Databricks Employee
Databricks Employee

@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.