Open NilsMoller opened 1 day ago
Imho the default location is /var/lib/docker/volumes
Maybe this could help:
docker system df
docker system prune -a
. This should also remove orphaned volumesdocker volume ls
and remove themAs far as i know there are no limits to the space used by docker by default but check this anyway:
/etc/docker/daemon.json
or ~/.config/docker/daemon.json
). The location depends on how you installed docker: https://docs.docker.com/engine/daemon/ "overlay2.size=10GB"
) and enhance the sizeIf the file does not exist there shouldn't be any limits to the size but if none of the above works, you can try to create it with the following content:
{
"storage-driver": "overlay2",
"storage-opts": [
"overlay2.size=20G"
]
}
docker info
and check the current Storage Driver (default is overlay2). If it is not overlay2, adjust the example with the storage driver that is used.
I'm getting the following error using the default compose file:
I have the free space (using LVM2). It worked fine on my windows machine. Are there other prerequisites not mentioned? I'm very familiar with Docker, but I'm not sure where the volumes point. Where are these folders located on the host?