Docker映像和容器存储在哪个文件(或路径)中?

时间:2018-11-11 04:03:40

标签: linux docker dockerfile boot2docker

我在Windows 10上安装了Docker Toolbox。

我使用存储所在的VM:

C:\ Users \ ***用户名*** \ .docker \ machine \ machines \ default \ disk.vmdk

但是,当我添加和删除价值100mb的图像时,硬盘上此文件的大小几乎没有变化。 boot2docker.iso也是相同的空间。

所以我想知道,图像和容器真正存储在哪里?

1 个答案:

答案 0 :(得分:0)

容器仅在“ Linux”上工作。因此,func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { let cell = tableView.dequeueReusableCell(withIdentifier: "cell") as! CustomCell cell.label1.text = cities[indexPath.row] let image : UIImage = UIImage(named: "20870718")! // assign imageView to an image if first == 0 { cell.myimage.isHidden = true // hide image first = 1 // condition to never enter again } if indexPath.row == cellNumber { if reload == true { if cell.myimage.isHidden == true { cell.myimage.image = image cell.myimage.isHidden = false } else { cell.myimage.isHidden = true } reload = false } } return cell } 实际上创建了一个VM以运行您的容器。

因此这些映像/容器/卷位于您的VM内,或者位于该磁盘文件中。

我相信所创建的磁盘大小是固定的,因此实际上您看不到任何大小差异。

另外,对于Windows 10,您应该使用Docker for Windows / Docker Desktop