Problem we're trying to overcome: We'd like to reduce pulling from JFrog on our Bamboo agents as sometimes the same docker images may be pulled multiple times over the course of a pipeline. We'd like to reduce pulls by keeping them on the build agents for upto 48 hours, by which point, they'll be redundant anyway.
I've tried docker image prune --force --all --filter "until=48h" however it seems to delete images that were "created" over 48 hours ago. i.e. if I pull an image from dockerhub that was created over two days ago, postgres for example, it'll delete that one as well, despite it existing on my server for less that an hour.