remove all unused and dangling container, networks and images
# remove all stopped containers, networks (stopped, unused), images (dangling, without container)
$ docker system prune --all --filter --untit=10220 (14 months ago)
# remove all images (dangling, without container)
$ docker image prune --all --filter --until=10h (10 hours ago)
# remove all unused volumes
$ docker volume prune --all --filter --until=10h (10 hours ago)