4.2G in /var/lib/docker/overlay2 on HA Pi server

Running HA in docker on a 8GB Pi 3B.
There is 4.2G in /var/lib/docker/overlay2
Any way to figure out why and if I can free space because I get this report from docker system df

TYPE                TOTAL               ACTIVE              SIZE                RECLAIMABLE
Images              4                   3                   1.938GB             852MB (43%)
Containers          8                   3                   235.3kB             223.1kB (94%)
Local Volumes       24                  12                  0B                  0B
Build Cache         0                   0                   0B                  0B

and not much reclaimable:

root@pi:/home/daz# docker container prune
WARNING! This will remove all stopped containers.
Are you sure you want to continue? [y/N] y
Deleted Containers:
6a67d54ca410c7a26cc60752cf6be859afbba03601fc50c384a24b1f0cc65ec5
5411c6f33b0e9b8f6d6616acbba3b4ccf96275dd99888288a787f439a87ec629
596d4c6eeb1acfe18097b404bb646199611fed27b7c7f6d0d32540c657ddf8ee
05ce89585f6099abda0a65369992bea59b85b44e854b3aace22a46f2e6ad1a73
682b6d546431cc39e97dfeff348b97d86bd5eb559904c506b39114c3be6df328

Total reclaimed space: 223.1kB
root@pi:/home/daz#

not much danlging around either:

root@pi:/home/daz# docker image ls -f dangling=true
REPOSITORY          TAG                 IMAGE ID            CREATED             SIZE
root@pi:/home/daz#

and in desperation:

root@pi:/home/daz# docker system prune
WARNING! This will remove:
        - all stopped containers
        - all networks not used by at least one container
        - all dangling images
        - all dangling build cache
Are you sure you want to continue? [y/N] y
Total reclaimed space: 0B
root@pi:/home/daz#

Still 4.3GB

root@pi:/home/daz# sudo du -hs  /var/lib/docker/overlay2
4.2G    /var/lib/docker/overlay2
root@pi:/home/daz#

SOLVED:

just entered linux single user runlevel mode (stops all services not needed) , then rm -rf /var/lib/docker (YUP!), then enter multiuser runlevel and with docker restarting, I started my docker containers , and voila! all good. 3GB free.

That is fairly drastic.