Docker學習筆記(2)-- Docker常用命令

1. 查看docker信息(version、info)

[plain] view plaincopy
  1. # 查看docker版本  
  2. $docker version  
  3.   
  4. # 顯示docker系統的信息  
  5. $docker info  


2. 對image的操作(search、pull、images、rmi、history)

[plain] view plaincopy
  1. # 檢索image  
  2. $docker search image_name  
  3.   
  4. # 下載image  
  5. $docker pull image_name  
  6.   
  7. # 列出鏡像列表; -a, --all=false Show all images; --no-trunc=false Don't truncate output; -q, --quiet=false Only show numeric IDs  
  8. $docker images  
  9.   
  10. # 刪除一個或者多個鏡像; -f, --force=false Force; --no-prune=false Do not delete untagged parents  
  11. $docker rmi image_name  
  12.   
  13. # 顯示一個鏡像的歷史; --no-trunc=false Don't truncate output; -q, --quiet=false Only show numeric IDs  
  14. $docker history image_name  


3. 啓動容器(run)

docker容器可以理解爲在沙盒中運行的進程。這個沙盒包含了該進程運行所必須的資源,包括文件系統、系統類庫、shell 環境等等。但這個沙盒默認是不會運行任何程序的。你需要在沙盒中運行一個進程來啓動某一個容器。這個進程是該容器的唯一進程,所以當該進程結束的時候,容器也會完全的停止。

[plain] view plaincopy
  1. # 在容器中運行"echo"命令,輸出"hello word"  
  2. $docker run image_name echo "hello word"  
  3.   
  4. # 交互式進入容器中  
  5. $docker run -i -t image_name /bin/bash  
  6.   
  7.   
  8. # 在容器中安裝新的程序  
  9. $docker run image_name apt-get install -y app_name  

Note:  在執行apt-get 命令的時候,要帶上-y參數。如果不指定-y參數的話,apt-get命令會進入交互模式,需要用戶輸入命令來進行確認,但在docker環境中是無法響應這種交互的。apt-get 命令執行完畢之後,容器就會停止,但對容器的改動不會丟失。

4. 查看容器(ps)

[plain] view plaincopy
  1. # 列出當前所有正在運行的container  
  2. $docker ps  
  3. # 列出所有的container  
  4. $docker ps -a  
  5. # 列出最近一次啓動的container  
  6. $docker ps -l  


5. 保存對容器的修改(commit)

當你對某一個容器做了修改之後(通過在容器中運行某一個命令),可以把對容器的修改保存下來,這樣下次可以從保存後的最新狀態運行該容器。

[plain] view plaincopy
  1. # 保存對容器的修改; -a, --author="" Author; -m, --message="" Commit message  
  2. $docker commit ID new_image_name  

Note:  image相當於類,container相當於實例,不過可以動態給實例安裝新軟件,然後把這個container用commit命令固化成一個image。


6. 對容器的操作(rm、stop、start、kill、logs、diff、top、cp、restart、attach)

[plain] view plaincopy
  1. # 刪除所有容器  
  2. $docker rm `docker ps -a -q`  
  3.   
  4. # 刪除單個容器; -f, --force=false; -l, --link=false Remove the specified link and not the underlying container; -v, --volumes=false Remove the volumes associated to the container  
  5. $docker rm Name/ID  
  6.   
  7. # 停止、啓動、殺死一個容器  
  8. $docker stop Name/ID  
  9. $docker start Name/ID  
  10. $docker kill Name/ID  
  11.   
  12. # 從一個容器中取日誌; -f, --follow=false Follow log output; -t, --timestamps=false Show timestamps  
  13. $docker logs Name/ID  
  14.   
  15. # 列出一個容器裏面被改變的文件或者目錄,list列表會顯示出三種事件,A 增加的,D 刪除的,C 被改變的  
  16. $docker diff Name/ID  
  17.   
  18. # 顯示一個運行的容器裏面的進程信息  
  19. $docker top Name/ID  
  20.   
  21. # 從容器裏面拷貝文件/目錄到本地一個路徑  
  22. $docker cp Name:/container_path to_path  
  23. $docker cp ID:/container_path to_path  
  24.   
  25. # 重啓一個正在運行的容器; -t, --time=10 Number of seconds to try to stop for before killing the container, Default=10  
  26. $docker restart Name/ID  
  27.   
  28. # 附加到一個運行的容器上面; --no-stdin=false Do not attach stdin; --sig-proxy=true Proxify all received signal to the process  
  29. $docker attach ID  

Note: attach命令允許你查看或者影響一個運行的容器。你可以在同一時間attach同一個容器。你也可以從一個容器中脫離出來,是從CTRL-C。


7. 保存和加載鏡像(save、load)

當需要把一臺機器上的鏡像遷移到另一臺機器的時候,需要保存鏡像與加載鏡像。

[plain] view plaincopy
  1. # 保存鏡像到一個tar包; -o, --output="" Write to an file  
  2. $docker save image_name -o file_path  
  3. # 加載一個tar包格式的鏡像; -i, --input="" Read from a tar archive file  
  4. $docker load -i file_path  
  5.   
  6. # 機器a  
  7. $docker save image_name > /home/save.tar  
  8. # 使用scp將save.tar拷到機器b上,然後:  
  9. $docker load < /home/save.tar  


8、 登錄registry server(login)

[plain] view plaincopy
  1. # 登陸registry server; -e, --email="" Email; -p, --password="" Password; -u, --username="" Username  
  2. $docker login  


9. 發佈image(push)

[plain] view plaincopy
  1. # 發佈docker鏡像  
  2. $docker push new_image_name  

10.  根據Dockerfile 構建出一個容器

[plain] view plaincopy
  1. #build  
  2.       --no-cache=false Do not use cache when building the image  
  3.       -q, --quiet=false Suppress the verbose output generated by the containers  
  4.       --rm=true Remove intermediate containers after a successful build  
  5.       -t, --tag="" Repository name (and optionally a tag) to be applied to the resulting image in case of success  
  6. $docker build -t image_name Dockerfile_path  


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章