docker日誌
阿新 • • 發佈:2018-06-09
安裝 opp try gist Go build 圖片 新的 alt
docker run - Run a command in a new container
啟動一個新的容器,一般在docker pull之後首次運行此image
docker start - Start one or more stopped containers
新的容器退出後(比如關機重啟了),如果仍然使用docker run xxxx的話,以前的操作內容不會保存。此時可以使用docker start啟動歷史的容器
上圖中使用了兩次run mongo, 因此有兩個container id, 使用docker start仍能看到歷史數據.
docker exec - Run a command in a running container
容器啟動後,使用docker ps獲得運行中的容器id, 然後使用docker exec進入此運行中的容器
docker commit -Create a new image from a container‘s changes
在容器的基礎上創建新的image, 可以指定自己的imageName:tag。
docker build
從DockerFile創建image, DockerFile中可以使用apt|yum安裝特定的軟件
docker push -Push an image or a repository to a registry
將自己的image推到倉庫,方便分享
卷掛載 -保存歷史數據的另一種方法
容器編排,批量啟動?
docker日誌