image :鏡像docker
虛擬機容器須要加載image才能運行,鏡像中打包了構建好服務的運行環境。翻譯
Docker images are the basis of containers. An Image is an ordered collection of root filesystem changes and the corresponding execution parameters for use within a container runtime. An image typically contains a union of layered filesystems stacked on top of each other. An image does not have state and it never changes.get
翻譯:docker 鏡像 是容器的基礎,image是根文件系統更改的有序集合,以及容器運行時中使用的相應執行參數。一個imgae一般包含一組層疊的文件系統。image沒有狀態,它永遠不會改變。虛擬機
volume :卷it
volume 是一個負責 長期儲存的一個docker服務方法io
Volumes are the preferred mechanism for persisting data generated by and used by Docker containers容器
翻譯:volume是保存和使用生成的數據的首選途徑基礎