Docker---(2)docker pull 下來的映象儲存在哪裡
阿新 • • 發佈:2018-12-30
docker pull xxx,就可以把想要的映象拉下來直接使用,但是pull下來的映象儲存在哪裡呢?這裡做下記錄:
此處docker 版本為:Docker version 1.13.1
1. 進入docker目錄,如下:
[email protected]:/# cd var/lib/docker/
[email protected]:/var/lib/docker# ls
aufs containers image network plugins swarm tmp trust volumes
2. 進入containers,每一個序列號,都是一個映象,如下:
cd containers/ 2addde372f5b4850ab167f1067db525313e1569e7117074841cc171acca7621d 4ce1634ce6f17474c8e6696bcf428e621f8c9572e1387316cf8183c97f4ad271
3.進入其中一個映象,發現目錄結構如下,這就是這個映象的內容了,如下:
cd 2addde372f5b4850ab167f1067db525313e1569e7117074841cc171acca7621d/
2addde372f5b4850ab167f1067db525313e1569e7117074841cc171acca7621d-json.log checkpoints config.v2.json hostconfig.json hostname hosts resolv.conf resolv.conf.hash shm
4.在containers同級目錄,有個叫image的資料夾,進入如下:
cd images/aufs
distribution imagedb layerdb repositories.json
裡面有個repositories.json的檔案,詳細記錄了映象的一些資訊:
{"Repositories":{"mysql":{"mysql:latest":"sha256:7d83a47ab2d2d0f803aa230fdac1c4e53d251bfafe9b7265a3777bcc95163755","[email protected]:1f95a2ba07ea2ee2800ec8ce3b5370ed4754b0a71d9d11c0c35c934e9708dcf1":"sha256:7d83a47ab2d2d0f803aa230fdac1c4e53d251bfafe9b7265a3777bcc95163755"},"tomcat":{"tomcat:latest":"sha256:3dcfe809147daf54fbdbe1f6886b4c49df63f28e2b3c8ac119fef6a7f7490d3c"," [email protected]:d167fd5df11d7a7f7a3b04bd08a021948c67c92932ed38c740296c2ae69f67a3":"sha256:3dcfe809147daf54fbdbe1f6886b4c49df63f28e2b3c8ac119fef6a7f7490d3c"}}}
(如果image沒有aufs目錄的,可能是這樣的
[[email protected] image]# ls
overlay2
[[email protected] image]# cd overlay2/
[[email protected] overlay2]# ls
distribution imagedb layerdb repositories.json
)
命令列如下: