Where does docker store images on the host machine?
I am unable to find the containers under the directory:
/var/lib/docker/containers
Can you please tell me the directories and files under /var/lib/docker and also where does docker store images on the host machine?
This is a solution for Ubuntu users with docker version 1.12.3.
Use the below command, to find the root directory of docker.
$ docker info
You will find the docker directory will be given in this line: "Docker Root Dir: /var/lib/docker".
The docker images are stored inside the docker directory: /var/lib/docker/ images are stored there.