rajvineet
rajvineet

Reputation: 319

Docker image location

What is the physical location of docker image in ubuntu machine? I am using ubuntu 14.04. a. Distributor ID: Ubuntu b. Description: Ubuntu 14.04 LTS c. Release: 14.04 Codename: trusty

Upvotes: 0

Views: 6754

Answers (1)

nucleardreamer
nucleardreamer

Reputation: 54

Docker images aren't stored as one file like you see using docker images.

Docker image layers are stored in /var/lib/docker, there are sub folders of storage drivers. If you run docker info, you should see Storage Driver: aufs, and I'm assuming that your install defaults to aufs.

So your path is going to be /var/lib/docker/aufs/*layerfolders*

Upvotes: 2

Related Questions